MesaSolar Posted October 14, 2020 Share Posted October 14, 2020 I'd like to get a message box to appear asking if you're sure you want to leave Skyrim when the player enters an autoload door to go to a custom worldspace/custom cell before travelling there. Link to comment Share on other sites More sharing options...
maxarturo Posted October 14, 2020 Share Posted October 14, 2020 (edited) 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 October 14, 2020 by maxarturo Link to comment Share on other sites More sharing options...
Recommended Posts