Skip to content

Instantly share code, notes, and snippets.

@Dalet
Last active August 29, 2015 14:17
Show Gist options
  • Save Dalet/8742f00ac9bd587f3054 to your computer and use it in GitHub Desktop.
Save Dalet/8742f00ac9bd587f3054 to your computer and use it in GitHub Desktop.
/*
Archangel ASL v0.2
*/
state("game")
{
/*
2 == Saving
3 == Loading
4 == Finishing
5 == Initial loading screen at launch
*/
int screen : "game.exe", 0x0008E254, 0x0;
}
isLoading
{
return current.screen >= 2 && current.screen <= 5;
}
/*
Archangel ASL v0.2
*/
state("game")
{
/*
2 == Saving
3 == Loading
4 == Finishing
5 == Initial loading screen at launch
*/
int screen : "game.exe", 0x0008E254, 0x0;
}
isLoading
{
return current.screen >= 2 && current.screen <= 5 && current.screen != 2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment