Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #dynamic 0xE40000
  2. #org @start
  3. lock
  4. faceplayer
  5. msgbox @1 0x6
  6. goto @choose
  7. end
  8.  
  9. #org @choose
  10. special 0x28 //stores your party in the RAM
  11. fadescreen 0x1
  12. special 0x2A //choosing screen
  13. waitstate
  14. compare LASTRESULT 0x0
  15. if 0x5 goto @it //if nothing bad happened goto @it
  16. special 0x29 //restores party, won't be necessary since I'm forcing the player
  17. goto @no
  18.  
  19. #org @it
  20. special 0xFB //updates party I guess? The script is fucked up without it
  21. msgbox @3 0x6 //anything below this is what you want to happen, just make sure to have special 0x29 in the end
  22. trainerbattle 0x3 0x10 0x0 @win
  23. msgbox @4 0x6
  24. special 0x29
  25. release
  26. end
  27.  
  28. #org @win
  29. = Fuck.
  30.  
  31. #org @4
  32. = I will now return your party.
  33.  
  34. #org @3
  35. = Battle begin.
  36.  
  37. #org @no
  38. msgbox @2 0x6
  39. goto @choose
  40.  
  41. #org @2
  42. = I said choose.
  43.  
  44. #org @1
  45. = Choose.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement