Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- state("DeSmuME_0.9.11_x64")
- {
- uint IGT : "DeSmuME_0.9.11_x64.exe", 0x55710F8;
- byte bossHP : "DeSmuME_0.9.11_x64.exe", 0x5561EFA;
- byte room : "DeSmuME_0.9.11_x64.exe", 0x5560234;
- }
- start
- {
- if(current.IGT > 0 && current.room!=72){
- return true ;
- }
- }
- split
- {
- if(old.bossHP > 0 && current.bossHP == 0 && current.room != 71 && current.room != 19 && current.room != 25){
- return true;
- }
- }
- reset
- {
- return current.room == 72;
- }
- gameTime
- {
- return TimeSpan.FromSeconds(current.IGT / 60);
- }
- //created by Flameberger
- //Special Thx to Fatalis, blastedt and DrTchops.
- //Comments from Ikkisoad
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement