Advertisement
Guest User

TrainerBoss

a guest
May 28th, 2018
899
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. if sendout1<0 || sendout2<0
  2. sendout2 = nil
  3. pbDisplayBrief(_INTL("{1} envió a {2}!",@opponent.fullname,@party2[sendout1].name))
  4. @battlers[1].pbInitialize(@party2[sendout1],sendout1,false)
  5. @battlers[3].pbInitBlank
  6. @battlers[3].fainted = true
  7. pbSendOut(1,@party2[sendout1])
  8. else
  9. pbDisplayBrief(_INTL("{1} envió a {2} y a {3}!",
  10. @opponent.fullname,@party2[sendout1].name,@party2[sendout2].name))
  11. @battlers[1].pbInitialize(@party2[sendout1],sendout1,false)
  12. @battlers[3].pbInitialize(@party2[sendout2],sendout2,false)
  13. pbSendOut(1,@party2[sendout1])
  14. pbSendOut(3,@party2[sendout2])
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement