You are not logged in.
Pages: 1
Could somebody please explain to me how I would go about making it so that Articuno, Zapdos, and Moltres get unleashed unto Johto rather than Suicune, Raikou, and Entei?
Offline
Easy... Change command about pokemon to number from 00 to FF and done XD
http://hax.iimarck.us/topic/3435/ - Pokemon Ruby GEN V GRAPHIC hack Thread
http://hax.iimarck.us/topic/3476/ - Unused Music Midi Thread
http://hax.iimarck.us/topic/3579/ - Some info about region Thonsu
Offline
in crystal:
InitRoamMons: ; 2a2a0
; initialize RoamMon structs
; species
ld a, RAIKOU
ld [RoamMon1Species], a
ld a, ENTEI
ld [RoamMon2Species], a
; ld a, SUICUNE
; ld [RoamMon3Species], a
; level
ld a, 40
ld [RoamMon1Level], a
ld [RoamMon2Level], a
; ld [RoamMon3Level], a
; raikou starting map
ld a, GROUP_ROUTE_42
ld [RoamMon1MapGroup], a
ld a, MAP_ROUTE_42
ld [RoamMon1MapNumber], a
; entei starting map
ld a, GROUP_ROUTE_37
ld [RoamMon2MapGroup], a
ld a, MAP_ROUTE_37
ld [RoamMon2MapNumber], a
; suicune starting map
; ld a, GROUP_ROUTE_38
; ld [RoamMon3MapGroup], a
; ld a, MAP_ROUTE_38
; ld [RoamMon3MapNumber], a
; hp
xor a ; generate new stats
ld [RoamMon1CurHP], a
ld [RoamMon2CurHP], a
; ld [RoamMon3CurHP], a
ret
; 2a2ce
in gold, this is at a:67d7 (0x2a7d7) with the suicune parts still in
Offline
Change in that Routine All Dogs to Legendary Birds and done... In my Pokemon Ruby Renev I did that same way <But I copy ready GROUDON SCRIPT> To add KYOGRE and DEOXYS.
http://hax.iimarck.us/topic/3435/ - Pokemon Ruby GEN V GRAPHIC hack Thread
http://hax.iimarck.us/topic/3476/ - Unused Music Midi Thread
http://hax.iimarck.us/topic/3579/ - Some info about region Thonsu
Offline
Thank you for the responses. I'm happy to see that this looks pretty easy to do.
Offline
Pages: 1