Exurim Posted September 20, 2012 Share Posted September 20, 2012 like topic, ive tried countless times but just cant get it to work, help :< Link to comment Share on other sites More sharing options...
JanusForbeare Posted September 20, 2012 Share Posted September 20, 2012 As long as you plan on using an established outfit, and don't intend on creating a new one on the fly, you can use a SetOutfit function triggered by an OnCellLoad event. Link to comment Share on other sites More sharing options...
Exurim Posted September 20, 2012 Author Share Posted September 20, 2012 ah thanks! could you maybe set up a example of that one? only done simple scripting and alittle unsure of how to set this event :/ Link to comment Share on other sites More sharing options...
JanusForbeare Posted September 20, 2012 Share Posted September 20, 2012 (edited) Sure thing. This is just the simplest version of the script, but it should be good enough in the short term. Scriptname YourScript extends ObjectReference Actor Property YourActor Auto Location Property YourCellLoc auto Outfit Property YourOutfit Auto event oncellload() If (YourActor.IsInLocation(YourCellLoc)) YourActor.SetOutfit(YourOutfit) Endif EndEvent Edited September 21, 2012 by JanusForbeare Link to comment Share on other sites More sharing options...
Exurim Posted September 20, 2012 Author Share Posted September 20, 2012 GREAT! going to put it in right away :) Link to comment Share on other sites More sharing options...
Recommended Posts