Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. state("DOSBox", "0.74")
  2. {
  3. int loading : "DOSBox.exe", 0x193A1A0, 0x29A344;
  4. int level : "DOSBox.exe", 0x193A1A0, 0x29A154;
  5. int tLevel : "DOSBox.exe", 0x00351690, 0x2811EC;
  6. }
  7.  
  8. state("DOSBox", "0.73")
  9. {
  10. int loading : "DOSBox.exe", 0x00351690, 0x28E344;
  11. int level : "DOSBox.exe", 0x00351690, 0x28E154;
  12. int tLevel : "DOSBox.exe", 0x00351690, 0x2751EC;
  13. }
  14.  
  15. init
  16. {
  17. if ( modules.First().ModuleMemorySize == 34119680 ) version = "0.73";
  18. }
  19.  
  20. start
  21. {
  22. return old.level == 0 && current.level == 1;
  23. }
  24.  
  25. isLoading
  26. {
  27. return current.loading == 0;
  28.  
  29. }
  30.  
  31. split
  32. {
  33. return old.tLevel != current.tLevel;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement