Advertisement
Blue_Tec

Untitled

Jun 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. command /menu:
  2. trigger:
  3. open chest with 1 rows named "&c闇ステータス" to player
  4. wait 1 tick
  5. format slot 4 of player with glass named "&a%player%さんのステータス" with lore "&e初参加: &f%{stats.join::%uuid of player%}%||&b当選回数: &f%{stats.big::%uuid of player%}%||&b当選金/支払金: &f%{stats.tousen::%uuid of player%}%/%{stats.siharai::%uuid of player%}%||&bDiscord: &c%{discord::%uuid of player%}%" to be unstealable
  6.  
  7. on join:
  8. if {firstjoin.1::%uuid of player%} is true:
  9. stop
  10. else:
  11. set {stats.join::%uuid of player%} to "%now%"
  12. set {stats.big::%uuid of player%} to 0
  13. set {stats.tousen::%uuid of player%} to 0
  14. set {stats.siraharai::%uuid of player%} to 0
  15. set {discord::%uuid of player%} to "&c未設定"
  16.  
  17. command /discord:
  18. trigger:
  19. if {discord.t::%uuid of player%} is true:
  20. message "&cDiscordは設定済みです。"
  21. else:
  22. message "&eチャットにDiscordリンクを送信してください。"
  23. set {discord.d::%uuid of player%} to true
  24.  
  25. on chat:
  26. if {discord.d::%uuid of player%} is true:
  27. cancel event
  28. set {discord.t::%uuid of player%} to true
  29. set {discord.d::%uuid of player%} to false
  30. message "&eデーターを読み込み中…"
  31. wait 1 second
  32. message "&b設定しました!"
  33. set {discord::%uuid of player%} to "&f%message%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement