Advertisement
Guest User

Legendary

a guest
Aug 1st, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. # Commandes
  2.  
  3. command /Legendary <text>:
  4. Trigger:
  5. set {_Kit} to arg 1
  6. if {_Kit} is "Thor":
  7. set {_Player} to player
  8. set {thor.Charged.%{_Player}%} to false
  9. message "Vous êtes désormais <red>%{_Kit}%"
  10.  
  11.  
  12. # Thor
  13.  
  14. command /Legendary.lightning:
  15. Trigger:
  16. strike lightning at the targeted player or targeted block
  17.  
  18. on quit:
  19. set {_Player} to player
  20. if {thor.Charged.%{_Player}%} is set:
  21. clear {thor.Charged.%{_Player}%}
  22.  
  23. # --------------------------------------------------------------
  24. # Actif:
  25. on rightclick with a stick:
  26. set {_Player} to player
  27. if {thor.Charged.%{_Player}%} is set:
  28. if {thor.Charged.%{_Player}%} is false:
  29. set {thor.Charged.%{_Player}%} to true
  30. set the player's level to 5
  31. message "<gold>FOUDRE!!"
  32. execute player command "/Legendary.lightning"
  33. # Timer:
  34. wait a seconds
  35. set the player's level to 4
  36. wait a seconds
  37. set the player's level to 3
  38. wait a seconds
  39. set the player's level to 2
  40. wait a seconds
  41. set the player's level to 1
  42. wait a seconds
  43. set the player's level to 0
  44. set {thor.Charged.%{_Player}%} to false
  45.  
  46. else:
  47. message: Problème de paramètres.
  48. # --------------------------------------------------------------
  49.  
  50. # --------------------------------------------------------------
  51. # Passif:
  52. on death:
  53. if {thor.Charged.%{_Player}%} is set:
  54. # --------------------------------------------------------------
  55.  
  56.  
  57. # Voldemort
  58. # Actif: Poison
  59. # Passif: faiblesse +0.25/coeur à l'attaquant
  60. # Défaut: Ne résiste pas aux attaques groupé
  61.  
  62. # Odin
  63. # Actif: Slowness + Mining fatigue
  64. # Passif: Slowness +0.25/coeur à l'attaquant / Mining fatigue +0.10/coeur à l'attaquant
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement