Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
The first two digits of form IDs found in add-ons are given as xx, because they may vary depending on the number of active add-ons and the load order of them. Objects from a specific add-on will all have the same two leading digits. If Dawnguard is the only add-on you have, the xx for the IDs should be replaced with 02. In most cases, to find out the first two digits for an add-on, activate the console and click on an object from that add-on to get its ID or use the help command with an add-on specific text. The Nexus Mod Manager also lists the correct ID.
Leading digits which are unique are:
00 Those IDs are used by the original Skyrim (Skyrim.esm), the prefix doesn't change
01 Those IDs are usually used by the Update module (Update.esm)
ff Dynamically allocated IDs use this. Since they depend on a specific playthrough, they should not be documented - they will be different for other players.
http://www.uesp.net/wiki/Skyrim:Form_ID
so dose that mean hearthfire would be 01 because all the commands start with 0100
It's probably simplest to check with the console, by searching for something from that mod/dlc.
For example, if the mod has an item called soap you can type
help soap
And it'll give you a list of everything in the game with the consecutive letters (no spaces) "soap", figure out which is the correct thing (for this specific example there probably won't be many other things with that set of letters) and you can use the first two digits from there.
If the console command you're after is the item code for something you can fairly safely add to your inventory, like an armour mod that isn't craftable/purchase-able, you can just use the whole command as listed.
If it's an NPC that you want to move to you/move yourself to, you'll need to use the RefID, with the XX switched out for the digits this finds (you can search for the NPC if the mod doesn't have any items, btw.)
The more unique your search term, the less likely you'll have to wade through pages of results, for eg if it's an Unbelievable Sword, search for unbelievable, not sword.
If you want to search for something with a multiple word name and include more than one word, you need to put double quotes around it, like
help "unbelievable sword"
It's not case sensitive, and you don't have to use the whole word, so long as you have a correct string of consecutive letters, eg
"ble swo" would work for the above name.
Finally, the base game is 00, not 01, and codes from the base game can therefore leave off the leading 00s, ie
Player.additem a 1
and
Player.additem 000000000a 1
Will both work. For any other plugin, you need the whole code.