Quote:
Originally Posted by ronik2014
... ...
|
I
I'm pretty sure you're getting this error because you're giving only 3 bytes to each jump. The givepokemon command requires 9 bytes so you can try this script. This is just a reference. I'm not sure if you have more free space in this cares of your ROM.
'---------------
#org 0x850E00
random 0x3
compare LASTRESULT 0x0
if 0x1 goto 0x8234561
compare LASTRESULT 0x1
if 0x1 goto 0x823456B
compare LASTRESULT 0x2
if 0x1 goto 0x8234575
'---------------
#org 0x234561
givepokemon 0x1 0x5 0x0 0x0 0x0 0x0
end
'---------------
#org 0x23456B
givepokemon 0x4 0x5 0x0 0x0 0x0 0x0
end
'---------------
#org 0x234575
givepokemon 0x7 0x5 0x0 0x0 0x0 0x0
end[/B]