Advertisement
periwinkle_

Cave Story speedrun patches (tentative)

Feb 6th, 2024
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. Instructions: Open Doukutsu.exe using a hex editor (e.g., HxD) and change the bytes at the given addresses to the indicated values.
  2. All values are in hexadecimal.
  3. The old byte values are given for you to double-check that you're editing the correct addresses.
  4.  
  5. > Keep the game running when unfocused:
  6. 0x13593: 75 -> 71
  7. 0x12BC0: 55 -> C3
  8. 0x12BF0: 55 -> C3
  9.  
  10. > 320x240 windowed mode makes the window 960x720 instead:
  11. 0xB4A6: 01 -> 03
  12. 0xCD6B: 1E -> 10
  13. 0xCD7C: C7 45 F8 14 ... -> 6B C8 0A 89 4D F8 6B D0 05 89 55 FC 90 90
  14. 0x127C2: 40 01 -> C0 03
  15. 0x127CC: F0 00 -> D0 02
  16.  
  17. > 320x240 windowed mode makes the window 1280x960 instead:
  18. 0xB4A6: 01 -> 04
  19. 0xCD6B: 1E -> 10
  20. 0xCD7C: C7 45 F8 14 ... -> 6B C8 0A 89 4D F8 6B D0 05 89 55 FC 90 90
  21. 0x127C2: 40 01 -> 00 05
  22. 0x127CC: F0 00 -> C0 03
  23.  
  24. > Automatically advances text by holding Z or X, with a 2-frame delay:
  25. 0x16CA0: 55 8B EC 0F B6 05 ... -> B8 09 5B 4A 00 FE 00 82 38 02 7E 0A C6 05 DC 5A 4A 00 01 C6 00 00 C3
  26. 0x25584: 14 -> 10
  27. 0x2558A: C6 05 DC 5A 4A 00 01 -> E8 11 17 FF FF 90 90
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement