RadMonkey Posted November 22, 2014 Share Posted November 22, 2014 I am not experienced at modding in the least which is why I was wondering if it is possible to create a chest or container ingame that add whatever you place in it to the leveled list for NPC's and enemies? Link to comment Share on other sites More sharing options...
IsharaMeradin Posted November 22, 2014 Share Posted November 22, 2014 It is possible. But you'd need to know which leveled list you want the item added to. You'd probably need one chest per leveled list if you're dealing with more than one list for the same object types. I don't want to do this myself. But to give whomever a head start. Most basic script, goes on the container. Needs tested for compilation and function. ScriptName SomeScript Extends ObjectReference LeveledList Property SomeLeveledList Auto Int Property LevelToAddTo Auto Int Property QuantityToAddTo Auto Event OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) SomeLeveledList.AddForm(akBaseItem,LevelToAddTo,QuanityToAddTo) EndEvent Link to comment Share on other sites More sharing options...
Recommended Posts