Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. #dynamic 0x800000
  2.  
  3. //---------------
  4. #org @start
  5. lock
  6. fadeout 0x1
  7. playsong 0x148 0x0
  8. clearflag 0x217
  9. showsprite 0x5
  10. applymovement 0x5 @move1
  11. waitmovement 0x0
  12. trainerbattle 0x1 0x245 0x0 @string1 @string2 @snippet1
  13. end
  14.  
  15. //---------------
  16. #org @snippet1
  17. msgbox @string3 MSG_NORMAL //"Put something here for after the\n..."
  18. applymovement MOVE_PLAYER @move2
  19. applymovement 0x5 @move3
  20. waitmovement 0x0
  21. hidesprite 0x5
  22. setflag 0x217
  23. setvar 0x4015 0x1
  24. release
  25. end
  26.  
  27.  
  28. //---------
  29. // Strings
  30. //---------
  31. #org @string1
  32. = Enter text here (before)
  33.  
  34. #org @string2
  35. = Enter text here (after)
  36.  
  37. #org @string3
  38. = Put something here for after the\nbattle.
  39.  
  40.  
  41. //-----------
  42. // Movements
  43. //-----------
  44. #org @move1
  45. #raw 0x10 //Step Down (Normal)
  46. #raw 0x2 //Face Left
  47. #raw 0x12 //Step Left (Normal)
  48. #raw 0x12 //Step Left (Normal)
  49. #raw 0x12 //Step Left (Normal)
  50. #raw 0x12 //Step Left (Normal)
  51. #raw 0x1 //Face Up
  52. #raw 0x11 //Step Up (Normal)
  53. #raw 0x2 //Face Left
  54. #raw 0x12 //Step Left (Normal)
  55. #raw 0x12 //Step Left (Normal)
  56. #raw 0x12 //Step Left (Normal)
  57. #raw 0x12 //Step Left (Normal)
  58. #raw 0xFE //End of Movements
  59.  
  60. #org @move2
  61. #raw 0x36 //Slide Up (Normal)
  62. #raw 0x0 //Face Down
  63. #raw 0xFE //End of Movements
  64.  
  65. #org @move3
  66. #raw 0x12 //Step Left (Normal)
  67. #raw 0x12 //Step Left (Normal)
  68. #raw 0x12 //Step Left (Normal)
  69. #raw 0x12 //Step Left (Normal)
  70. #raw 0x12 //Step Left (Normal)
  71. #raw 0x12 //Step Left (Normal)
  72. #raw 0x12 //Step Left (Normal)
  73. #raw 0x12 //Step Left (Normal)
  74. #raw 0x12 //Step Left (Normal)
  75. #raw 0xFE //End of Movements
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement