Jump to content

How to make NPC change outfit in certain area?


Exurim

Recommended Posts

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 by JanusForbeare
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...