Advertisement
ProClifo

Untitled

Jun 26th, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. #include stdpoke.rbh
  2. #freespace 0xFF
  3. #dynamic 0xF00000
  4.  
  5. #org @start
  6. checkflag 0x270
  7. if 0x0 call @lapras_check
  8. checkflag 0x271
  9. if 0x0 call @snorlax_check
  10. checkflag 0x272
  11. if 0x0 call @venusaur_check
  12. checkflag 0x273
  13. if 0x0 call @charizard_check
  14. checkflag 0x274
  15. if 0x0 call @blastoise_check
  16. checkflag 0x280
  17. if 0x0 goto @normal
  18. msgbox @cozy_msg MSG_FACE
  19. end
  20.  
  21. #org @normal
  22. msgbox 0x8260099 MSG_FACE
  23. end
  24.  
  25. #org @lapras_check
  26. checkflag 0x240
  27. if 0x1 goto @lapras
  28. return
  29.  
  30. #org @lapras
  31. setflag 0x270
  32. bufferpokemon 0x0 PKMN_LAPRAS
  33. setvar 0x8000 PKMN_LAPRAS
  34. goto @givepokemon
  35.  
  36. #org @SNORLAX_check
  37. checkflag 0x241
  38. if 0x1 goto @SNORLAX
  39. return
  40.  
  41. #org @SNORLAX
  42. setflag 0x271
  43. bufferpokemon 0x0 PKMN_SNORLAX
  44. setvar 0x8000 PKMN_SNORLAX
  45. goto @givepokemon
  46.  
  47. #org @VENUSAUR_check
  48. checkflag 0x242
  49. if 0x1 goto @VENUSAUR
  50. return
  51.  
  52. #org @VENUSAUR
  53. setflag 0x272
  54. bufferpokemon 0x0 PKMN_VENUSAUR
  55. setvar 0x8000 PKMN_VENUSAUR
  56. goto @givepokemon
  57.  
  58. #org @CHARIZARD_check
  59. checkflag 0x243
  60. if 0x1 goto @CHARIZARD
  61. return
  62.  
  63. #org @CHARIZARD
  64. setflag 0x273
  65. bufferpokemon 0x0 PKMN_CHARIZARD
  66. setvar 0x8000 PKMN_CHARIZARD
  67. goto @givepokemon
  68.  
  69. #org @BLASTOISE_check
  70. checkflag 0x244
  71. if 0x1 goto @BLASTOISE
  72. return
  73.  
  74. #org @BLASTOISE
  75. setflag 0x274
  76. bufferpokemon 0x0 PKMN_BLASTOISE
  77. setvar 0x8000 PKMN_BLASTOISE
  78. goto @givepokemon
  79.  
  80. #org @givepokemon
  81. lock
  82. faceplayer
  83. setflag 0x280
  84. msgbox @seen_msg MSG_KEEPOPEN
  85. givepokemon 0x8000 40 0 0 0 0
  86. fanfare 0x172
  87. preparemsg @obtained_msg
  88. waitmsg
  89. waitfanfare
  90. release
  91. end
  92.  
  93. #org @seen_msg
  94. = I saw that!\nYou bought a [buffer1] DOLL!\pTo invest so much for a DOLL like\nthat[.]\pYou must have quite an interest in\nPOKéMON from the KANTO region.\lHere, I want you to have this.
  95.  
  96. #org @cozy_msg
  97. = DOLLS are cozy, aren't they?
  98.  
  99. #org @obtained_msg
  100. = [player] obtained a [buffer1]!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement