4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
335 B

Scriptname defaultUnlockOnLoad extends ObjectReference
{unlocks on load, after a specified quest stage is set
}
Quest Property myQuest Auto
{quest to check stage against}
int Property unlockStage Auto
{unlock on load after this stage is set}
event OnLoad()
if myQuest.IsStageDone(unlockStage)
Lock(false)
endif
endEvent