Advertisement
Guest User

Untitled

a guest
Jul 13th, 2015
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. options:
  2. P: &4[TELA]
  3. SemPermi: &4&lSem Permissao!
  4. ComandoParaBanir: ban %player% 0 Hack
  5. solicitou1: &cO STAFF &6%player% &csolicitou sua tela.
  6. solicitou2: &cVocê tem 10 minutos para printar e usar /enviartela
  7. solicitou3: { link}
  8. solicitou4: &cEnvie um print de tela inteira, com data de hoje e
  9. solicitou5: contendo essa mensagem no chat!
  10. solicitou6: &cOutros prints não serão aceitos!
  11. solicitou7: &cNão sabe upar seu print? Acesse http://prntscr.com
  12. solicitou8: &cCaso deslogue será banido automaticamente
  13. solicitou9: &cVocê solicitou tela do jogador: &6%player%&c.
  14. solicitou10: &c&lAGUARDE &ca resposta do mesmo! caso ele deslogue
  15. solicitou11: &cserá banido automaticamente.
  16. msgenviou1: &cSeu print foi enviado!
  17. msgenviou2: &c%player% -> %arg 1%
  18. msgliberou1: &cVocê Liberou &6%arg 1%&c.
  19. msgliberou2: &cVocê Foi Liberado pelo staffer &6%player%&c.
  20. msgliberou3: &cJogue Honestamente!
  21. jasolicitou: &cVocê já solicitou a tela do jogador!
  22. jasolicitou2: &c&lAGUARDE &ca resposta do mesmo!
  23.  
  24. command /pedirtela [<player>]:
  25. trigger:
  26. if arg 1 is set:
  27. if player is op:
  28. if {pedirtela.espera.%arg 1%} is false:
  29. send "{@P} {@solicitou1}" to arg 1
  30. send "{@P} {@solicitou2}" to arg 1
  31. send "{@P} {@solicitou3}" to arg 1
  32. send "{@P} {@solicitou4}" to arg 1
  33. send "{@P} {@solicitou5}" to arg 1
  34. send "{@P} {@solicitou6}" to arg 1
  35. send "{@P} {@solicitou7}" to arg 1
  36. send "{@P} {@solicitou8}" to arg 1
  37. send "{@P} {@solicitou9}" to player
  38. send "{@P} {@solicitou10}" to player
  39. send "{@P} {@solicitou11}" to player
  40. set {pedirtela.espera.%arg 1%} to true
  41. wait 10 minutes
  42. if {pedirtela.espera.%arg 1%} is true:
  43. make console execute command "{@ComandoParaBanir}"
  44. else:
  45. send "{@P} {@jasolicitou}"
  46. send "{@P} {@jasolicitou2}"
  47. else:
  48. send "{@P} {@SemPermi}"
  49. else:
  50. send "{@P} &cUse /pedirtela <nick>"
  51.  
  52. command /liberar [<player>]:
  53. trigger:
  54. if arg 1 is set:
  55. if player is op:
  56. if {pedirtela.espera.%arg 1%} is true:
  57. set {pedirtela.espera.%arg 1%} to false
  58. send "{@P} {msgliberou1}" to player
  59. send "{@P} {msgliberou2}" to arg 1
  60. send "{@P} {msgliberou3}" to arg 1
  61. else:
  62. send "&cNinguem pediu a tela do jogador!"
  63. else:
  64. send "{@P} {@SemPermi}"
  65. else:
  66. send "&cUse /liberar <nick>"
  67.  
  68. command /enviartela [<text>]:
  69. trigger:
  70. if {pedirtela.espera.%player%} is true:
  71. send "{@P} {@msgenviou1}" to player
  72. send "&0==================" to all ops
  73. send "{@P} {@msgenviou2}" to all ops
  74. send "&0==================" to all ops
  75. else:
  76. send "&cNinguem pediu sua tela!"
  77.  
  78. on quit:
  79. if {pedirtela.espera.%player%} is true:
  80. make console execute command "{@ComandoParaBanir}"
  81. if {pedirtela.espera.%player%} is false:
  82. set quit message to " "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement