Advertisement
zGhol

Untitled

Jan 17th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. options:
  2.  
  3. # Coloque a Permissão # #! EDIT !#
  4. Perm: Fly.Usar
  5.  
  6. # Coloque a Prefix # #! EDIT !#
  7. Prefix: &9&lF&f&lly &9&l> &f
  8.  
  9. # Coloque a Mensagem quando Habilitar e Desligar # #! EDIT !#
  10. Msg: Você habilitou o fly
  11. Msg2: Você desabilitou o fly
  12.  
  13. # Coloque a permissão de ver informação # #! EDIT !#
  14. Perm2: Fly.Info
  15.  
  16. command /fly:
  17. permission: {@Perm}
  18. trigger:
  19. if {Fly.%player%} is false:
  20. set player's fly mode to true
  21. set {Fly.%player%} to true
  22. send "{@Prefix}{@Msg}"
  23. stop
  24. if {Fly.%player%} is true:
  25. set player's fly mode to false
  26. set {Fly.%player%} to false
  27. send "{@Prefix}{@Msg2}"
  28. stop
  29.  
  30. command /fly info:
  31. trigger:
  32. if player has the permission "{@Perm2}":
  33. send "&9&l----(--------------)----"
  34. send " "
  35. send " &c&lF&f&last&c&lC&f&lick"
  36. if {Fly.%player%} is false:
  37. send "&9&l● &f&lSeu fly mode está: &cDesligado"
  38. stop
  39. if {Fly.%player%} is true:
  40. send "&9&l● &f&lSeu fly mode está: &aLigado"
  41. stop
  42. send "&9&l● &f&l/fc iniciar"
  43. send " &c&lF&f&last&c&lC&f&lick"
  44. send " "
  45. send "&9&l----(--------------)----"
  46. stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement