8f script to change level to 100?
Posted by: seb5049
Date: 2017-01-28 15:46:44
Glitch City Laboratories closed on 1 September 2020 (announcement). This is an archived copy of a thread from Glitch City Laboratories Forums.
You can join Glitch City Research Institute to ask questions or discuss current developments.
You may also download the archive of this forum in .tar.gz, .sql.gz, or .sqlite.gz formats.
Just wondering if there's an 8f script out there which can change a Pokémon's level to 100.
ld hl,$DA99
ld a,$32
add a,a
ld d,d
ld (hl),a
ret
Just wondering if there's an 8f script out there which can change a Pokémon's level to 100.
This should change the level of the first Pokemon in the PC to 100 in Pokemon R/B.
[tt]Item Quantity
========================
8F xAny
[Any] xAny
Thunderstone x153
TM18 x62
PP Up x135
Elixer x119
TM01 xAny[/tt]
Here's the underlying code:
ld hl,$DA99
ld a,$32
add a,a
ld d,d
ld (hl),a
ret
8F
[Any] x[Any]
Thunderstone x164
TM18 x62
Parlyz Heal x34
TM01 x[Any]
ld hl, $DAA4 ; Experience
ld a, $0F
ld [hli], a
ret
Try this :
8F
[Any] x[Any]
Thunderstone x164
TM18 x62
Parlyz Heal x34
TM01 x[Any]
Assembly code :
ld hl, $DAA4 ; Experience
ld a, $0F
ld [hli], a
ret
Use 8F, withdraw the first Pokémon in the active box, make it gain any amount of EXP, and it should shoot straight up to level 100 !
This code actually gives it lotsa experience, but if it's not enough try replacing the Parlyz Heal with a Leaf Stone to give it ~2 million more EXP.
That's how 8F rolls 8)
8F
[Any] x[Any]
Thunderstone x164
TM18 x62
Parlyz Heal x34
Water Stone x3
Lemonade x??
Poké Ball x34
TM01 x[Any]
ld hl, $DAA4 ; Experience
ld a, $0F
ld [hli], a
ld [hli], a
inc bc
ld a, $??
dec b
ld [hli], a
ret