Spherescript

Spherescript is programming language for sphere to make events.

Please note that for a script to work in a game you just have to compile it.
On the script's menu bar, select script, compile.

Every game has to have a game function, which will be ran first.

So your startup script should have something like:-

void game()

{

    AddPartyCharacter("aegis.rss");

    ChangeMap("castle.rmp");
    ChangeSong("theme.mod");
    MapEngine();
}

And compile it.

Notes
All lines of code are ended with semicolons, apart from where functions start and stop.

Now you know how to use it.

list of functions

And now variables.......