Nikonthenet Posted December 30, 2015 Share Posted December 30, 2015 I'm looking at creating my first standalone mod...uff, the path ahead feels overwhelming atm :D So my current conundrum is how to choose a FormID? (FormID is the same as Item ID, right?) With all the mods being created, what happens when two modders choose the same FormID? Is there a system to it? Link to comment Share on other sites More sharing options...
JJ2198 Posted December 30, 2015 Share Posted December 30, 2015 Each mod uses a different number at the beginning of a formID, which is why all formIDs for the base game start with 00, the next one will have 01 etc. Not sure what mods above 100 are though, possibly just skips 100, as thats the same as 10. Link to comment Share on other sites More sharing options...
Nikonthenet Posted December 30, 2015 Author Share Posted December 30, 2015 Thanks for the reply :) Link to comment Share on other sites More sharing options...
Tallon314 Posted December 30, 2015 Share Posted December 30, 2015 (edited) Not sure what mods above 100 are though, possibly just skips 100, as thats the same as 10. FormIDs are in Hexidecimal, (rather than Base 10) so the digits can be: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. There are 256 combinations from 00 to FF, (i.e. 01, 02... 1A, 1B... B9, BA... etc.) This is why there is a hard limit of 255 plugins for Bethesda Games (since the Fallout 4 ESM takes up the 00 address). Edited December 30, 2015 by Tallon314 Link to comment Share on other sites More sharing options...
JJ2198 Posted December 30, 2015 Share Posted December 30, 2015 Right, I guess it just completely skipped my mind that formIDs use letters as well. Link to comment Share on other sites More sharing options...
hlp Posted December 31, 2015 Share Posted December 31, 2015 No relative form ID you create should be less that XX000800 (or 2048 decimal). Those are reserved and will break things. Link to comment Share on other sites More sharing options...
th3t3rr1bl30n3 Posted January 2, 2016 Share Posted January 2, 2016 A common practice in the past has been to include an abbreviation of the mod name and the item you're creating. If you were creating a weapon you might name the id something like ModnameWeaponnameorModname_Weaponname Link to comment Share on other sites More sharing options...
Recommended Posts