I'm trying to put together a hotkey mod, partly because none of the ones I've seen do precisely what I want, and partly because I like to punish my brain with activities I have no aptitude for*. I'm using a bunch of parallel arrays to keep track of various things. Things like dual-cast flags are stored in a string array and scancodes are in an int array. I planned to create a Formlist array to store the spells/weapons/whatever the player attaches to a particular hotkey. An example might be helpful. Say the player wants to bind Y to cast Stoneflesh on both hands, followed by Fireball on the left hand and then equip Ice Spike on the right hand: hotkeys[0] will be 21, the scancode for the Y key hotkeyOptions[0] will be CDCLER (Cast Dual/Cast Left/Equip Right) hotkeyItems[0] will be a formlist containing Stoneflesh, Fireball, and Ice Spike The second hotkey would be stored in hotkey*[1], the third in hotkey*[2] and so on. The int array hotkeys[] and the string array hotkeyOptions[] are working perfectly. I've spent days getting them synchronised, and I was really happy with what I added. Then I added this little line of code: HotkeyItems.AddForm(item) ...and my life fell apart The item variable is supposed to be whatever the player selects. I'm planning to use an MCM menu option to get the FormID to add to the formlist. The MCM is all working fine. Problem is, whatever I do, HotkeyItems[] just stays as None, None, None, None, None... ad infinitum. I can't add anything to the list. The script compiles ok, and everything seems to be going fine, but the formlists stay empty. Needless to say, the ability to equip such things as spells and weapons is an integral feature of the mod. Code extracts: If the rest of the script is necessary for context, please shout and I'll post it. But I think I've extracted everything that might be relevant. I'm filling the property in the CK (triple checked that). Completely out of ideas. I'm on the verge of scrapping the whole project which Wouldn't Be A Good Thing because I'd have to take up reading, or ice skating or something. *Seriously, no aptitude whatsoever. Ask my university. They suggested suicide, or burger king.