Created
August 10, 2021 17:58
-
-
Save tcmal/000996ba0a97bd86c6271fc4ae49c7e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ULTRAKILL Auto-Splitter by tcmal | |
// Starts whenever not on main menu | |
// Splits on level change | |
// Last updated: 10/08/2021 for GREED update. | |
state("ULTRAKILL") | |
{ | |
int level: "mono-2.0-bdwgc.dll", 0x494A90, 0xF40, 0x0, 0xD0, 0x20, 0x40, 0xBC; | |
float seconds: "mono-2.0-bdwgc.dll", 0x494A90, 0xF40, 0x0, 0xD0, 0x20, 0x40, 0xD0; | |
} | |
start { | |
return current.level != 0; | |
} | |
split { | |
return current.level != old.level && old.level != 0; | |
} | |
isLoading { | |
return current.seconds == old.seconds; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment