Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Instructions: Open Doukutsu.exe using a hex editor (e.g., HxD) and change the bytes at the given addresses to the indicated values.
- All values are in hexadecimal.
- The old byte values are given for you to double-check that you're editing the correct addresses.
- > Keep the game running when unfocused:
- 0x13593: 75 -> 71
- 0x12BC0: 55 -> C3
- 0x12BF0: 55 -> C3
- > 320x240 windowed mode makes the window 960x720 instead:
- 0xB4A6: 01 -> 03
- 0xCD6B: 1E -> 10
- 0xCD7C: C7 45 F8 14 ... -> 6B C8 0A 89 4D F8 6B D0 05 89 55 FC 90 90
- 0x127C2: 40 01 -> C0 03
- 0x127CC: F0 00 -> D0 02
- > 320x240 windowed mode makes the window 1280x960 instead:
- 0xB4A6: 01 -> 04
- 0xCD6B: 1E -> 10
- 0xCD7C: C7 45 F8 14 ... -> 6B C8 0A 89 4D F8 6B D0 05 89 55 FC 90 90
- 0x127C2: 40 01 -> 00 05
- 0x127CC: F0 00 -> C0 03
- > Automatically advances text by holding Z or X, with a 2-frame delay:
- 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
- 0x25584: 14 -> 10
- 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