Original script:
Begin ME_ArcaneStartupScriptshort Askshort Buttonfloat SettleDelayif ( Ask == 0 ) if ( ME_ArcaneStarted == 0 ) if ( SettleDelay < 1 ) Set SettleDelay to ( SettleDelay + GetSecondsPassed ) Return endif MessageBox "Are you ready to start the Arcane Guard quests?" "YES" "NO" Set Ask to 1 Set SettleDelay to 0 else StopScript "ME_ArcaneStartupScript" endifendifif ( Ask == 1 ) Set Button to GetButtonPressed if ( Button == -1 ) Return endif Set Ask to 0 if ( Button == 0 ) ; They are ready... MessageBox "Go to Suran and see Janus Nuen by the silt strider service... she is expecting you." "OK" Set ME_ArcaneStarted to 1 endif StopScript "ME_ArcaneStartupScript"endifEnd
Automatic start script?:
Begin ME_ArcaneStartupScriptif ( ME_ArcaneStarted == 0 ) Set ME_ArcaneStarted to 1 StopScript "ME_ArcaneStartupScript"endifEnd
Would that work?