Guest User

SpaarkOP

a guest
May 26th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. # Script - SpaarkOP v1.0
  2. # Criador - zSpaark
  3. # Skype - spaark.minecraft
  4.  
  5. options:
  6. #Senha dos comandos /op e /deop.
  7. Senha: senhagaluda
  8. #Prefix das mensagens.
  9. Prefix: &7[&8+&7]
  10. #Mensagem quando não tem permissão.
  11. MsGSP: &cSem Permissão!
  12.  
  13. command /op [<player>] [<text>]:
  14. permission: opped.use
  15. permission message: {@Prefix} {@MsGSP}
  16. trigger:
  17. if arg 2 is not "{@Senha}":
  18. send "{@Prefix} &cSenha Incorreta"
  19. if arg 2 is not set:
  20. send "{@Prefix} &cDigite /op [Nick] [Senha]"
  21. if arg 2 is "{@Senha}":
  22. if arg 1 is not set:
  23. send "{@Prefix} &cDigite /op [Nick] [Senha]"
  24. if arg 1 is set:
  25. if arg 2 is "{@Senha}":
  26. send "&cLoading..."
  27. wait 5 seconds
  28. op the arg 1
  29. send "{@Prefix} &eVocê agora é um operador." to arg 1
  30.  
  31. command /deop [<player>] [<text>]:
  32. permission: opped.use
  33. permission message: {@Prefix} &cSem Permissão!
  34. trigger:
  35. if arg 2 is not "{@Senha}":
  36. send "{@Prefix} &cSenha Incorreta"
  37. if arg 2 is not set:
  38. send "{@Prefix} &cDigite /deop [Nick] [Senha]"
  39. if arg 2 is "{@Senha}":
  40. if arg 1 is not set:
  41. send "{@Prefix} &cDigite /deop [Nick] [Senha]"
  42. if arg 1 is set:
  43. if arg 2 is "{@Senha}":
  44. send "&cLoading..."
  45. wait 5 seconds
  46. deop the arg 1
  47. send "{@Prefix} &eVocê não é mais um operador." to arg 1
Add Comment
Please, Sign In to add comment