Jump to content

Are multiple OnQuestInit Events possible on a quest?


Recommended Posts

Yes if "Start Game Enabled" and "Run Once" is unchecked then OnQuestInit will fire twice. Use a Bool to lock the function:

Bool bRunOnce = FALSE

Event OnQuestInit()
If (bRunOnce == FALSE) 
  bRunOnce == TRUE
 ;do stuff
EndIf
EndEvent
Link to comment
Share on other sites

  • Recently Browsing   0 members

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