moeycvbn12

Untitled

Dec 2nd, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. #
  2. # SwordEffectsLite v2.4
  3. #
  4. # By DinPro
  5. #
  6.  
  7. options:
  8. prefix: &d&lSwordEffects
  9. version: 2.4
  10.  
  11. on damage:
  12. held item of attacker is a wooden sword
  13. apply swiftness 2 to the attacker
  14. apply blindness 2 to the victim
  15. poison the victim for 5 seconds
  16. show mob spawner flames at the victim
  17. push the victim upwards
  18.  
  19. on damage:
  20. held item of attacker is a stone sword
  21. apply swiftness 2 to the attacker
  22. apply blindness 2 to the victim
  23. poison the victim for 5 seconds
  24. show mob spawner flames at the victim
  25.  
  26. on damage:
  27. held item of attacker is an iron sword
  28. apply swiftness 2 to the attacker
  29. apply blindness 2 to the victim
  30. show mob spawner flames at the victim
  31. poison the victim for 5 seconds
  32. ignite the victim
  33.  
  34. on damage:
  35. held item of attacker is a diamond sword
  36. apply swiftness 5 to the attacker
  37. apply blindness 3 to the victim
  38. show mob spawner flames at the victim
  39. poison the victim for 5 seconds
  40. ignite the victim
  41. create a fake explosion at the victim
  42.  
  43. command /sword <text>:
  44. aliases: /sel
  45. trigger:
  46. if arg 1 = "help":
  47. if player has permission "swords.help":
  48. message "&3SwordEffectsLite &a- &3DinPro"
  49. message "&a/sword reload &7- &6Reloads the skript"
  50. message "&a/sword version &7- &6Shows the current version"
  51. message "&a/sword cure &7- &6Cures you from poison"
  52. message "&a/sword help &7- &6Shows this help menu"
  53. message "&a/sword author &7- &6Shows the Author of the plugin"
  54. message "&4Youtube &a- &5www.youtube.com/c/DinPro2"
  55. exit
  56. else:
  57. message "{@prefix} &cYou don't have the permission &6swords.help&c!"
  58. if arg 1 is "author":
  59. if player has permission "swords.author":
  60. message "{@prefix} &aThe Author of this Skript Is &6DinPro&a!"
  61. exit
  62. else:
  63. message "{@prefix} &cYou don't have the permission &6swords.author&c!"
  64. if arg 1 is "reload":
  65. if player has permission "swords.reload":
  66. make console execute command "/sk reload SwordEffectsLite"
  67. message "{@prefix} &bSuccessfully reloaded &aSwordEffectsLite"
  68. exit
  69. else:
  70. message "{@prefix} &cYou don't have the permission &6swords.reload&c!"
  71. if arg 1 is "cure":
  72. if player has permission "swords.cure":
  73. message "{@prefix} &6You Have Been Cured!"
  74. cure the player from poison
  75. exit
  76. else:
  77. message "{@prefix} &cYou don't have the permission &6swords.cure&c!"
  78. if arg 1 is "version":
  79. if player has permission "swords.version":
  80. message "{@prefix} &aYou are currently running &6SwordEffectsLite &aon the version &8{@version}"
  81. exit
  82. else:
  83. message "{@prefix} &cYou don't have the permission &6swords.version&c!"
  84. else:
  85. make the player execute "/sel help"
Advertisement
Add Comment
Please, Sign In to add comment