Here's my script which is attached to a trigger zone:
Spoiler
Scriptname csArenaResetTriggerScript extends ObjectReference {This will reset CSHideout03 when the player enters this area.}Cell Property Cellreset Auto Event OnTriggerEnter(ObjectReference akActionRef) if(akActionRef == Game.GetPlayer()) ; Make sure only player triggers this. Cellreset.reset() ; Resets the cell upon next load. endifEndEventThe above works as intended, only in order for the cell to reload EVERY time, the cell itself needs to UNLOAD too.
I can't seem to find how to do that. Any help on this please?
Thanks,
-Mush-
