Advertisement
sora200507

Untitled

Jul 26th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. options:
  2.  
  3. #Toggles the changing of the chat display name with the /nick command.
  4.  
  5. #Default: true
  6. #Accepts: boolean (true/false, yes/no, on/off)
  7. changeChatNick: true
  8.  
  9. #Toggles the changing of the tablist display name with the /nick command.
  10.  
  11. #Default: true
  12. #Accepts: boolean (true/false, yes/no, on/off)
  13. changeTablistNick: true
  14.  
  15. #Toggles the changing of the nametag (above head) display name with the /nick command.
  16.  
  17. #Default: true
  18. #Accepts: boolean (true/false, yes/no, on/off)
  19. changeAboveHeadNick: true
  20. command /nick [<text>]:
  21. permission: nick.change
  22. permission message: <light red>You don<grey>'<light red>t have permission for this.
  23. executable by: players
  24. usage: /nick [new nick]
  25. description: Changes your above head,tablist and/or chat nick.
  26. trigger:
  27.  
  28. if argument is set:
  29. set {_match} to uncolored (colored argument)
  30.  
  31. if length of {_match} is less than 16:
  32. set {nickStorage::%sender's uuid%} to removeColors(argument, sender)
  33.  
  34. if {@changeChatNick} is true:
  35. set sender's display name to {nickStorage::%sender's uuid%}
  36. if {@changeTablistNick} is true:
  37. set sender's mundosk tablist name to {nickStorage::%sender's uuid%}
  38. if {@changeAboveHeadNick} is true:
  39. set sender's nametag to {nickStorage::%sender's uuid%}
  40.  
  41. send "<light green>あなたの名前は <grey>""%colored argument%<grey>""に変更されたよ!"
  42.  
  43. else:
  44. send "ニックネームは16文字までです"
  45.  
  46. else:
  47. if {@changeChatNick} = true:
  48. set sender's display name to sender's name
  49. if {@changeTablistNick} = true:
  50. set sender's mundosk tablist name to sender's name
  51. if {@changeAboveHeadNick} = true:
  52. set sender's nametag to sender's name
  53.  
  54. send "<light green>あなたのニックネームは元に戻りました<grey>."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement