I would like to create some custom items for a mod I am working on. A unique item like a ring would be a nice quest reward. It looks like items like a rings are listed in Armor.xlsm but every attempt to add a new lines has failed. The Editor doesn't seem to be reading them.
There is a scripting query:
query ItemGetProperty([in](ITEM)_Item, [in](STRING)_Property, [out](STRING)_Value)
I have no idea what the query is supposed to do. But with a similar call it should be pretty easy to create a custom items.
Like:
ItemSetProperty(ITEM_ABC_MyRing, "Telekinesis", "1");
ItemSetProperty(ITEM_ABC_MyRing, "SpeedBonus", "1");
etc..
Could we expect to have something like this if there are no other way ?
And when ?