Advertisement
taoru_8673

Untitled

Sep 2nd, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. on join:
  2. set {click.%player%} to false
  3.  
  4. command /punishment <text> <player> [<text>]:
  5. permission: taoru.punishment
  6. usage: eweqwfsfadsfdfas
  7. trigger:
  8. if arg-1 is "mute":
  9. set {mute.%arg-2%} to true
  10. send "&b%arg-2%をミュートしました。"
  11. send "&e%arg-2%のミュートを解除するには /punishment unmute mcid 理由"
  12. broadcast "&e%player%さん&bが&e%arg-2%さん&bを&e%arg-3%の理由&bでミュートしました"
  13. if arg-1 is "unmute":
  14. set {mute.%arg-2%} to false
  15. send "&b%arg-2%のミュートを解除しました。"
  16. broadcast "&e%player%さん&bが&e%arg-2%さん&bを&e%arg-3%の理由&bでミュートを解除しました"
  17. if arg-1 is "crash":
  18. send "%player%さんが&a%arg-2%さん&fをクラッシュさせました" to ops
  19. execute console command "/particle angryVillager ~ ~ ~ 2 2 2 100000 99999999 normal %arg-2%"
  20. if arg-1 is "jail":
  21. teleport the arg-2 to {jailtp}
  22. broadcast "&b%player%さんが&e%arg-2%さんを&2%arg-3%の理由でJAILしました。"
  23. if arg-1 is "jailtp":
  24. set {jailtp} to location of player
  25. send "&bJAIL地点をセットしました。"
  26. if arg-1 is "click":
  27. if {click.%arg-2%} is false:
  28. set {click.%arg-2%} to true
  29. send "&b%arg-2%さんのクリック数を計測します。"
  30. stop
  31. if {click.%arg-2%} is true:
  32. send "&bそのプレイヤーは計測中です。"
  33. stop
  34. on left click:
  35. if {click.%player%} is true:
  36. add 1 to {clickcount.%player%}
  37. wait 1 second
  38. set {click.%player%} to false
  39. send "%player%さんのクリック数は%{clickcount.%player%}%です" to ops
  40. while {clickcount.%player%} is more than 25:
  41. kick player
  42. clear {clickcount.%player%}
  43.  
  44.  
  45. on command "me":
  46. {mute.%player%} is true
  47. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement