Skip to content

Instantly share code, notes, and snippets.

@tcmal
Created August 10, 2021 17:58
Show Gist options
  • Save tcmal/000996ba0a97bd86c6271fc4ae49c7e6 to your computer and use it in GitHub Desktop.
Save tcmal/000996ba0a97bd86c6271fc4ae49c7e6 to your computer and use it in GitHub Desktop.
// 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