Oblivion:Form ID

The UESPWiki – Your source for The Elder Scrolls since 1995
Jump to: navigation, search

Many pages document form IDs, eight digit hex-numbers which are primarily used with console commands on the PC. Other uses are distinguishing between things sharing the same name and looking up information in the game data.

RefID, BaseID[edit]

For NPCs and creatures, usually both a RefID and a BaseID are given; for items, just a BaseID is given. Most console commands accept only one of those IDs. The RefID denotes a specific copy of an object in the game, the BaseID the prototype for an object.

For example, the command player.placeatme <BaseID> will create a new copy of an object and place it at the player's position. This is fine with most items or generic creatures. With unique NPCs however, a second copy will usually cause problems with quests and such. In that case, one could move the NPC to the player with the command "<RefID>".moveto player or the command sequence:

  • prid <RefID>
  • moveto player

For most items, creating extra copies does no harm, so player.additem <BaseID> <quantity> can be used to add the desired quantity of items to the player's inventory. RefIDs can only be used if the object in question is loaded into memory; visiting the cell of the object can assure this. See the Console article for further commands and uses of form IDs for other types of things.

xx and Plugins[edit]

The first two digits of form IDs found in plugins are given as xx, because they may vary depending on the number of active plugins and the load order of them. Objects from a specific plugin will all have the same two leading digits. If Knights of the Nine is the only plugin you have, the xx for the IDs should be replaced with 01. In most cases, to find out the first two digits for a plugin, activate the console and click on an object from that plugin to get its ID. Leading digits which are unique are:

  • 00 Those IDs are used by Oblivion and Shivering Isles (Oblivion.esm), the prefix doesn't change.
  • 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.

See Also[edit]

This Oblivion-related article is a stub. You can help by expanding it.