Advertisement
SilentShiro

Untitled

Mar 29th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. options:
  2. start: stone pickaxe
  3. battlepass: iron pickaxe
  4. p: &8[&cPing&8]
  5. cc: &8[&cChatClear&8]
  6. ccperm: clear.chat
  7. noperm: &8[&cSystem&8] &4You don't have any Permission for that
  8.  
  9. on first join:
  10. clear inventory of player
  11.  
  12. on join:
  13. set join message to ""
  14. broadcast "&8[&a+&8] &8» &a%player% &7joined!"
  15. send player title "&b&liTrinity - Realm" with subtitle "&5&lBattle Royale" for 5 seconds
  16. give player {@start} named "&9Common &8» &fPickaxe" with lore "&7Free-Pass Item"
  17. if player has permission "br.battlepass":
  18. remove {@start} from the player
  19. give player {@battlepass} named "&5&lEpic &8» &fWorld traveler Pickaxe" with lore "&7Battle-Pass Item"
  20. teleport the player to {spawn}
  21.  
  22. on quit:
  23. set quit message to ""
  24. broadcast "&8[&c-&8] &8« &c%player% &7left!"
  25. clear inventory of player
  26.  
  27. on drop of {@start}:
  28. message "&cYou can't drop your Main-Item" to player
  29. cancel event
  30.  
  31. on drop of {@battlepass}:
  32. message "&cYou can't drop your Main-Item" to player
  33. cancel event
  34.  
  35. command /baro <text>:
  36. permission: br.admin
  37. trigger:
  38. if arg is not "setspawn" or "setarena" or "setshop" or "help":
  39. message "&8[&cSystem&8] &cUnknown Command."
  40. if arg is "setspawn":
  41. set {spawn} to location of player
  42. send "&8[&5BattleRoyale&8] &7you set the spawn" to player
  43. if arg is "setarena":
  44. set {spawn} to location of player
  45. send "&8[&5BattleRoyale&8] &7you set the arena" to player
  46. if arg is "setshop":
  47. set {shop} to location of player
  48. send "&8[&5BattleRoyale&8] &7you set the shop" to player
  49. if arg is "help":
  50. message "&e&m----&r&e> &5&lBattle Royale &e<&m----"
  51. message "&7/baro setarena - &esets the arena"
  52. message "&7/baro setspawn - &esets the spawnpoint"
  53. message "&7/baro setshop - &esets the shop"
  54.  
  55. command /arena:
  56. permission: br.arena
  57. trigger:
  58. set {spawn} to location of player
  59. send "&8[&5BattleRoyale&8] &7you set the arena" to player
  60.  
  61. command /shop:
  62. permission: br.shop
  63. trigger:
  64. teleport the player to {shop}
  65. send "&8[&5BattleRoyale&8] &7you set the shop" to player
  66.  
  67. on break:
  68. cancel event
  69.  
  70. on break of log:
  71. cancel event
  72. give player 5 oak log named "&9&lCommon &8» &fLog" with lore "&7Build Material"
  73.  
  74. command /ping [<offlineplayer>]:
  75. trigger:
  76. if arg 1 is not set:
  77. send "{@p} &ayou curently have a &e%player's ping%ms"
  78. if arg 1 is set:
  79. send "{@p} &a%arg 1% curently have a &e%arg 1's ping%ms"
  80.  
  81. command /chatclear:
  82. permission: {@ccperm}
  83. permission message: {@noperm}
  84. aliases: cc
  85. trigger:
  86. loop 150 times:
  87. broadcast ""
  88. broadcast "{@cc} &b%player's display name% cleared the chat"
  89.  
  90. on death:
  91. clear inventory of player
  92. teleport the player to {spawn}
  93.  
  94. on respawn:
  95. clear inventory of player
  96. teleport the player to {spawn}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement