Auto-start scripts

Snow

Active Member
Is there a way to do this? Like how radar auto-starts? Or do I have to load scripts myself?

When the game launches.
 

Amadeus

The Maestro
Staff member
You could add things to the startup just like the install instructions have you add "ext isxvg" to the startup. Just create a script that does everything you want, and then have the startup run it.

Just be sure that your script "waits" until ${ISXVG.IsReady} is TRUE.
 

Snowy

Member
Just be sure that your script "waits" until ${ISXVG.IsReady} is TRUE.
huh.. why did I never come up with that on my own. Bleah, thanks! :p

Also.. for anyone else.. simply add the following in function main():
Code:
    ext -require isxvg
    wait 250 ${ISXVG.IsReady}
    if !${ISXVG.IsReady}
    {
        echo "Unable to load ISXVG, exiting script"
        endscript PUT_YOUR_SCRIPT_NAME_HERE
    }
 
Last edited:
Top Bottom