diff options
author | yenatch <yenatch@gmail.com> | 2014-03-01 10:18:26 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-03-01 10:31:13 -0500 |
commit | 83537048fbef1da0129e630aaafa242d8f47c0ce (patch) | |
tree | 93fa382b3bdd29932763d372d7c826808c43ed76 /engine | |
parent | 7da86ec0e85e59f3771d76360485ea85a0e651c7 (diff) |
Smoke out bank 4.
Highlights: contest trainers and mons
Diffstat (limited to 'engine')
-rw-r--r-- | engine/events.asm | 16 | ||||
-rw-r--r-- | engine/scripting.asm | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/engine/events.asm b/engine/events.asm index a26982499..c2aff6dfb 100644 --- a/engine/events.asm +++ b/engine/events.asm @@ -529,8 +529,8 @@ Function9693a: ; 9693a ret .asm_96966 - ld a, $4 - ld hl, $75f8 + ld a, BANK(UnknownScript_0x135f8) + ld hl, UnknownScript_0x135f8 call CallScript scf ret @@ -765,8 +765,8 @@ TryReadSign: ; 96a38 ld de, EngineBuffer1 ld bc, 3 call FarCopyBytes - ld a, $4 - ld hl, $7625 + ld a, BANK(UnknownScript_0x13625) + ld hl, UnknownScript_0x13625 call CallScript scf ret @@ -876,8 +876,8 @@ PlayerMovement: ; 96af0 .three ; 96b20 ; force the player to move in some direction - ld a, $4 - ld hl, $653d + ld a, BANK(UnknownScript_0x1253d) + ld hl, UnknownScript_0x1253d call CallScript ; ld a, -1 ld c, a @@ -1025,8 +1025,8 @@ Function96bd7: ; 96bd7 dec a ld [$dca1], a ret nz - ld a, $4 - ld hl, $7619 + ld a, BANK(UnknownScript_0x13619) + ld hl, UnknownScript_0x13619 call CallScript scf ret diff --git a/engine/scripting.asm b/engine/scripting.asm index 06ca48d66..1a5ee4cea 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -1561,8 +1561,8 @@ Script_returnafterbattle: ; 0x97459 and $3f cp $1 jr nz, .asm_97470 ; 0x97466 $8 - ld b, $4 - ld hl, $64c1 + ld b, BANK(UnknownScript_0x124c1) + ld hl, UnknownScript_0x124c1 jp ScriptJump .asm_97470 bit 0, d |