Language…
9 users online: Cristian Cardoso, dotCoockie, DPBOX, Golden Yoshi, Green, Lsh0426, signature_steve, Sweetdude,  Telinc1 - Guests: 261 - Bots: 424
Users: 64,795 (2,377 active)
Latest user: mathew

Lightning

Hi !

I want to finish the Overworld of my Hack.
But in Bowsers Valley is a lightning effect. Is there an easy way to turn it off?
Note: I dont know anything about ASM or ASM Tools
Originally posted by Mawwo7
Hi !

I want to finish the Overworld of my Hack.
But in Bowsers Valley is a lightning effect. Is there an easy way to turn it off?
Note: I dont know anything about ASM or ASM Tools

Just patch this hex edit:
Code
Header
Lorom
org $04F750
db $EA,$EA,$EA

org $04F754
db $80

It's so easy:).

Warum nutzt du nicht Strg+F?
There's one address you missed, which disables the sound effect. Patch this instead:

Code
header
lorom

org $04F709
db $FF         ;disables the thunder sound effect.

org $04F754
db $80         ;disables the lightning flash effect.

org $04F750
nop #3         ;fixes a bug with the palettes that occurs when the lightning flash effect is disabled.