Advertisement
luckytyphlosion

151 no restrictions

Jan 17th, 2016
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     ld a, $10
  2.     ld [wMonDataLocation], a
  3.     ld a, 190
  4. .loop
  5.     push af
  6.     ld [wcf91], a
  7.     call AddPartyMon
  8.     ld a, $1 ; alternative: xor a | inc a
  9.     ld [wPartyCount], a
  10.     ld a, $ff ; alternative: dec a | dec a or xor a | dec a
  11.     ld [wPartySpecies + 1], a
  12.     pop af
  13.     dec a
  14.     jr nz, .loop
  15.     jp EnterMap ; assumes hall of fame is in mapID
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement