Robinsage Posted October 21, 2012 Share Posted October 21, 2012 Could anyone post script needed to start a quest when a player enters a trigger box? All my attempts are fail. Thanks :confused: Link to comment Share on other sites More sharing options...
EnterSevenSeven Posted October 21, 2012 Share Posted October 21, 2012 Could anyone post script needed to start a quest when a player enters a trigger box? All my attempts are fail. Thanks :confused:This should work. Add additional conditions if needed before starting the quest. Also fill the myQuest property with the quest that will be started. Quest property myQuest auto event OnTriggerEnter(ObjectReference akActivator) if (akActivator == Game.getPlayer()) myQuest.start() endif endEvent Link to comment Share on other sites More sharing options...
Robinsage Posted October 21, 2012 Author Share Posted October 21, 2012 Good script thank you :thumbsup: Link to comment Share on other sites More sharing options...
Recommended Posts