Advertisement
Blue_Tec

Untitled

Apr 3rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. command /dailyreward:
  2. trigger:
  3. open chest with 6 rows named "Daily Reward" to player
  4. wait 2 ticks
  5. format slot 20 of player with ender chest named "&c普通物資箱" with lore "&7未実装…" to be unstealable
  6. format slot 21 of player with ender chest named "&a[Lv.10 ~]&c格安物資箱" with lore "&7未実装…" to be unstealable
  7. format slot 22 of player with ender chest named "&a[Lv.20 ~]&c普通物資箱" with lore "&7未実装…" to be unstealable
  8. format slot 23 of player with ender chest named "&a[Lv.30 ~]&c高級物資箱" with lore "&7未実装…" to be unstealable
  9. format slot 24 of player with ender chest named "&a[Lv.50 ~]&c軍隊特別物資箱" with lore "&7未実装…" to be unstealable
  10. if {vote::%player%} is true:
  11. format slot 29 of player with minecart named "&aホームページ閲覧" with lore "&c受け取り済み" to be unstealable
  12. else:
  13. format slot 29 of player with jukebox named "&aホームページ閲覧" with lore "&b訪問できます。||&92,000 XP &62 kills" to close then run [execute player command "prhomepage %player% 17613n1273l1203bc8103tt49n1274"]
  14. if {daily::%player%} is true:
  15. format slot 31 of player with 116 named "&a毎日報酬" with lore "&c受け取り済み" to be unstealable
  16. else:
  17. format slot 31 of player with jukebox named "&a毎日報酬" with lore "&b獲得できます" to close then run [execute player command "prgetdaily %player% 17613n1273l1203bc8103tt49n1274"]
  18. format slot 33 of player with anvil named "&a毎週クエスト" with lore "&7未実装…" to be unstealable
  19.  
  20. command /prhomepage [<player>] [<text>]:
  21. trigger:
  22. if arg-2 is "17613n1273l1203bc8103tt49n1274":
  23. if arg-1 is set:
  24. set {vote::%arg-1%} to true
  25. send "&6spinnermc.cf" to arg-1
  26. wait 10 seconds
  27. send "&6報酬を獲得しました。" to arg-1
  28.  
  29. command /prgetdaily [<player>] [<text>]:
  30. trigger:
  31. if arg-2 is "17613n1273l1203bc8103tt49n1274":
  32. if arg-1 is set:
  33. set {daily::%arg-1%} to true
  34. send "&6spinnermc.cf" to arg-1
  35. send "&6報酬を獲得しました。" to arg-1
  36. execute console command "/scoreboard players add %player% okane 1"
  37.  
  38. command /resetvote [<text>]:
  39. trigger:
  40. if arg-1 is "17613n1273l1203bc8103tt49n1274":
  41. set {vote::*} to false
  42.  
  43. command /resetdaily [<text>]:
  44. trigger:
  45. if arg-1 is "17613n1273l1203bc8103tt49n1274":
  46. set {daily::*} to false
  47.  
  48. on server start:
  49. set {vote::*} to false
  50. set {daily::*} to false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement