Scriptname BalokDefaultTimerAliasSCRIPT extends ReferenceAlias Location Property HelgenLocation AutoQuest Property BalokQuestToStop AutoQuest Property BalokHelgen01 AutoEvent OnLocationChange(Location akOldLoc, Location akNewLoc) if akNewLoc != HelgenLocation BalokHelgen01.SetCurrentStageID(86) Debug.Notification("Stage XX has been set") BalokQuestToStop.Stop() Debug.Notification("Timer Quest Has Stopped") endIfendEvent
What would be awesome would be if I could set some sort of property for the setCurrentStage line that I could define differently each time I use this script. If not, I'll have to just use different scripts and change the quest stage in each of the scripts as I need them. But if I could use this one script and change it on each instance it would be great. There's probably something obvious I missed, so sorry if this is a noobish question.