Zeldaboy111

Skript Tutorial #55

Dec 5th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. on enable:
  2. set {text::wands::title} to "&3[&bWands&3]"
  3. set {text::wands::helpemessage} to "%{text::wands::title}% &4Doe &c/wand get list &4om de wandlist te krijgen.%nl%%{text::wands::title}% &4Doe &c/wand get [wandnaam] &4om een wand te krijgen."
  4. set {text::wands::nep} to "%{text::wands::title}% &4Je hebt &convoldoende permissies &4om deze command uit te voeren."
  5. set {text::wands::gbw} to "%{text::wands::title}% &4Deze wand bestaat niet, doe &c/wand get list &4om de wandlist te krijgen."
  6.  
  7. command /wand [<text>] [<text>]:
  8. trigger:
  9. if player has permission "wand.get" OR "wand.*":
  10. if arg 1 is "get":
  11.  
  12. if arg 2 is "list":
  13. send "%{text::wands::title}% &3Dit is de lijst met alle wands:"
  14. send "%{text::wands::title}% &bLightning"
  15. stop
  16.  
  17. if arg 2 is "Lightning":
  18. send "%{text::wands::title}% &3Veel plezier met je &b&lLightning Wand&3."
  19. stop
  20.  
  21. else:
  22. send "%{text::wands::gbw}%"
  23. stop
  24.  
  25. else:
  26. send "%{text::wands::helpemessage}%"
  27. stop
  28.  
  29. else:
  30. send "%{text::wands::nep}%"
  31. stop
Advertisement
Add Comment
Please, Sign In to add comment