Jump to content

[LE] Are you sure you want to leave Skyrim?


MesaSolar

Recommended Posts

You need to place a 'Trigger Box' just right before entering the 'Load Door' with a simple script, i think there is a vanilla script for such a thing, but i'm not sure.

Script example:



Message Property MyMSG Auto

EVENT onTriggerEnter(objectReference actronaut)
If actronaut == game.getPlayer()
Int iButton = MyMSG.Show()
If iButton == 0 ; YES Button
; Do your Stuff

GoToState("AllDone") ; OR Disable / Delete the trigger box & not call the 'State'
ElseIf iButton == 1 ; NO Button
RETURN
EndIf
EndIf
ENDEVENT

STATE AllDone ; No need for this 'State' if the trigger box has been deleted
;
ENDSTATE



Have a happy modding.

Edited by maxarturo
Link to comment
Share on other sites

  • Recently Browsing   0 members

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