Advertisement
Guest User

HYPIXEL SYSTEM

a guest
Jul 21st, 2018
4,214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 115.25 KB | None | 0 0
  1. #
  2. #
  3. #
  4. # Hypixel Core by amaGames(Special Sponsed)
  5. #
  6. # Spigot: none Website Premium
  7. #
  8. # DO NOT EDIT ANYTHING BELOW UNLESS YOU KNOW WHAT YOU ARE DOING
  9.  
  10. options:
  11. #Version. Do not change this.
  12. version: Premium
  13. #Author. You are not allowed to change this since it would violate our terms of use.
  14. author: amaGames
  15. #Spigot page of the author.
  16. spigot: none Website Premium
  17. awesomepeople: amaGames
  18. #Links & more. Customize them to your liking!
  19. email:
  20. bug-report-link:
  21. player-report-link:
  22. help-link:
  23. votelink1:
  24. votelink2:
  25. quadlink:
  26.  
  27. command /nick [<string>]:
  28. permission: Hypixel.yt
  29. permission message: &cYou are not allowed to do this!
  30. trigger:
  31. if arg 1 is not set:
  32. send "&cInvalid usage! Correct usage: /nick (user)"
  33. else if arg 1 is not "off":
  34. send "&aDisguised as &b%arg 1% &awith rank &7&lDEFAULT"
  35. set player tab name to "&7%arg-1%"
  36. set {Hypixel.disguise.%player%} to "true"
  37. set {Hypixel.nick.%player%} to "%arg 1%"
  38. else if arg 1 is "off":
  39. send "&aYou are no longer disguised."
  40. send "&aRe-join to update your tab name."
  41. set {Hypixel.disguise.%player%} to "false"
  42. set {Hypixel.nick.%player%} to "%player%"
  43. set {Hypixel.nickrank.%player%} to "None"
  44. set player tab name to "&f%player%"
  45.  
  46. on join:
  47. if {Hypixel.nick.%player%} is not set:
  48. set {Hypixel.nick.%player%} to "%player%"
  49.  
  50. command /mb-delivery-default:
  51. trigger:
  52. player has permission "Hypixel.default":
  53. set {_t} to difference between {delivery.default.%player%} and now
  54. set {_tc} to "1 day" parsed as a timespan
  55. if {_t} is less than {_tc}:
  56. message "&cYou've already looted this reward. Come again in 24 hours!"
  57. make console execute command "sound CHICKEN_EGG_POP %player%"
  58. stop
  59. else:
  60. message "&aLooted 1 Mystery Box!"
  61. execute console command "/gmysteryboxes give %player% 1 3"
  62. make console execute command "sound LEVEL_UP %player%"
  63. set {delivery.default.%player%} to now
  64. else:
  65. send "&cAn interal error occured while attempting to perform this command"
  66.  
  67. command /mb-delivery-vip:
  68. trigger:
  69. player has permission "Hypixel.vip":
  70. set {_t} to difference between {delivery.vip.%player%} and now
  71. set {_tc} to "1 day" parsed as a timespan
  72. if {_t} is less than {_tc}:
  73. message "&cYou've already looted this reward. Come again in 24 hours!"
  74. make console execute command "sound CHICKEN_EGG_POP %player%"
  75. stop
  76. else:
  77. message "&aLooted 5 Mystery Boxes!"
  78. execute console command "/gmysteryboxes give %player% 5 2"
  79. make console execute command "sound LEVEL_UP %player%"
  80. set {delivery.vip.%player%} to now
  81. else:
  82. send "&cYou must be of the &aVIP &crank or higher!"
  83.  
  84. command /mb-delivery-vip+:
  85. trigger:
  86. player has permission "Hypixel.vip+":
  87. set {_t} to difference between {delivery.vip+.%player%} and now
  88. set {_tc} to "1 day" parsed as a timespan
  89. if {_t} is less than {_tc}:
  90. message "&cYou've already looted this reward. Come again in 24 hours!"
  91. make console execute command "sound CHICKEN_EGG_POP %player%"
  92. stop
  93. else:
  94. message "&aLooted 5 Mystery Boxes!"
  95. execute console command "/gmysteryboxes give %player% 5 3"
  96. make console execute command "sound LEVEL_UP %player%"
  97. set {delivery.vip+.%player%} to now
  98. else:
  99. send "&cYou must be of the &aVIP&6+ &crank or higher!"
  100.  
  101. command /mb-delivery-mvp:
  102. trigger:
  103. player has permission "Hypixel.mvp":
  104. set {_t} to difference between {delivery.mvp.%player%} and now
  105. set {_tc} to "1 day" parsed as a timespan
  106. if {_t} is less than {_tc}:
  107. message "&cYou've already looted this reward. Come again in 24 hours!"
  108. make console execute command "sound CHICKEN_EGG_POP %player%"
  109. stop
  110. else:
  111. message "&aLooted 5 Mystery Boxes!"
  112. execute console command "/gmysteryboxes give %player% 5 4"
  113. make console execute command "sound LEVEL_UP %player%"
  114. set {delivery.mvp.%player%} to now
  115. else:
  116. send "&cYou must be of the &bMVP &crank or higher!"
  117.  
  118. command /mb-delivery-mvp+:
  119. trigger:
  120. player has permission "Hypixel.mvp+":
  121. set {_t} to difference between {delivery.mvp+.%player%} and now
  122. set {_tc} to "1 day" parsed as a timespan
  123. if {_t} is less than {_tc}:
  124. message "&cYou've already looted this reward. Come again in 24 hours!"
  125. make console execute command "sound CHICKEN_EGG_POP %player%"
  126. stop
  127. else:
  128. message "&aLooted 5 Mystery Boxes!"
  129. execute console command "/gmysteryboxes give %player% 5 4"
  130. make console execute command "sound LEVEL_UP %player%"
  131. set {delivery.mvp+.%player%} to now
  132. else:
  133. send "&cYou must be of the &bMVP&c+ &crank or higher!"
  134.  
  135. command /silence:
  136. permission: Hypixel.mod
  137. permission message: &cYou don't have permission to use this!
  138. trigger:
  139. if {Hypixel.silence} is not set:
  140. set {Hypixel.silence} to "true"
  141. broadcast "&c&lChat has been silenced for Permanent."
  142. else if {Hypixel.silence} is "true":
  143. set {Hypixel.silence} to "false"
  144. broadcast "&c&lChat is no longer silenced."
  145. else if {Hypixel.silence} is "false":
  146. set {Hypixel.silence} to "true"
  147. broadcast "&c&lChat has been silenced for Permanent."
  148.  
  149. #
  150. # Fly / Fly on join
  151. # You can enable Fly on join by removing the '#' infront each of the lines.
  152. #
  153.  
  154. command /fly:
  155. permission: Hypixel.vip
  156. permission message: &cYou must be of the &aVIP &crank or higher!
  157. trigger:
  158. if {fly.%player%} is not set:
  159. send "&aFly mode enabled!"
  160. make console execute command "sound ORB_PICKUP %player%"
  161. set player's flight mode to true
  162. set {fly.%player%} to "true"
  163. stop
  164. else if {fly.%player%} is "true":
  165. send "&cFly mode disabled!"
  166. set player's flight mode to false
  167. delete {fly.%player%}
  168. stop
  169.  
  170. #on join:
  171. #if player has permission "Hypixel.vip":
  172. #set player's flight mode to true
  173. #set {fly.%player%} to "true"
  174.  
  175. #on join:
  176. #if {flyspawn} is not set:
  177. #stop
  178. #if {flyspawn} is set:
  179. #if player has permission "Hypixel.vip":
  180. #teleport player to {flyspawn}
  181.  
  182. #command /setflyspawn:
  183. #permission: Hypixel.admin
  184. #permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  185. #trigger:
  186. #set {flyspawn} to location of player
  187. #send "&eYou set the Fly spawn to your current location!"
  188.  
  189. command /verhistory:
  190. trigger:
  191. send "&cHP Core Remake Update History"
  192. send "&e1.2.2"
  193. send "&e1.2.1"
  194. send "&e1.2"
  195. send "&e1.1.1"
  196. send "&e1.1"
  197. send "&e1.0"
  198.  
  199. command /settings:
  200. permission: Hypixel.mod
  201. permission message: &cYou are not allowed to do this!
  202. trigger:
  203. open chest with 4 rows named "Settings" to player
  204. wait 1 tick
  205. format slot 13 of player with 395 named "&aHypixel Command Spy" to be unstealable
  206. if {hcs.%player%} is "false":
  207. format slot 22 of player with 351:8 named "&fEnabled: &cFalse" to close then run [make player execute command "hcs"]
  208. else if {hcs.%player%} is "true":
  209. format slot 22 of player with 351:10 named "&fEnabled: &aTrue" to close then run [make player execute command "hcs"]
  210.  
  211.  
  212. command /history:
  213. permission: Hypixel.jrhelper
  214. permission message: &cYou are not allowed to do this
  215. trigger:
  216. send "&cSoon!"
  217.  
  218. #Limbo
  219. #How to activate: Put a '#' infront of the first execution line. Then,
  220. # make sure you remove all #'s infront of the lines to make it work!
  221. #To set the limbo spawn point use /setlimbo.
  222.  
  223. command /limbo:
  224. trigger:
  225. send "&cLimbo seems to be disabled. Enable it in the configuration file!"
  226. #teleport player to {Hypixel.limbo}
  227. #send "&c"
  228. #send "&c"
  229. #send "&c"
  230. #send "&c"
  231. #send "&c"
  232. #send "&c"
  233. #send "&c"
  234. #send "&c"
  235. #send "&c"
  236. #send "&cThe lobby you attempted to join was full or offline."
  237. #send "&eBecause of this, you were routed to The Limbo, a subset of"
  238. #send " &eyour own imagination."
  239. #send "&dThis place doesn't exist anywhere, and you can stay here as"
  240. #send " &dlong as you'd like."
  241. #send "&6To return to ""reality"", use &b/lobby game&6."
  242. #send "&cExamples: /lobby, /lobby skywars, /lobby quake, /lobby walls"
  243. #send "&4Watch out, though, as there are things that live in the Limbo."
  244.  
  245. command /chat [<string>]:
  246. trigger:
  247. if argument 1 is not set:
  248. send "&cInvalid usage! Correct usage: /chat channel"
  249. send "&cValid channels: all, party, guild"
  250. else if argument 1 is "a" or "all":
  251. send "&aYou are now in the &6ALL &achannel"
  252. delete {Hypixel.chat.%player%}
  253. else if argument 1 is "p" or "party":
  254. send "&6-----------------------------------------------------"
  255. send "&cYou must be in a party to join the party channel!"
  256. send "&6-----------------------------------------------------"
  257. else if argument 1 is "g" or "guild":
  258. send "&aYou are now in the &6GUILD &achannel"
  259. set {Hypixel.chat.%player%} to "guild"
  260.  
  261. command /vanish [<offline player>]:
  262. permission: Hypixel.yt
  263. permission message: &cYou are not of the rank to use this command!
  264. aliases: /v
  265. executable by: player
  266. trigger:
  267. if arg 1 is not set:
  268. if {vanish.%player%} is not set:
  269. hide the player from all players
  270. send "&f[VANISH] &cYou are invisible."
  271. set {vanish.%player%} to true
  272. loop all players:
  273. if loop-player has permission "Hypixel.admin":
  274. send "&f[VANISH] &c%player% is now in vanish." to loop-player
  275. else:
  276. reveal the player from all players
  277. send "&f[VANISH] &cYou are no longer invisible."
  278. delete {vanish.%player%}
  279. loop all players:
  280. if loop-player has permission "Hypixel.admin":
  281. send "&f[VANISH] &c%player% is no longer in vanish." to loop-player
  282. if arg 1 is set:
  283. if {vanish.%arg 1%} is not set:
  284. hide the arg 1 from all players
  285. send "&f[VANISH] &cYou are invisible." to arg 1
  286. send "&f[VANISH] &c%arg 1% is now in vanish." to player
  287. set {vanish.%arg 1%} to true
  288. loop all players:
  289. if loop-player has permission "Hypixel.admin":
  290. send "&f[VANISH] &c%arg 1% is now in vanish." to loop-player
  291. else:
  292. reveal the arg 1 from all players
  293. send "&f[VANISH] &cYou are no longer invisible." to arg 1
  294. send "&f[VANISH] &c%arg 1% is no longer in vanish." to player
  295. delete {vanish.%arg 1%}
  296. loop all players:
  297. if loop-player has permission "Hypixel.admin":
  298. send "&f[VANISH] &c%arg 1% is no longer in vanish." to loop-player
  299.  
  300. on quit:
  301. if {vanish.%player%} is set:
  302. delete {vanish.%player%}
  303. command /party:
  304. trigger:
  305. send "&cThis feature is getting worked on!"
  306.  
  307. command /setlimbo:
  308. permission: Hypixel.admin
  309. permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  310. trigger:
  311. set {Hypixel.limbo} to location of player
  312. send "&eYou set the Limbo spawn to your current location!"
  313.  
  314. command /search [<player>]:
  315. permission: Hypixel.jrhelper
  316. permission message: &cYou're not the rank of this command! You need to be of the jr helper rank or higher!
  317. trigger:
  318. if argument 1 is not set:
  319. send "&cUse: /search (username)"
  320. else if argument 1 is set:
  321. send "%{Hypixel.rank.%arg 1%}%%player% &ais playing on &e%world of argument 1%"
  322.  
  323. command /deliveryman-1 [<player>]:
  324. permission: Hypixel.admin
  325. permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  326. trigger:
  327. if argument 1 is not set:
  328. send "&cUse: /deliveryman-1 (username)"
  329. else if argument 1 is set:
  330. send "&cThat reward is not configured yet!"
  331. send "&cThis delivery is currently getting worked on!" to argument 1
  332.  
  333. command /votelinkdm-1 [<player>]:
  334. permission: Hypixel.admin
  335. permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  336. trigger:
  337. if argument 1 is not set:
  338. send "&cUse: /votelinkdm-1 (username)"
  339. else if argument 1 is set:
  340. send "&aToday's voting link is &b{@votelink2}&a! Follow the" to argument 1
  341. send " &finstructions on the website to redeem &95,000 XP &aand &63,000" to argument 1
  342. send " &fArcade Coins!" to argument 1
  343.  
  344. command /quadlink-1 [<player>]:
  345. permission: Hypixel.admin
  346. permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  347. trigger:
  348. if argument 1 is not set:
  349. send "&cUse: /quadlink-1 (username)"
  350. else if argument 1 is set:
  351. send "&6To get your redemption code, visit &c{@quadlink} &6and" to argument 1
  352. send " &6follow the simple instructions! Then in game use /redeem" to argument 1
  353. send " &6(code) with the code you just received!" to argument 1
  354. command /help:
  355. trigger:
  356. send "&eFor questions or issues related to payments email"
  357. send "&b{@email}"
  358. send "&eReport server issues or bugs on the forums:"
  359. send "&b{@bug-report-link}"
  360. send "&eFound a rule breaker? Report them on the forums:"
  361. send "&b{@player-report-link}"
  362. send "&eNeed more help? Check out our help section:"
  363. send "&b{@help-link}"
  364.  
  365. command /deliveryman:
  366. trigger:
  367. open chest with 6 rows named "The Delivery Man" to player
  368. wait 1 tick
  369. format slot 20 of player with 5 of ender chest named "&aMystery Box Delivery" with lore "&7Your free monthly &b5 &7(Total of &b5&7)||&7Mystery Boxes have arrived!|| ||&eClick to loot!" to close then run [make player execute command "mb-delivery-default"]
  370. format slot 21 of player with 5 of ender chest named "&aMystery Box Delivery" with lore "&7Your free monthly &b5 &7(Total of &b5&7)||&7Mystery Boxes have arrived!|| ||&7Requires &aVIP|| ||&eClick to loot!" to close then run [make player execute command "mb-delivery-vip"]
  371. format slot 22 of player with 5 of ender chest named "&aMystery Box Delivery" with lore "&7Your free monthly &b5 &7(Total of &b5&7)||&7Mystery Boxes have arrived!|| ||&7Requires &aVIP&6+|| ||&eClick to loot!" to close then run [make player execute command "mb-delivery-vip+"]
  372. format slot 23 of player with 5 of ender chest named "&aMystery Box Delivery" with lore "&7Your free monthly &b5 &7(Total of &b5&7)||&7Mystery Boxes have arrived!|| ||&7Requires &bMVP|| ||&eClick to loot!" to close then run [make player execute command "mb-delivery-mvp"]
  373. format slot 24 of player with 5 of ender chest named "&aMystery Box Delivery" with lore "&7Your free monthly &b5 &7(Total of &b5&7)||&7Mystery Boxes have arrived!|| ||&7Requires &bMVP&c+|| ||&eClick to loot!" to close then run [make player execute command "mb-delivery-mvp+"]
  374. format slot 29 of player with 342 named "&aVote Delivery" with lore "&7Vote for us at||&6{@votelink1}||&7for &95,000 XP &7and||&63,000 Arcade Coins&7!|| ||&eClick to loot!" to close then run [make console execute command "votelinkdm-1 %player%"]
  375. format slot 30 of player with 342 named "&aTwo Free Quad Boosters" with lore "&7Like us on Facebook and||&7receive two FREE Three Hour||&7Quad Boosters!|| ||&eClick to loot!" to close then run [make console execute command "quadlink-1 %player%"]
  376. format slot 31 of player with 173 named "&cDaily Reward" with lore "&7You have no tokens!" to close then run [make console execute command "deliveryman-1 %player%"]
  377. format slot 32 of player with 342 named "&6Website Link" with lore "&7Coming soon!" to close then run [make console execute command "deliveryman-1 %player%"]
  378. format slot 33 of player with 342 named "&6Daily Reward" with lore "&7Coming soon!" to close then run [make console execute command "deliveryman-1 %player%"]
  379.  
  380. command /editsign:
  381. trigger:
  382. if player has permission "Hypixel.admin":
  383. send "&cSoon!"
  384. else:
  385. send "&cYou're not of rank to use this command! You must be of the admin rank or higher!"
  386.  
  387. command /info:
  388. trigger:
  389. send "&cHypixel Hub"
  390. send "&cAuthor: &e{@author}"
  391. send "&cVersion: &e{@version}"
  392. send "&cSpigot: &e{@spigot}"
  393. send "&cAwesome People: &e{@awesomepeople}"
  394.  
  395. command /status:
  396. trigger:
  397. send "&eStatus: %{verify.%player%}%"
  398.  
  399. on join:
  400. if {karma.%player%} is not set:
  401. set {karma.%player%} to 0
  402.  
  403. on join:
  404. set tab header to "&bYou are playing on &e&lMC.HYPIXEL.NET" and footer to "&aRanks, Boosters & MORE! &c&lSTORE.HYPIXEL.NET" for player
  405.  
  406. command /minecraft:me:
  407. trigger:
  408. send "&cYou are not allowed to do this!"
  409.  
  410. command /mute [<player>] [<string>]:
  411. permission: Hypixel.jrhelper
  412. permission message: &cYou do not have permission for this!
  413. trigger:
  414. if argument 1 is not set:
  415. send "&c/mute (username) (reason)"
  416. else if argument 1 is set:
  417. if argument 2 is set:
  418. send "&cYou muted %arg 1% for %arg 2%."
  419. send "&c&lYou have been muted for %arg 2% for 0d0h30m0s." to argument 1
  420. set {hypixel.mute.%arg 1%} to "true"
  421. set {Hypixel.lastmute.%arg 1%} to "%arg 2%"
  422. set {hypixel.mutereason.%arg 1%} to "%arg 2%"
  423. wait 30 minutes
  424. set {hypixel.mute.%arg 1%} to "false"
  425.  
  426. command /ignore [<string>] [<player>]:
  427. trigger:
  428. if argument 1 is not set:
  429. send "&aIgnore Commands:"
  430. send "&e/ignore help &b- Prints this help message"
  431. send "&e/ignore list (page) &b- List ignored players"
  432. send "&e/ignore add Player &b- Ignore a player"
  433. send "&e/ignore remove Player &b- Unignore a player"
  434. else if argument 1 is "add":
  435. if argument 2 is set:
  436. send "&aAdded %arg 2% to your ignore list."
  437. else if argument 1 is "remove":
  438. if argument 2 is set:
  439. send "&aRemoved %arg 2% to your ignore list."
  440. else if argument 1 is "list":
  441. send "&cI couldn't find any player in your ignore list!"
  442.  
  443. command /unmute [<player>]:
  444. permission: Hypixel.jrhelper
  445. permission message: &cYou do not have permission for this!
  446. trigger:
  447. if argument 1 is not set:
  448. send "&c/unmute (username)"
  449. else if argument 1 is set:
  450. send "&cYou unmuted %arg 1%."
  451. set {hypixel.mute.%arg 1%} to "false"
  452.  
  453. command /adminrc [<string>] [<player>]:
  454. permission: Hypixel.admin
  455. permission message: &fUnknown command. Type "/help" for help.
  456. trigger:
  457. if argument 1 is not set:
  458. send "&c[HYPIXEL] Color Rank System is up to date!"
  459. send "&6/adminrc <color> <player>: &eUpdates chosen player's rank color to the chosen color."
  460. send "&6Rank Colors: &fRed Gold Green LightPurple DarkRed"
  461. else if argument 1 is "Red":
  462. if argument 2 is set:
  463. send "&c[HYPIXEL] Rank Color updated to &cRed!"
  464. set {Hypixel.rank.%arg-2%} to "&b[MVP&c+&b] "
  465. set {Hypixel.tabrank.%arg-2%} to "&bMVP&c+"
  466. make console execute command "nte player %arg-2% prefix &b[MVP&c+&b] &b"
  467. set {Hypixel.chatformat.%arg-2%} to "&f:"
  468. else:
  469. send "&cInvalid usage!"
  470. else if argument 1 is "Gold":
  471. if argument 2 is set:
  472. send "&c[HYPIXEL] Rank Color updated to &6Gold&c!"
  473. set {Hypixel.rank.%arg-2%} to "&b[MVP&6+&b] "
  474. set {Hypixel.tabrank.%arg-2%} to "&bMVP&6+"
  475. make console execute command "nte player %arg-2% prefix &b[MVP&6+&b] &b"
  476. set {Hypixel.chatformat.%arg-2%} to "&f:"
  477. else:
  478. send "&cInvalid usage!"
  479. else if argument 1 is "DarkRed":
  480. if argument 2 is set:
  481. send "&c[HYPIXEL] Rank Color updated to &4Dark Red&c!"
  482. set {Hypixel.rank.%arg-2%} to "&b[MVP&4+&b] "
  483. set {Hypixel.tabrank.%arg-2%} to "&bMVP&4+"
  484. make console execute command "nte player %arg-2% prefix &b[MVP&4+&b] &b"
  485. set {Hypixel.chatformat.%arg-2%} to "&f:"
  486. else:
  487. send "&cInvalid usage!"
  488. else if argument 1 is "Green":
  489. if argument 2 is set:
  490. send "&c[HYPIXEL] Rank Color updated to &aGreen&c!"
  491. set {Hypixel.rank.%arg-2%} to "&b[MVP&a+&b] "
  492. set {Hypixel.tabrank.%arg-2%} to "&bMVP&a+"
  493. make console execute command "nte player %arg-2% prefix &b[MVP&a+&b] &b"
  494. set {Hypixel.chatformat.%arg-2%} to "&f:"
  495. else:
  496. send "&cInvalid usage!"
  497. else if argument 1 is "LightPurple":
  498. if argument 2 is set:
  499. send "&c[HYPIXEL] Rank Color updated to &dLight Purple&c!"
  500. set {Hypixel.rank.%arg-2%} to "&b[MVP&d+&b] "
  501. set {Hypixel.tabrank.%arg-2%} to "&bMVP&d+"
  502. make console execute command "nte player %arg-2% prefix &b[MVP&d+&b] &b"
  503. set {Hypixel.chatformat.%arg-2%} to "&f:"
  504. else:
  505. send "&cInvalid usage!"
  506. else if argument 1 is "DarkAqua":
  507. if argument 2 is set:
  508. send "&c[HYPIXEL] Rank Color updated to &3Dark Aqua&c!"
  509. set {Hypixel.rank.%arg-2%} to "&b[MVP&3+&b] "
  510. set {Hypixel.tabrank.%arg-2%} to "&bMVP&3+"
  511. make console execute command "nte player %arg-2% prefix &b[MVP&3+&b] &b"
  512. set {Hypixel.chatformat.%arg-2%} to "&f:"
  513. else:
  514. send "&cInvalid usage!"
  515. else if argument 1 is "Yellow":
  516. if argument 2 is set:
  517. send "&c[HYPIXEL] Rank Color updated to &eYellow&c!"
  518. set {Hypixel.rank.%arg-2%} to "&b[MVP&e+&b] "
  519. set {Hypixel.tabrank.%arg-2%} to "&bMVP&e+"
  520. make console execute command "nte player %arg-2% prefix &b[MVP&e+&b] &b"
  521. set {Hypixel.chatformat.%arg-2%} to "&f:"
  522. else:
  523. send "&cInvalid usage!"
  524. else if argument 1 is "White":
  525. if argument 2 is set:
  526. send "&c[HYPIXEL] Rank Color updated to &fWhite&c!"
  527. set {Hypixel.rank.%arg-2%} to "&b[MVP&f+&b] "
  528. set {Hypixel.tabrank.%arg-2%} to "&bMVP&f+"
  529. make console execute command "nte player %arg-2% prefix &b[MVP&f+&b] &b"
  530. set {Hypixel.chatformat.%arg-2%} to "&f:"
  531. else:
  532. send "&cInvalid usage!"
  533. else if argument 1 is "Blue":
  534. if argument 2 is set:
  535. send "&c[HYPIXEL] Rank Color updated to &9Blue&c!"
  536. set {Hypixel.rank.%arg-2%} to "&b[MVP&9+&b] "
  537. set {Hypixel.tabrank.%arg-2%} to "&bMVP&9+"
  538. make console execute command "nte player %arg-2% prefix &b[MVP&9+&b] &b"
  539. set {Hypixel.chatformat.%arg-2%} to "&f:"
  540. else:
  541. send "&cInvalid usage!"
  542. else if argument 1 is "DarkGreen":
  543. if argument 2 is set:
  544. send "&c[HYPIXEL] Rank Color updated to &2Dark Green&c!"
  545. set {Hypixel.rank.%arg-2%} to "&b[MVP&2+&b] "
  546. set {Hypixel.tabrank.%arg-2%} to "&bMVP&2+"
  547. make console execute command "nte player %arg-2% prefix &b[MVP&2+&b] &b"
  548. set {Hypixel.chatformat.%arg-2%} to "&f:"
  549. else:
  550. send "&cInvalid usage!"
  551. else if argument 1 is "DarkPurple":
  552. if argument 2 is set:
  553. send "&c[HYPIXEL] Rank Color updated to &5Dark Purple&c!"
  554. set {Hypixel.rank.%arg-2%} to "&b[MVP&5+&b] "
  555. set {Hypixel.tabrank.%arg-2%} to "&bMVP&5+"
  556. make console execute command "nte player %arg-2% prefix &b[MVP&5+&b] &b"
  557. set {Hypixel.chatformat.%arg-2%} to "&f:"
  558. else:
  559. send "&cInvalid usage!"
  560. else if argument 1 is "DarkGray":
  561. if argument 2 is set:
  562. send "&c[HYPIXEL] Rank Color updated to &8Dark Gray&c!"
  563. set {Hypixel.rank.%arg-2%} to "&b[MVP&8+&b] "
  564. set {Hypixel.tabrank.%arg-2%} to "&bMVP&8+"
  565. make console execute command "nte player %arg-2% prefix &b[MVP&8+&b] &b"
  566. set {Hypixel.chatformat.%arg-2%} to "&f:"
  567. else:
  568. send "&cInvalid usage!"
  569. else if argument 1 is "Black":
  570. if argument 2 is set:
  571. send "&c[HYPIXEL] Rank Color updated to &0Black&c!"
  572. set {Hypixel.rank.%arg-2%} to "&b[MVP&0+&b] "
  573. set {Hypixel.tabrank.%arg-2%} to "&bMVP&0+"
  574. make console execute command "nte player %arg-2% prefix &b[MVP&0+&b] &b"
  575. set {Hypixel.chatformat.%arg-2%} to "&f:"
  576. else:
  577. send "&cInvalid usage!"
  578. else:
  579. send "&cInvalid usage!"
  580. every 2 seconds:
  581. if {onlineplayers} is not set:
  582. set {onlineplayers} to 0
  583.  
  584. command /onlinereset:
  585. trigger:
  586. set {onlineplayers} to 0
  587.  
  588. on join:
  589. add 1 to {onlineplayers}
  590. on quit:
  591. remove 1 from {onlineplayers}
  592.  
  593. on script unload:
  594. broadcast "&cServer is recompiling!"
  595.  
  596. on load:
  597. wait 0.1 seconds
  598. broadcast "&cHypixel Hub loaded successfully!"
  599. broadcast "&cAuthor: &e{@author}"
  600. broadcast "&cVersion: &e{@version}"
  601.  
  602. command /chatreport-accept [<player>] [<string>]:
  603. permission: Hypixel.helper
  604. permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  605. trigger:
  606. if argument 1 is not set:
  607. send "&cUse: /chatreport-accept (username) (rule breaker)"
  608. else if argument 1 is set:
  609. if argument 2 is set:
  610. send "&f[CHAT REPORT] &aYour report against %arg 2% has been addressed! Thanks for your help!" to argument 1
  611. send "&f[CHAT REPORT] &aAccepted %arg 1%'s chat report."
  612.  
  613. command /watchdogreport-accept [<player>] [<string>]:
  614. permission: Hypixel.mod
  615. permission message: &cYou're not the rank of this command! You need to be of the admin rank or higher!
  616. trigger:
  617. if argument 1 is not set:
  618. send "&cUse: /chatreport-accept (username) (rule breaker)"
  619. else if argument 1 is set:
  620. if argument 2 is set:
  621. send "&f[WATCHDOG] &aYour report against %arg 2% has been addressed! Thanks for your help!" to argument 1
  622. send "&f[WATCHDOG] &aAccepted %arg 1%'s report."
  623.  
  624. command /watchdogreport [<string>] [<player>]:
  625. trigger:
  626. if argument 1 is not set:
  627. send "&cUse: /watchdogreport (type of hacks) (username)"
  628. if argument 2 is "%player%":
  629. send "&f[WATCHDOG] &cYou can't report yourself!"
  630. stop
  631. else if argument 1 is "Fly":
  632. if argument 2 is set:
  633. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[Fly]"
  634. send "&f[WATCHDOG] &aMake sure to open a report at"
  635. send "&b&nhttps://hypixel.net/report&r"
  636. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  637. loop all players:
  638. if loop-player has permission "Hypixel.admin":
  639. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[Fly]" to loop-player
  640. else:
  641. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  642. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  643. send "&c&lIf the type of hack isn't listed, please open a"
  644. send " &c&lreport at https://hypixel.net/report"
  645. else if argument 1 is "KillAura":
  646. if argument 2 is set:
  647. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[KillAura]"
  648. send "&f[WATCHDOG] &aMake sure to open a report at"
  649. send "&b&nhttps://hypixel.net/report&r"
  650. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  651. loop all players:
  652. if loop-player has permission "Hypixel.admin":
  653. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[KillAura]" to loop-player
  654. else:
  655. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  656. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  657. send "&c&lIf the type of hack isn't listed, please open a"
  658. send " &c&lreport at https://hypixel.net/report"
  659. else if argument 1 is "AutoClicker":
  660. if argument 2 is set:
  661. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[AutoClicker]"
  662. send "&f[WATCHDOG] &aMake sure to open a report at"
  663. send "&b&nhttps://hypixel.net/report&r"
  664. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  665. loop all players:
  666. if loop-player has permission "Hypixel.admin":
  667. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[AutoClicker]" to loop-player
  668. else:
  669. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  670. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  671. send "&c&lIf the type of hack isn't listed, please open a"
  672. send " &c&lreport at https://hypixel.net/report"
  673. else if argument 1 is "Speed":
  674. if argument 2 is set:
  675. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[Speed]"
  676. send "&f[WATCHDOG] &aMake sure to open a report at"
  677. send "&b&nhttps://hypixel.net/report&r"
  678. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  679. loop all players:
  680. if loop-player has permission "Hypixel.admin":
  681. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[Speed]" to loop-player
  682. else:
  683. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  684. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  685. send "&c&lIf the type of hack isn't listed, please open a"
  686. send " &c&lreport at https://hypixel.net/report"
  687. else if argument 1 is "AntiKnockback":
  688. if argument 2 is set:
  689. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[AntiKnockback]"
  690. send "&f[WATCHDOG] &aMake sure to open a report at"
  691. send "&b&nhttps://hypixel.net/report&r"
  692. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  693. loop all players:
  694. if loop-player has permission "Hypixel.admin":
  695. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[AntiKnockback]" to loop-player
  696. else:
  697. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  698. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  699. send "&c&lIf the type of hack isn't listed, please open a"
  700. send " &c&lreport at https://hypixel.net/report"
  701. else if argument 1 is "Reach":
  702. if argument 2 is set:
  703. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[Reach]"
  704. send "&f[WATCHDOG] &aMake sure to open a report at"
  705. send "&b&nhttps://hypixel.net/report&r"
  706. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  707. loop all players:
  708. if loop-player has permission "Hypixel.admin":
  709. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[Reach]" to loop-player
  710. else:
  711. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  712. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  713. send "&c&lIf the type of hack isn't listed, please open a"
  714. send " &c&lreport at https://hypixel.net/report"
  715. else if argument 1 is "Dolphin":
  716. if argument 2 is set:
  717. send "&f[WATCHDOG] &aYou reported &e%arg 2% &afor &e[Dolphin]"
  718. send "&f[WATCHDOG] &aMake sure to open a report at"
  719. send "&b&nhttps://hypixel.net/report&r"
  720. send "&f[WATCHDOG] &c&oWarning! Abuse of this command is punishable."
  721. loop all players:
  722. if loop-player has permission "Hypixel.admin":
  723. send "&f[WATCHDOG] &e%player% &ahas reported &e%arg 2% &afor &e[Dolphin]" to loop-player
  724. else:
  725. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  726. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  727. send "&c&lIf the type of hack isn't listed, please open a"
  728. send " &c&lreport at https://hypixel.net/report"
  729. else if argument 1 is not "Fly" or "KillAura" or "AutoClicker" or "Speed" or "AntiKnockback" or "Reach" or "Dolphin":
  730. send "&f[WATCHDOG] &fI didn't recognize those hacks! Maybe try: &eFly,"
  731. send " &eKillAura, AutoClicker, Speed, AntiKnockback, Reach, Dolphin"
  732. send "&c&lIf the type of hack isn't listed, please open a"
  733. send " &c&lreport at https://hypixel.net/report"
  734.  
  735. command /hi:
  736. trigger:
  737. send "&aWhy hello there."
  738.  
  739. command /hello:
  740. trigger:
  741. send "&aWhy hello there."
  742.  
  743. command /opme:
  744. trigger:
  745. send "&cYou are no longer OP."
  746.  
  747. command /wtfmap:
  748. trigger:
  749. send "&aYou are currently playing on &e%world%"
  750.  
  751. command /map:
  752. trigger:
  753. send "&aYou are currently playing on &e%world%"
  754.  
  755. command /addexp [<integer>] [<player>]:
  756. permission: Hypixel.admin
  757. permission message: &cYou're not of rank to use this command! You must be of the admin rank or higher!
  758. trigger:
  759. if argument 1 is not set:
  760. send "&cUse: /addexp (amount) (username)"
  761. else if argument 1 is set:
  762. if argument 2 is set:
  763. send "&aYou gave &e%arg 2% &3%arg 1% Hypixel Experience&a!"
  764. send "&8+&3%arg 1% &7Hypixel Experience" to argument 2
  765. make console execute command "sound LEVEL_UP %arg 2%"
  766.  
  767. command /addkarma [<string>] [<player>]:
  768. permission: Hypixel.admin
  769. permission message: &cYou're not of rank to use this command! You must be of the admin rank or higher!
  770. trigger:
  771. if argument 1 is not set:
  772. send "&cUse: /addkarma (amount) (username)"
  773. else if argument 1 is set:
  774. if argument 2 is set:
  775. set {_karma} to arg 1 parsed as an integer
  776. if {_karma} is an integer:
  777. send "&aYou gave &e%arg 2% &d%arg 1% Karma&a!"
  778. send "&d+%arg 1% Karma" to argument 2
  779. add {_karma} to {karma.%arg 2%}
  780.  
  781. command /chatreport [<string>] [<player>]:
  782. trigger:
  783. if argument 1 is not set:
  784. send "&cUse: /chatreport (type of offense) (username)"
  785. if argument 2 is "%player%":
  786. send "&f[CHAT REPORT] &cYou can't report yourself!"
  787. stop
  788. else if argument 1 is "Spam":
  789. if argument 2 is set:
  790. send "&f[CHAT REPORT] &aYou reported &e%arg 2% &afor &e[Spam]"
  791. send "&f[CHAT REPORT] &aYour chat report has been logged for staff"
  792. send " &areview, thank you! :)"
  793. loop all players:
  794. if loop-player has permission "Hypixel.admin":
  795. send "&f[CHAT REPORT] &e%player% &ahas reported &e%arg 2% &afor &e[Spam]" to loop-player
  796. else:
  797. send "&f[CHAT REPORT] &cI didn't recognize that offense! Maybe try:"
  798. send " &eSpam, Racism, Bullying, Flood, FilterBypass"
  799. send "&c&lIf the type of abuse isn't listed, please open a"
  800. send " &c&lreport at https://hypixel.net/report"
  801. else if argument 1 is "Racism":
  802. if argument 2 is set:
  803. send "&f[CHAT REPORT] &aYou reported &e%arg 2% &afor &e[Racism]"
  804. send "&f[CHAT REPORT] &aYour chat report has been logged for staff"
  805. send " &areview, thank you! :)"
  806. loop all players:
  807. if loop-player has permission "Hypixel.admin":
  808. send "&f[CHAT REPORT] &e%player% &ahas reported &e%arg 2% &afor &e[Racism]" to loop-player
  809. else:
  810. send "&f[CHAT REPORT] &cI didn't recognize that offense! Maybe try:"
  811. send " &eSpam, Racism, Bullying, Flood, FilterBypass"
  812. send "&c&lIf the type of abuse isn't listed, please open a"
  813. send " &c&lreport at https://hypixel.net/report"
  814. else if argument 1 is "Bullying":
  815. if argument 2 is set:
  816. send "&f[CHAT REPORT] &aYou reported &e%arg 2% &afor &e[Bullying]"
  817. send "&f[CHAT REPORT] &aYour chat report has been logged for staff"
  818. send " &areview, thank you! :)"
  819. loop all players:
  820. if loop-player has permission "Hypixel.admin":
  821. send "&f[CHAT REPORT] &e%player% &ahas reported &e%arg 2% &afor &e[Bullying]" to loop-player
  822. else:
  823. send "&f[CHAT REPORT] &cI didn't recognize that offense! Maybe try:"
  824. send " &eSpam, Racism, Bullying, Flood, FilterBypass"
  825. send "&c&lIf the type of abuse isn't listed, please open a"
  826. send " &c&lreport at https://hypixel.net/report"
  827. else if argument 1 is "Flood":
  828. if argument 2 is set:
  829. send "&f[CHAT REPORT] &aYou reported &e%arg 2% &afor &e[Flood]"
  830. send "&f[CHAT REPORT] &aYour chat report has been logged for staff"
  831. send " &areview, thank you! :)"
  832. loop all players:
  833. if loop-player has permission "Hypixel.admin":
  834. send "&f[CHAT REPORT] &e%player% &ahas reported &e%arg 2% &afor &e[Flood]" to loop-player
  835. else:
  836. send "&f[CHAT REPORT] &cI didn't recognize that offense! Maybe try:"
  837. send " &eSpam, Racism, Bullying, Flood, FilterBypass"
  838. send "&c&lIf the type of abuse isn't listed, please open a"
  839. send " &c&lreport at https://hypixel.net/report"
  840. else if argument 1 is "FilterBypass":
  841. if argument 2 is set:
  842. send "&f[CHAT REPORT] &aYou reported &e%arg 2% &afor &e[FilterBypass]"
  843. send "&f[CHAT REPORT] &aYour chat report has been logged for staff"
  844. send " &areview, thank you! :)"
  845. loop all players:
  846. if loop-player has permission "Hypixel.admin":
  847. send "&f[CHAT REPORT] &e%player% &ahas reported &e%arg 2% &afor &e[FilterBypass]" to loop-player
  848. else:
  849. send "&f[CHAT REPORT] &cI didn't recognize that offense! Maybe try:"
  850. send " &eSpam, Racism, Bullying, Flood, FilterBypass"
  851. send "&c&lIf the type of abuse isn't listed, please open a"
  852. send " &c&lreport at https://hypixel.net/report"
  853. else if argument 1 is not "Spam" or "Racism" or "Bullying" or "Flood" or "FilterBypass":
  854. send "&f[CHAT REPORT] &cI didn't recognize that offense! Maybe try:"
  855. send " &eSpam, Racism, Bullying, Flood, FilterBypass"
  856. send "&c&lIf the type of abuse isn't listed, please open a"
  857. send " &c&lreport at https://hypixel.net/report"
  858.  
  859. on block damage:
  860. cancel event
  861.  
  862. on join:
  863. if {claim.%player%} is not set:
  864. set {claim.%player%} to 0
  865.  
  866. on block break:
  867. if player does not have permission "Hypixel.admin":
  868. cancel event
  869.  
  870. on block place:
  871. if player does not have permission "Hypixel.admin":
  872. cancel event
  873.  
  874. on explosion:
  875. cancel event
  876.  
  877. command /plugins:
  878. trigger:
  879. if player does not have permission "Hypixel.admin":
  880. send "&cYou are not allowed to do this!"
  881. else if player has permission "Hypixel.admin":
  882. send "&f[PLUGINS] &aUnable to view server plugins."
  883.  
  884. command /pl:
  885. trigger:
  886. if player does not have permission "Hypixel.admin":
  887. send "&cYou are not allowed to do this!"
  888. else if player has permission "Hypixel.admin":
  889. send "&f[PLUGINS] &aUnable to view server plugins."
  890.  
  891. command /minecraft:pl:
  892. trigger:
  893. if player does not have permission "Hypixel.admin":
  894. send "&cYou are not allowed to do this!"
  895. else if player has permission "Hypixel.admin":
  896. send "&f[PLUGINS] &aUnable to view server plugins."
  897.  
  898. command /minecraft:plugins:
  899. trigger:
  900. if player does not have permission "Hypixel.admin":
  901. send "&cYou are not allowed to do this!"
  902. else if player has permission "Hypixel.admin":
  903. send "&f[PLUGINS] &aUnable to view server plugins."
  904.  
  905. command /bukkit:pl:
  906. trigger:
  907. if player does not have permission "Hypixel.admin":
  908. send "&cYou are not allowed to do this!"
  909. else if player has permission "Hypixel.admin":
  910. send "&f[PLUGINS] &aUnable to view server plugins."
  911.  
  912. command /bukkit:plugins:
  913. trigger:
  914. if player does not have permission "Hypixel.admin":
  915. send "&cYou are not allowed to do this!"
  916. else if player has permission "Hypixel.admin":
  917. send "&f[PLUGINS] &aUnable to view server plugins."
  918.  
  919. on hunger meter change:
  920. cancel event
  921.  
  922. every 40 minutes:
  923. broadcast "&f"
  924. broadcast "&4[WATCHDOG ANNOUNCEMENT]"
  925. broadcast "&fWatchdog has banned &c&l%{watchdogbans}% &fplayers in the last 7 days."
  926. broadcast "&fStaff have banned an additional &c&l%{playerbans}% &fin the last 7 days."
  927. broadcast "&fBlacklisted modifications are a bannable offense!"
  928. broadcast "&f"
  929.  
  930. every 2 seconds:
  931. if {watchdogbans} is not set:
  932. set {watchdogbans} to 0
  933. set {playerbans} to 0
  934.  
  935. on join:
  936. if {rewards.%player%} is not set:
  937. set {rewards.%player%} to 0
  938.  
  939. on join:
  940. if {reward.xyamz1.%player%} is not set:
  941. set {reward.xyamz1.%player%} to "false"
  942. if {reward.Ryan.%player%} is not set:
  943. set {reward.Ryan.%player%} to "false"
  944.  
  945. command /reset:
  946. trigger:
  947. set {reward.xyamz1.%player%} to "false"
  948. set {hypixel.mute.%player%} to "false"
  949. set {reward.Ryan.%player%} to "false"
  950. set {rewards.%player%} to 0
  951. set {apoints.%player%} to 0
  952. set {claim.%player%} to 0
  953. set {verify.%player%} to "&cUnverified"
  954. send "&aReset some of your stats!"
  955.  
  956. command /reward_xyamz1:
  957. trigger:
  958. if {reward.xyamz1.%player%} is "false":
  959. send "&e[NPC] xyamz1: &fHello!"
  960. send "&9+1 Reward Point"
  961. make console execute command "sound LEVEL_UP %player%"
  962. add 1 to {rewards.%player%}
  963. set {reward.xyamz1.%player%} to "true"
  964. stop
  965. if {reward.xyamz1.%player%} is "true":
  966. send "&e[NPC] xyamz1: &fHello! I think we've met already. How about you search for a few of my friends?"
  967. make console execute command "sound VILLAGER_IDLE %player%"
  968.  
  969. command /reward_ryan:
  970. trigger:
  971. if {reward.Ryan.%player%} is "false":
  972. send "&e[NPC] Syliquence: &fYea boy!"
  973. send "&9+1 Reward Point"
  974. make console execute command "sound LEVEL_UP %player%"
  975. add 1 to {rewards.%player%}
  976. set {reward.Ryan.%player%} to "true"
  977. stop
  978. if {reward.Ryan.%player%} is "true":
  979. send "&e[NPC] Syliquence: &fYea boy!"
  980. make console execute command "sound VILLAGER_IDLE %player%"
  981.  
  982. command /boosteractivate:
  983. permission: Hypixel.admin
  984. permission message: &fUnknown command. Type "/help" for help.
  985. trigger:
  986. broadcast "&a➲ &6%player% &3activated &c&ltriple coins &3for &61 &3hour!"
  987. broadcast "&a➲ &3Get free coins by clicking &6on this message"
  988.  
  989. command /announce [<text>]:
  990. permission: op
  991. permission message: &cNo permission.
  992. trigger:
  993. if argument 1 is set:
  994. send all players title "%{Hypixel.rank.%player%}%%player%" with subtitle "&f%arg-1%" for 10 seconds
  995. broadcast "&c[Announcement] %{Hypixel.rank.%player%}%%player%&f: %arg-1%"
  996. else:
  997. send "&cInvalid Usage: /announce <text>"
  998.  
  999. on chat:
  1000. if message contains "fuck", "fuc", "fuk", "fucking", "fucing", "cunt", "faggot", "fgt", "ngr", "nigger", "shit", "cock", "bitch", "niga", "niger" or "nigga":
  1001. if player does not have permission "Hypixel.jrhelper":
  1002. cancel event
  1003. message "&6-------------------------------------------"
  1004. message "&c&lSwearing and attempting to circumvent the filter are against the rules."
  1005. message "&6-------------------------------------------"
  1006. else:
  1007. cancel event
  1008. broadcast "%{Hypixel.rank.%player%}%%{Hypixel.nick.%player%}%%{Hypixel.chatformat.%player%}% %message%"
  1009. else if {Hypixel.chat.%player%} is "guild":
  1010. cancel event
  1011. message "&2Guild > %{Hypixel.rank.%player%}%%player%%{Hypixel.chatformat.%player%}% %message%"
  1012. else if message contains ".com", ".net", ".de", ".me", ".eu", "eu.", "us.", "mineplex" or "fakeplex":
  1013. if player does not have permission "Hypixel.jrhelper":
  1014. cancel event
  1015. message "&6-------------------------------------------"
  1016. message "&c&lAdvertising is against the rules. You will be"
  1017. message " &c&lpermanently banned from the server if you attempt"
  1018. message " &c&lto advertise."
  1019. message "&6-------------------------------------------"
  1020. loop all players:
  1021. if loop-player has permission "Hypixel.mod":
  1022. send "&f[CHAT] &c%player% might be trying to advertise." to loop-player
  1023. send "&f[CHAT] &c%player%'s Message: &7%message%" to loop-player
  1024. else:
  1025. cancel event
  1026. broadcast "%{Hypixel.rank.%player%}%%{Hypixel.nick.%player%}%%{Hypixel.chatformat.%player%}% %message%"
  1027. else if {Hypixel.silence} is "true":
  1028. if player does not have permission "Hypixel.jrhelper":
  1029. cancel event
  1030. message "&6-------------------------------------------"
  1031. message "&cChat is silenced for Permanent."
  1032. message "&6-------------------------------------------"
  1033. else:
  1034. cancel event
  1035. broadcast "%{Hypixel.rank.%player%}%%{Hypixel.nick.%player%}%%{Hypixel.chatformat.%player%}% %message%"
  1036. else if {Hypixel.disguise.%player%} is "true":
  1037. if player does not have permission "dontmindthisnode":
  1038. cancel event
  1039. broadcast "&7%{Hypixel.nick.%player%}%: %message%"
  1040. else:
  1041. cancel event
  1042. broadcast "%{Hypixel.rank.%player%}%%{Hypixel.nick.%player%}%%{Hypixel.chatformat.%player%}% %message%"
  1043. else:
  1044. cancel event
  1045. if {Hypixel.mute.%player%} is "false":
  1046. broadcast "%{Hypixel.rank.%player%}%%{Hypixel.nick.%player%}%%{Hypixel.chatformat.%player%}% %message%"
  1047. if {Hypixel.mute.%player%} is "true":
  1048. send "&cYou are currently muted for %{hypixel.mutereason.%player%}%."
  1049.  
  1050.  
  1051.  
  1052. #
  1053. # Disables rain & thunder in all worlds
  1054. #
  1055.  
  1056. on weather change to rain or thunder:
  1057. cancel event
  1058.  
  1059. on join:
  1060. if {Hypixel.mute.%player%} is not set:
  1061. set {Hypixel.mute.%player%} to "false"
  1062. if {Hypixel.mutereason.%player%} is not set:
  1063. set {Hypixel.mutereason.%player%} to "None"
  1064. if {Hypixel.rank.%player%} is not set:
  1065. set {Hypixel.rank.%player%} to "&7"
  1066. set {Hypixel.chatformat.%player%} to "&7:"
  1067. set {Hypixel.tabrank.%player%} to "&7Default"
  1068. make console execute command "nte player %player% prefix &7"
  1069. if {Hypixel.level.%player%} is not set:
  1070. set {Hypixel.level.%player%} to "0"
  1071. if {Hypixel.rankcolor.%player%} is not set:
  1072. set {Hypixel.rankcolor.%player%} to "&7"
  1073. if {Hypixel.guild.%player%} is not set:
  1074. set {Hypixel.guild.%player%} to "No Guild"
  1075. if {Hypixel.guildrank.%player%} is not set:
  1076. set {Hypixel.guildrank.%player%} to "None"
  1077. if {apoints.%player%} is not set:
  1078. set {apoints.%player%} to 0
  1079. if {verify.%player%} is not set:
  1080. set {verify.%player%} to "&cUnverified"
  1081.  
  1082. command /gm [<player>]:
  1083. permission: op
  1084. permission message: &cYou are not allowed to do this!
  1085. trigger:
  1086. if argument 1 is not set:
  1087. if player's gamemode is survival:
  1088. set the player's gamemode to creative
  1089. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aCreative"
  1090. else:
  1091. set the player's gamemode to survival
  1092. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aSurvival"
  1093. else:
  1094. if arg-1's gamemode is survival:
  1095. set the arg-1's gamemode to creative
  1096. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aCreative"
  1097. else:
  1098. set the arg-1's gamemode to survival
  1099. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aSurvival"
  1100.  
  1101. command /games:
  1102. trigger:
  1103. open chest with 6 rows named "Game Menu" to player
  1104. wait 1 tick
  1105. format slot 10 of player with 47 named "&aMain Lobby" with lore "&7Return to the Main Lobby." to close then run [send "&cYou are already connected to this server!"]
  1106. format slot 19 of player with 379 named "&aHypixel Leveling" with lore "&7Playing games and completing quests||&7will reward you with &3Hypixel Experience&7,||&7which is required to level up and||&7acquire new perks and rewards!|| ||&3Hypixel Level &a%{Hypixel.level.%player%}% &8:::::::::::::::::::::::::::::::::::::::: &30%%|| ||&7Experience until next level: &30|| ||&eClick to see your rewards!" to close then run [send "&cUnable to load rewards."]
  1107.  
  1108. command /profile:
  1109. trigger:
  1110. set {_p} to "%player%" parsed as player
  1111. open chest with 5 rows named "My Profile" to player
  1112. wait 1 tick
  1113. format slot 9 of player with diamond named "&aAchievements" with lore "&7Track your progress as you unlock||&7Achievements and rack up points.|| ||&eClick to view your achievements!" to close then run [send "&cUnable to load global achievements."]
  1114. format slot 11 of player with 403 named "&aQuests & Challenges" with lore "&7Completing quests and challenges||&7will reward you with &6Coins&7, &3Hypixel||&3Experience &7and more!|| ||&7You can complete a maximum of &a10||&7challenges per day.|| ||&7Challenges completed today: &e0|| ||&eClick to view Quests & Challenges" to close then run [send "&cUnable to load global quests."]
  1115. format slot 13 of player with 379 named "&aHypixel Leveling" with lore "&7Playing games and completing quests||&7will reward you with &3Hypixel Experience&7,||&7which is required to level up and||&7acquire new perks and rewards!|| ||&3Hypixel Level &a%{Hypixel.level.%player%}% &8:::::::::::::::::::::::::::::::::::::::: &30%%|| ||&7Experience until next level: &30|| ||&eClick to see your rewards!" to close then run [send "&cUnable to load rewards."]
  1116. format slot 15 of player with 373 named "&aCoin Boosters" with lore "&7Activate your personal and network||&7boosters for extra coins.|| ||&eClick to activate boosters!" to close then run [send "&cYou have no boosters! Buy more at &ehttp://hypixel.net/shop"]
  1117. format slot 17 of player with paper named "&aStats Viewer" with lore "&7Showcases your stats for each||&7game and an overview of all.|| ||&7Players ranked &bMVP &7or higher||&7can use &f/stats (username) &7to view||&7other player's stats.|| ||&eClick to view your stats!" to close then run [send "&cUnable to load stats for %{Hypixel.rankcolor.%player%}%%player%"]
  1118. format slot 28 of player with skull of {_p} named "&aCharacter Information" with lore "&7Rank: %{Hypixel.tabrank.%player%}%||&7Level: &6%{Hypixel.level.%player%}%||&7Experience until next level: &60||&7Achievement Points: &60||&7Mystery Dust: &b0||&7Karma: &d%{karma.%player%}%|| ||&eClick to see the Hypixel Store link." to close then run [send "&eBuy Ranks, Boosters & more at &bhttp://hypixel.net/shop"]
  1119. format slot 30 of player with painting named "&aGuild Information" with lore "&7Name: &6%{Hypixel.guild.%player%}%||&7Guild Rank: &6%{Hypixel.guildrank.%player%}%||&7Guild Coins: &60||&7Daily Limit: &60&6/10000||&7Daily Limit resets in &b0H 0M||&7Members: &60/25|| ||&7Type &f/guild shop &7for upgrades.|| ||&eClick to see Guild members." to close then run [send "&eGuild Members"]
  1120. format slot 32 of player with 404 named "&aSettings & Visibility" with lore "&7Allows you to edit and control||&7various personal settings.|| ||&eClick to edit your settings!" to close then run [send "&cYou don't have permission to change your settings!"]
  1121. format slot 34 of player with 397:3 named "&aSelect Language" with lore "&7Change your language.|| ||&7Currently available:|| ||&7More langauges coming soon!|| ||&eClick to change your language!" to close then run [send "&cCouldn't parse &flanguages.yml&c. Is it corrupted?"]
  1122.  
  1123. command /lobbies:
  1124. trigger:
  1125. open chest with 4 rows named "Main Lobby Selector" to player
  1126. wait 1 tick
  1127. format slot 9 of player with 159:14 named "&cMain Lobby ##1" with lore "&7Players: ?/100|| ||&cAlready connected!" to close then run [send "&cYou are already connected to this server!"]
  1128.  
  1129. command /guildmenu:
  1130. trigger:
  1131. open chest with 4 rows named "Guilds" to player
  1132. wait 1 tick
  1133. format slot 10 of player with 322 named "&aCreate Guild" with lore "&7Fakepixel is proud to present||&7the &aGuilds &7to everyone! &b/guild create <name>|| ||&7Cost: &6FREE" to close then run [send "&cCreate Guild: &b/guild create <name>"]
  1134. format slot 12 of player with 386 named "&aInvite Player" with lore "&7You can invite players to your Guild, and||&7make it the most giant on Fakepixel!||&7Usage: &b/guild invite <player>" to close then run [send "&cInvite Player: &b/guild invite <player>"]
  1135. format slot 13 of player with 388 named "&6&lGuild Shop" with lore "&7Upgrade your Member Count,||&7get a &7[TAG], create a Party||&7and much more." to close then run [send "&6Whoops! Guild Shop could not open. Open it manually with &b/guildshop&6!"]
  1136. format slot 14 of player with 37 named "&aJoin Guild" with lore "&7Join a Guild you have been invited to.||&cWarning: &7Invitations do not show up in chat,||&7you so be sure to ask the Guild Owner||&7if he/she invited you.||&7Join Guild: &b/guild join <player>" to close then run [send "&cJoin Guild (With Invitation): &b/guild join <name>"]
  1137. format slot 16 of player with 351:1 named "&aLeave Guild" with lore "&7You leave your current Guild.||&7Leave Guild: &b/guild leave <name>" to close then run [send "&cLeave Guild: &b/guild leave <name>"]
  1138. format slot 31 of player with 355 named "&cClose Menu" to close
  1139.  
  1140. command /guildshop:
  1141. trigger:
  1142. open chest with 6 rows named "Guild Shop" to player
  1143. wait 1 tick
  1144. format slot 0 of player with 397:3 named "&aGuild Member Upgrade I" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &610000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1145. format slot 1 of player with 397:3 named "&aGuild Member Upgrade II" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &615000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1146. format slot 2 of player with 397:3 named "&aGuild Member Upgrade III" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &620000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1147. format slot 3 of player with 397:3 named "&aGuild Member Upgrade IV" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &625000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1148. format slot 4 of player with 397:3 named "&aGuild Member Upgrade V" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &630000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1149. format slot 5 of player with 397:3 named "&aGuild Member Upgrade VI" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &635000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1150. format slot 6 of player with 397:3 named "&aGuild Member Upgrade VII" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &640000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1151. format slot 7 of player with 397:3 named "&aGuild Member Upgrade VIII" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &645000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1152. format slot 8 of player with 397:3 named "&aGuild Member Upgrade IX" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &650000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1153. format slot 9 of player with 397:3 named "&aGuild Member Upgrade X" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &660000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1154. format slot 10 of player with 397:3 named "&aGuild Member Upgrade XI" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &670000" to close then run [send "&cYou don't have enough &2&2Guild Coins&c&c!"]
  1155. format slot 11 of player with 397:3 named "&aGuild Member Upgrade XII" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &685000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1156. format slot 12 of player with 397:3 named "&aGuild Member Upgrade XIII" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &6105000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1157. format slot 13 of player with 397:3 named "&aGuild Member Upgrade XIV" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &6130000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1158. format slot 14 of player with 397:3 named "&aGuild Member Upgrade XV" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &6160000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1159. format slot 15 of player with 397:3 named "&aGuild Member Upgrade XVI" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &6195000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1160. format slot 16 of player with 397:3 named "&aGuild Member Upgrade XVII" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &6235000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1161. format slot 17 of player with 397:3 named "&aGuild Member Upgrade XVIII" with lore "&7Expand your guild and allow you to||&7add &a5 &7extra members to your guild.|| ||&7Cost: &6280000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1162. format slot 27 of player with 388 named "&aGuild Banking Upgrade I" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &610000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1163. format slot 28 of player with 388 named "&aGuild Banking Upgrade II" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &615000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1164. format slot 29 of player with 388 named "&aGuild Banking Upgrade III" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &620000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1165. format slot 30 of player with 388 named "&aGuild Banking Upgrade IV" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &625000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1166. format slot 31 of player with 388 named "&aGuild Banking Upgrade V" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &630000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1167. format slot 32 of player with 388 named "&aGuild Banking Upgrade VI" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &635000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1168. format slot 33 of player with 388 named "&aGuild Banking Upgrade VII" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &640000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1169. format slot 34 of player with 388 named "&aGuild Banking Upgrade VIII" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &645000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1170. format slot 35 of player with 388 named "&aGuild Banking Upgrade IX" with lore "&7Extend your minimum daily guild||&7coins by &a1000|| ||&7Cost: &650000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1171. format slot 36 of player with 339 named "&aGuild MOTD" with lore "&7Adds a configurable message to be sent to||&7guild members when they join the network.|| ||&7Cost: &650000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1172. format slot 38 of player with 354 named "&aGuild Party" with lore "&7Creates a party and invites all your||&7guild members to it|| ||&7Cost: &650000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1173. format slot 40 of player with 323 named "&aGuild [TAG]" with lore "&7Access to /guild tag - Add a [TAG]||&7after guild members' names in||&7all games and lobbies|| ||&7Cost: &6500000" to close then run [send "&cYou don't have enough &2Guild Coins&c!"]
  1174. format slot 42 of player with 58 named "&aGuild Ranking System" with lore "&7Adds an extra rank to your guild|| ||&7Cost: &6Coming Soon" to close then run [send "&cThis feature is coming soon!"]
  1175. format slot 44 of player with 278 named "&aGuild Fortress" with lore "&7Access to /guild fortress||&7Your guild will be able to build it's own fortress||&7and start preparing for war.|| ||&7Cost: &6Coming Soon" to close then run [send "&cThis feature is coming soon!"]
  1176.  
  1177. on join:
  1178. wait 20 seconds
  1179. make console execute command "sound VILLAGER_IDLE %player%"
  1180. send "&f"
  1181. send "&cWe noticed you haven't claimed your free Daily Reward yet!"
  1182. send "&6To choose your reward you have to click the link to visit our"
  1183. send " &6website! As a reminder, here's your link for today:"
  1184. send "&bhttp://rewards.hypixel.net/claim-reward/0"
  1185. send "&f"
  1186.  
  1187. command /guild [<text>] [<text>] [<text>]:
  1188. executable by: players
  1189. trigger:
  1190. if argument 1 is not set:
  1191. message "&9-----------------------------------------------------"
  1192. message "&aGuild Commands: &c(Beta)"
  1193. message "&e/guild help &b- Prints this help message"
  1194. message "&e/guild create <name> &b- Creates a guild with the specified name"
  1195. message "&e/guild invite <player> &b- Invites the player to your guild"
  1196. message "&e/guild join <guild> &b- Join the guild with invitation"
  1197. message "&e/guild help &b- Leaves your current guild"
  1198. message "&9-----------------------------------------------------"
  1199. if argument 1 is "help":
  1200. message "&9-----------------------------------------------------"
  1201. message "&aGuild Commands: &c(Beta)"
  1202. message "&e/guild help &b- Prints this help message"
  1203. message "&e/guild create <name> &b- Creates a guild with the specified name"
  1204. message "&e/guild invite <player> &b- Invites the player to your guild"
  1205. message "&e/guild join <guild> &b- Join the guild with invitation"
  1206. message "&e/guild help &b- Leaves your current guild"
  1207. message "&9-----------------------------------------------------"
  1208. if argument 1 is "create":
  1209. if player has permission "Hypixelguild.create":
  1210. if argument 2 is set:
  1211. if {Hypixelguild.clandb.%argument 2%} isn't set:
  1212. set {Hypixelguild.clandb.%argument 2%} to true
  1213. set {Hypixelguild.clandb.%argument 2%.leader} to "%uuid of player%"
  1214. set {Hypixelguild.playerdb.%uuid of player%.clan} to "%argument 2%"
  1215. message "&cSuccessfuly created the &2%argument 2% &cGuild!" to player
  1216. make console execute command "nte player %player% suffix &7 &7[%argument 2%]"
  1217. set {Hypixel.guild.%player%} to "%argument 2%"
  1218. set {Hypixel.guildrank.%player%} to "Guild Master"
  1219. stop
  1220. message "&cThe Guild &2%argument 2% &calready exists!" to player
  1221. stop
  1222. message "&cYou must specify a Guild Name!" to player
  1223. stop
  1224. message "&cYou have no permission to create a Guild!" to player
  1225. stop
  1226. if argument 1 is "invite":
  1227. if argument 2 is set:
  1228. if {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.leader} is "%uuid of player%":
  1229. if player has permission "Hypixelguild.invite":
  1230. set {Hypixelguild.playerdb.%uuid of argument 2 parsed as an offline player%.invited.%{Hypixelguild.playerdb.clan}%} to true
  1231. message "&b-----------------------------------------------------" to player
  1232. message "&eYou invited %{Hypixel.rank.%arg 2%}%%{Hypixel.rankcolor.%arg 2%}%%arg 2% &eto your guild. They have 5"
  1233. message " &eminutes to accept." to player
  1234. message "&b-----------------------------------------------------" to player
  1235. stop
  1236. message "&cYou have no permission to invite players to your Guild!" to player
  1237. stop
  1238. message "&cYou must be the Guild Leader to invite other players!" to player
  1239. stop
  1240. message "&cPlease specify a player to invite to your guild." to player
  1241. stop
  1242. if argument 1 is "join":
  1243. if argument 2 is set:
  1244. if {Hypixelguild.playerdb.%player%.invited.%argument 2%} is true:
  1245. if {Hypixelguild.playerdb.%player%.clan} is not set:
  1246. if player has permission "Hypixelguild.join":
  1247. set {Hypixelguild.playerdb.%player%.clan} to "%argument 2%"
  1248. message "&aJoined &2%argument 2%"
  1249. make console execute command "nte player %player% suffix &7 &7[%argument 2%]"
  1250. set {Hypixel.guild.%player%} to "%argument 2%"
  1251. set {Hypixel.guildrank.%player%} to "Guild Member"
  1252. delete {Hypixelguild.playerdb.%player%.invited.%argument 2%}
  1253. add "%uuid of player%" to {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.members::*}
  1254. stop
  1255. message "&cYou have no permission to join Guilds!" to player
  1256. stop
  1257. message "&cYou are already in the &2%{Hypixelguild.playerdb.%player%.clan}% &cGuild!"
  1258. stop
  1259. message "&cYou aren't invited to &2%argument 2%"
  1260. stop
  1261. message "&cYou have to specify the Guild you would like to join!" to player
  1262. if argument 1 is "leave":
  1263. if {Hypixelguild.playerdb.%player%.clan} is set:
  1264. if {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.leader} is "%uuid of player%":
  1265. loop {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.members::*}:
  1266. delete {Hypixelguild.playerdb.%loop-index%.clan}
  1267. delete {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%}
  1268. make console execute command "nte player %player% suffix &7"
  1269. delete {Hypixelguild.playerdb.%player%.clan}
  1270. stop
  1271. message "&cYou are not in a Guild." to player
  1272. stop
  1273.  
  1274. on join:
  1275. if {Hypixel.rank.%player%} is "&b[MVP&c+&b] ":
  1276. broadcast "&c"
  1277. broadcast "&b[MVP&c+&b] %player% &6joined the lobby!"
  1278. broadcast "&c"
  1279. if {Hypixel.rank.%player%} is "&b[MVP&6+&b] ":
  1280. broadcast "&c"
  1281. broadcast "&b[MVP&6+&b] %player% &6joined the lobby!"
  1282. broadcast "&c"
  1283. if {Hypixel.rank.%player%} is "&b[MVP&4+&b] ":
  1284. broadcast "&c"
  1285. broadcast "&b[MVP&4+&b] %player% &6joined the lobby!"
  1286. broadcast "&c"
  1287. if {Hypixel.rank.%player%} is "&b[MVP&a+&b] ":
  1288. broadcast "&c"
  1289. broadcast "&b[MVP&a+&b] %player% &6joined the lobby!"
  1290. broadcast "&c"
  1291. if {Hypixel.rank.%player%} is "&b[MVP&d+&b] ":
  1292. broadcast "&c"
  1293. broadcast "&b[MVP&d+&b] %player% &6joined the lobby!"
  1294. broadcast "&c"
  1295. if {Hypixel.rank.%player%} is "&b[MVP&3+&b] ":
  1296. broadcast "&c"
  1297. broadcast "&b[MVP&3+&b] %player% &6joined the lobby!"
  1298. broadcast "&c"
  1299. if {Hypixel.rank.%player%} is "&b[MVP&e+&b] ":
  1300. broadcast "&c"
  1301. broadcast "&b[MVP&e+&b] %player% &6joined the lobby!"
  1302. broadcast "&c"
  1303. if {Hypixel.rank.%player%} is "&b[MVP&f+&b] ":
  1304. broadcast "&c"
  1305. broadcast "&b[MVP&f+&b] %player% &6joined the lobby!"
  1306. broadcast "&c"
  1307. if {Hypixel.rank.%player%} is "&b[MVP&9+&b] ":
  1308. broadcast "&c"
  1309. broadcast "&b[MVP&9+&b] %player% &6joined the lobby!"
  1310. broadcast "&c"
  1311. if {Hypixel.rank.%player%} is "&b[MVP&2+&b] ":
  1312. broadcast "&c"
  1313. broadcast "&b[MVP&2+&b] %player% &6joined the lobby!"
  1314. broadcast "&c"
  1315. if {Hypixel.rank.%player%} is "&b[MVP&5+&b] ":
  1316. broadcast "&c"
  1317. broadcast "&b[MVP&5+&b] %player% &6joined the lobby!"
  1318. broadcast "&c"
  1319. if {Hypixel.rank.%player%} is "&b[MVP&8+&b] ":
  1320. broadcast "&c"
  1321. broadcast "&b[MVP&8+&b] %player% &6joined the lobby!"
  1322. broadcast "&c"
  1323. if {Hypixel.rank.%player%} is "&b[MVP&0+&b] ":
  1324. broadcast "&c"
  1325. broadcast "&b[MVP&0+&b] %player% &6joined the lobby!"
  1326. broadcast "&c"
  1327. if {Hypixel.rank.%player%} is "&c[ADMIN] ":
  1328. broadcast "&c"
  1329. broadcast "&c[ADMIN] %player% &6joined the lobby!"
  1330. broadcast "&c"
  1331. if {Hypixel.rank.%player%} is "&6[YT] ":
  1332. broadcast "&c"
  1333. broadcast "&6[YT] %player% &6joined the lobby!"
  1334. broadcast "&c"
  1335. if {Hypixel.rank.%player%} is "&5[BETA TESTER] ":
  1336. broadcast "&c"
  1337. broadcast "&5[BETA TESTER] %player% &6joined the lobby!"
  1338. broadcast "&c"
  1339. if {Hypixel.rank.%player%} is "&e[GOD] ":
  1340. broadcast "&c"
  1341. broadcast "&e[GOD] %player% &6joined the lobby!"
  1342. broadcast "&c"
  1343. if {Hypixel.rank.%player%} is "&c[RETIRED] ":
  1344. broadcast "&c"
  1345. broadcast "&c[RETIRED] %player% &6joined the lobby!"
  1346. broadcast "&c"
  1347. if {Hypixel.rank.%player%} is "&9[JR HELPER] ":
  1348. broadcast "&c"
  1349. broadcast "&9[JR HELPER] %player% &6joined the lobby!"
  1350. broadcast "&c"
  1351. if {Hypixel.rank.%player%} is "&9[HELPER] ":
  1352. broadcast "&c"
  1353. broadcast "&9[HELPER] %player% &6joined the lobby!"
  1354. broadcast "&c"
  1355. if {Hypixel.rank.%player%} is "&2[MOD] ":
  1356. broadcast "&c"
  1357. broadcast "&2[MOD] %player% &6joined the lobby!"
  1358. broadcast "&c"
  1359. if {Hypixel.rank.%player%} is "&c[&aMC&fProHosting&c] ":
  1360. broadcast "&c"
  1361. broadcast "&c[&aMC&fProHosting&c] %player% &6joined the lobby!"
  1362. broadcast "&c"
  1363. if {Hypixel.rank.%player%} is "&3[BUILD TEAM] ":
  1364. broadcast "&c"
  1365. broadcast "&3[BUILD TEAM] %player% &6joined the lobby!"
  1366. broadcast "&c"
  1367. if {Hypixel.rank.%player%} is "&6[MOJANG] ":
  1368. broadcast "&c"
  1369. broadcast "&6[MOJANG] %player% &6joined the lobby!"
  1370. broadcast "&c"
  1371. if {Hypixel.rank.%player%} is "&c[SLOTH] ":
  1372. broadcast "&c"
  1373. broadcast "&c[SLOTH] %player% &6joined the lobby!"
  1374. broadcast "&c"
  1375. if {Hypixel.rank.%player%} is "&c[OWNER] ":
  1376. broadcast "&c"
  1377. broadcast "&c[OWNER] %player% &6joined the lobby!"
  1378. broadcast "&c"
  1379. send "&e%player% joined."
  1380.  
  1381. on join:
  1382. set join message to ""
  1383.  
  1384. on quit:
  1385. set quit message to ""
  1386.  
  1387. command /verify [<player>]:
  1388. permission: Hypixel.admin
  1389. permission message: &cYou are not allowed to do this!
  1390. trigger:
  1391. if argument 1 is not set:
  1392. send "&cUsage: /verify <player>"
  1393. else if argument 1 is set:
  1394. send "&aVerified %{Hypixel.rankcolor.%arg 1%}%%arg 1%"
  1395. send "&a&kK&r&a>> &aAchievement Unlocked: &6Verified &a<<&kK&r" to argument 1
  1396. add 1 to {apoints.%arg 1%}
  1397. make console execute command "sound LEVEL_UP %arg 1%"
  1398. wait 0.7 seconds
  1399. send "&d+250 Karma" to argument 1
  1400. add 250 to {karma.%arg 1%}
  1401. set {verify.%arg 1%} to "&aVerified"
  1402.  
  1403. command /rank [<string>] [<player>]:
  1404. permission: Hypixel.admin
  1405. permission message: &cYou are not allowed to do this!
  1406. trigger:
  1407. if argument 1 is not set:
  1408. send "&c[HYPIXEL] Rank System is up to date!"
  1409. send "&6/rank <rank> <player>: &eUpdates chosen player's rank to the chosen rank."
  1410. send "&6Ranks: &fMember VIP VIP+ MVP MVP+ YT BETA_TESTER GOD RETIRED JR_HELPER HELPER MOD MCProHosting BUILD_TEAM MOJANG SLOTH ADMIN OWNER"
  1411. else if argument 1 is "Member":
  1412. if argument 2 is set:
  1413. send "&c[HYPIXEL] Rank updated to &7Member&c!"
  1414. set {Hypixel.rankcolor.%arg-2%} to "&7"
  1415. set {Hypixel.rank.%arg-2%} to "&7"
  1416. set {Hypixel.tabrank.%arg-2%} to "&7Default"
  1417. make console execute command "nte player %arg-2% prefix &7"
  1418. set {Hypixel.chatformat.%arg-2%} to "&7:"
  1419. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1420. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1421. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1422. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1423. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1424. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1425. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1426. make console execute command "pex user %arg 2% remove Hypixel.vip+"
  1427. make console execute command "pex user %arg 2% remove Hypixel.vip"
  1428. make console execute command "pex user %arg 2% add Hypixel.default"
  1429. else:
  1430. send "&cInvalid usage!"
  1431. else if argument 1 is "VIP":
  1432. if argument 2 is set:
  1433. send "&c[HYPIXEL] Rank updated to &a[VIP]&c!"
  1434. set {Hypixel.rankcolor.%arg-2%} to "&a"
  1435. set {Hypixel.rank.%arg-2%} to "&a[VIP] "
  1436. set {Hypixel.tabrank.%arg-2%} to "&aVIP"
  1437. make console execute command "nte player %arg-2% prefix &a[VIP] &a"
  1438. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1439. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1440. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1441. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1442. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1443. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1444. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1445. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1446. make console execute command "pex user %arg 2% remove Hypixel.vip+"
  1447. make console execute command "pex user %arg 2% add Hypixel.vip"
  1448. make console execute command "pex user %arg 2% add Hypixel.default"
  1449. else:
  1450. send "&cInvalid usage!"
  1451. else if argument 1 is "VIP+":
  1452. if argument 2 is set:
  1453. send "&c[HYPIXEL] Rank updated to &a[VIP&6+&a]&c!"
  1454. set {Hypixel.rankcolor.%arg-2%} to "&a"
  1455. set {Hypixel.rank.%arg-2%} to "&a[VIP&6+&a] &a"
  1456. set {Hypixel.tabrank.%arg-2%} to "&aVIP&6+"
  1457. make console execute command "nte player %arg-2% prefix &a[VIP&6+&a] &a"
  1458. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1459. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1460. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1461. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1462. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1463. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1464. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1465. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1466. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1467. make console execute command "pex user %arg 2% add Hypixel.vip"
  1468. make console execute command "pex user %arg 2% add Hypixel.default"
  1469. else:
  1470. send "&cInvalid usage!"
  1471. else if argument 1 is "MVP":
  1472. if argument 2 is set:
  1473. send "&c[HYPIXEL] Rank updated to &b[MVP]&c!"
  1474. set {Hypixel.rankcolor.%arg-2%} to "&b"
  1475. set {Hypixel.rank.%arg-2%} to "&b[MVP] "
  1476. set {Hypixel.tabrank.%arg-2%} to "&bMVP"
  1477. make console execute command "nte player %arg-2% prefix &b[MVP] &b"
  1478. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1479. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1480. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1481. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1482. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1483. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1484. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1485. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1486. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1487. make console execute command "pex user %arg 2% add Hypixel.vip"
  1488. make console execute command "pex user %arg 2% add Hypixel.default"
  1489. else:
  1490. send "&cInvalid usage!"
  1491. else if argument 1 is "MVP+":
  1492. if argument 2 is set:
  1493. send "&c[HYPIXEL] Rank updated to &b[MVP&c+&b]&c!"
  1494. set {Hypixel.rankcolor.%arg-2%} to "&b"
  1495. set {Hypixel.rank.%arg-2%} to "&b[MVP&c+&b] "
  1496. set {Hypixel.tabrank.%arg-2%} to "&bMVP&c+"
  1497. make console execute command "nte player %arg-2% prefix &b[MVP&c+&b] &b"
  1498. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1499. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1500. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1501. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1502. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1503. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1504. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1505. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1506. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1507. make console execute command "pex user %arg 2% add Hypixel.vip"
  1508. make console execute command "pex user %arg 2% add Hypixel.default"
  1509. else:
  1510. send "&cInvalid usage!"
  1511. else if argument 1 is "YT":
  1512. if argument 2 is set:
  1513. send "&c[HYPIXEL] Rank updated to &6[YT]&c!"
  1514. set {Hypixel.rankcolor.%arg-2%} to "&6"
  1515. set {Hypixel.rank.%arg-2%} to "&6[YT] &6"
  1516. set {Hypixel.tabrank.%arg-2%} to "&6YT"
  1517. make console execute command "nte player %arg-2% prefix &6[YT] &6"
  1518. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1519. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1520. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1521. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1522. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1523. make console execute command "pex user %arg 2% add Hypixel.yt"
  1524. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1525. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1526. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1527. make console execute command "pex user %arg 2% add Hypixel.vip"
  1528. make console execute command "pex user %arg 2% add Hypixel.default"
  1529. else:
  1530. send "&cInvalid usage!"
  1531. else if argument 1 is "GOD":
  1532. if argument 2 is set:
  1533. send "&c[HYPIXEL] Rank updated to &b[MVP&c+&b]&c!"
  1534. set {Hypixel.rankcolor.%arg-2%} to "&e"
  1535. set {Hypixel.rank.%arg-2%} to "&e[GOD] "
  1536. set {Hypixel.tabrank.%arg-2%} to "&eGOD"
  1537. make console execute command "nte player %arg-2% prefix &e[GOD] &e"
  1538. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1539. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1540. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1541. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1542. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1543. make console execute command "pex user %arg 2% add Hypixel.yt"
  1544. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1545. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1546. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1547. make console execute command "pex user %arg 2% add Hypixel.vip"
  1548. make console execute command "pex user %arg 2% add Hypixel.default"
  1549. else:
  1550. send "&cInvalid usage!"
  1551. else if argument 1 is "BETA_TESTER":
  1552. if argument 2 is set:
  1553. send "&c[HYPIXEL] Rank updated to &5[BETA TESTER]&c!"
  1554. set {Hypixel.rankcolor.%arg-2%} to "&5"
  1555. set {Hypixel.rank.%arg-2%} to "&5[BETA TESTER] "
  1556. set {Hypixel.tabrank.%arg-2%} to "&5BETA TESTER"
  1557. make console execute command "nte player %arg-2% prefix &5[BETA TESTER]"
  1558. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1559. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1560. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1561. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1562. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1563. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1564. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1565. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1566. make console execute command "pex user %arg 2% remove Hypixel.vip+"
  1567. make console execute command "pex user %arg 2% remove Hypixel.vip"
  1568. make console execute command "pex user %arg 2% add Hypixel.default"
  1569. else:
  1570. send "&cInvalid usage!"
  1571. else if argument 1 is "JR_HELPER":
  1572. if argument 2 is set:
  1573. send "&c[HYPIXEL] Rank updated to &9[JR HELPER]&c!"
  1574. set {Hypixel.rankcolor.%arg-2%} to "&9"
  1575. set {Hypixel.rank.%arg-2%} to "&9[JR HELPER] "
  1576. set {Hypixel.tabrank.%arg-2%} to "&9JR HELPER"
  1577. make console execute command "nte player %arg-2% prefix &9[JR HELPER] &9"
  1578. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1579. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1580. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1581. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1582. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1583. make console execute command "pex user %arg 2% add Hypixel.yt"
  1584. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1585. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1586. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1587. make console execute command "pex user %arg 2% add Hypixel.vip"
  1588. make console execute command "pex user %arg 2% add Hypixel.default"
  1589. else:
  1590. send "&cInvalid usage!"
  1591. else if argument 1 is "RETIRED":
  1592. if argument 2 is set:
  1593. send "&c[HYPIXEL] Rank updated to &c[RETIRED]&c!"
  1594. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1595. set {Hypixel.rank.%arg-2%} to "&c[RETIRED] "
  1596. set {Hypixel.tabrank.%arg-2%} to "&cRETIRED"
  1597. make console execute command "nte player %arg-2% prefix &c[RETIRED] &c"
  1598. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1599. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1600. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1601. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1602. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1603. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1604. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1605. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1606. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1607. make console execute command "pex user %arg 2% add Hypixel.vip"
  1608. make console execute command "pex user %arg 2% add Hypixel.default"
  1609. else:
  1610. send "&cInvalid usage!"
  1611. else if argument 1 is "HELPER":
  1612. if argument 2 is set:
  1613. send "&c[HYPIXEL] Rank updated to &9[HELPER]&c!"
  1614. set {Hypixel.rankcolor.%arg-2%} to "&9"
  1615. set {Hypixel.rank.%arg-2%} to "&9[HELPER] "
  1616. set {Hypixel.tabrank.%arg-2%} to "&9HELPER"
  1617. make console execute command "nte player %arg-2% prefix &9[HELPER] &9"
  1618. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1619. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1620. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1621. make console execute command "pex user %arg 2% add Hypixel.helper"
  1622. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1623. make console execute command "pex user %arg 2% add Hypixel.yt"
  1624. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1625. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1626. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1627. make console execute command "pex user %arg 2% add Hypixel.vip"
  1628. make console execute command "pex user %arg 2% add Hypixel.default"
  1629. else:
  1630. send "&cInvalid usage!"
  1631. else if argument 1 is "MOD":
  1632. if argument 2 is set:
  1633. send "&c[HYPIXEL] Rank updated to &2[MOD]&c!"
  1634. set {Hypixel.rankcolor.%arg-2%} to "&2"
  1635. set {Hypixel.rank.%arg-2%} to "&2[MOD] "
  1636. set {Hypixel.tabrank.%arg-2%} to "&2MOD"
  1637. make console execute command "nte player %arg-2% prefix &2[MOD] &2"
  1638. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1639. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1640. make console execute command "pex user %arg 2% add Hypixel.mod"
  1641. make console execute command "pex user %arg 2% add Hypixel.helper"
  1642. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1643. make console execute command "pex user %arg 2% add Hypixel.yt"
  1644. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1645. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1646. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1647. make console execute command "pex user %arg 2% add Hypixel.vip"
  1648. make console execute command "pex user %arg 2% add Hypixel.default"
  1649. else:
  1650. send "&cInvalid usage!"
  1651. else if argument 1 is "MCProHosting":
  1652. if argument 2 is set:
  1653. send "&c[HYPIXEL] Rank updated to &c[MCProHosting]c!"
  1654. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1655. set {Hypixel.rank.%arg-2%} to "&c[&aMC&fProHosting&c] "
  1656. set {Hypixel.tabrank.%arg-2%} to "&aMC&fProHosting"
  1657. make console execute command "nte player %arg-2% prefix &c[MCProHosting]"
  1658. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1659. make console execute command "pex user %arg 2% add Hypixel.admin"
  1660. make console execute command "pex user %arg 2% add Hypixel.mod"
  1661. make console execute command "pex user %arg 2% add Hypixel.helper"
  1662. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1663. make console execute command "pex user %arg 2% add Hypixel.yt"
  1664. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1665. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1666. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1667. make console execute command "pex user %arg 2% add Hypixel.vip"
  1668. make console execute command "pex user %arg 2% add Hypixel.default"
  1669. else:
  1670. send "&cInvalid usage!"
  1671. else if argument 1 is "BUILD_TEAM":
  1672. if argument 2 is set:
  1673. send "&c[HYPIXEL] Rank updated to &3[BUILD TEAM]c!"
  1674. set {Hypixel.rankcolor.%arg-2%} to "&3"
  1675. set {Hypixel.rank.%arg-2%} to "&3[BUILD TEAM] "
  1676. set {Hypixel.tabrank.%arg-2%} to "&3BUILD TEAM"
  1677. make console execute command "nte player %arg-2% prefix &3[BUILD TEAM]"
  1678. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1679. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1680. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1681. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1682. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1683. make console execute command "pex user %arg 2% add Hypixel.yt"
  1684. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1685. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1686. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1687. make console execute command "pex user %arg 2% add Hypixel.vip"
  1688. make console execute command "pex user %arg 2% add Hypixel.default"
  1689. else:
  1690. send "&cInvalid usage!"
  1691. else if argument 1 is "MOJANG":
  1692. if argument 2 is set:
  1693. send "&c[HYPIXEL] Rank updated to &6[MOJANG]c!"
  1694. set {Hypixel.rankcolor.%arg-2%} to "&6"
  1695. set {Hypixel.rank.%arg-2%} to "&6[MOJANG] "
  1696. set {Hypixel.tabrank.%arg-2%} to "&6MOJANG"
  1697. make console execute command "nte player %arg-2% prefix &6[MOJANG] &6"
  1698. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1699. make console execute command "pex user %arg 2% add Hypixel.admin"
  1700. make console execute command "pex user %arg 2% add Hypixel.mod"
  1701. make console execute command "pex user %arg 2% add Hypixel.helper"
  1702. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1703. make console execute command "pex user %arg 2% add Hypixel.yt"
  1704. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1705. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1706. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1707. make console execute command "pex user %arg 2% add Hypixel.vip"
  1708. make console execute command "pex user %arg 2% add Hypixel.default"
  1709. else:
  1710. send "&cInvalid usage!"
  1711. else if argument 1 is "SLOTH":
  1712. if argument 2 is set:
  1713. send "&c[HYPIXEL] Rank updated to &c[SLOTH]&c!"
  1714. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1715. set {Hypixel.rank.%arg-2%} to "&c[SLOTH] "
  1716. set {Hypixel.tabrank.%arg-2%} to "&cSLOTH"
  1717. make console execute command "nte player %arg-2% prefix &c[SLOTH] &c"
  1718. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1719. make console execute command "pex user %arg 2% add Hypixel.admin"
  1720. make console execute command "pex user %arg 2% add Hypixel.mod"
  1721. make console execute command "pex user %arg 2% add Hypixel.helper"
  1722. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1723. make console execute command "pex user %arg 2% add Hypixel.yt"
  1724. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1725. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1726. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1727. make console execute command "pex user %arg 2% add Hypixel.vip"
  1728. make console execute command "pex user %arg 2% add Hypixel.default"
  1729. else:
  1730. send "&cInvalid usage!"
  1731. else if argument 1 is "EVENTS":
  1732. if argument 2 is set:
  1733. send "&c[HYPIXEL] Rank updated to &6[EVENTS]&c!"
  1734. set {Hypixel.rankcolor.%arg-2%} to "&6"
  1735. set {Hypixel.rank.%arg-2%} to "&6[EVENTS] "
  1736. set {Hypixel.tabrank.%arg-2%} to "&6EVENTS"
  1737. make console execute command "nte player %arg-2% prefix &6[EVENTS] &6"
  1738. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1739. make console execute command "pex user %arg 2% add Hypixel.admin"
  1740. make console execute command "pex user %arg 2% add Hypixel.mod"
  1741. make console execute command "pex user %arg 2% add Hypixel.helper"
  1742. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1743. make console execute command "pex user %arg 2% add Hypixel.yt"
  1744. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1745. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1746. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1747. make console execute command "pex user %arg 2% add Hypixel.vip"
  1748. make console execute command "pex user %arg 2% add Hypixel.default"
  1749. else:
  1750. send "&cInvalid usage!"
  1751. else if argument 1 is "ADMIN":
  1752. if argument 2 is set:
  1753. send "&c[HYPIXEL] Rank updated to &c[ADMIN]&c!"
  1754. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1755. set {Hypixel.rank.%arg-2%} to "&c[ADMIN] "
  1756. set {Hypixel.tabrank.%arg-2%} to "&cADMIN"
  1757. make console execute command "nte player %arg-2% prefix &c[ADMIN] &c"
  1758. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1759. make console execute command "pex user %arg 2% add Hypixel.admin"
  1760. make console execute command "pex user %arg 2% add Hypixel.mod"
  1761. make console execute command "pex user %arg 2% add Hypixel.helper"
  1762. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1763. make console execute command "pex user %arg 2% add Hypixel.yt"
  1764. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1765. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1766. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1767. make console execute command "pex user %arg 2% add Hypixel.vip"
  1768. make console execute command "pex user %arg 2% add Hypixel.default"
  1769. else:
  1770. send "&cInvalid usage!"
  1771. else if argument 1 is "OWNER":
  1772. if argument 2 is set:
  1773. send "&c[HYPIXEL] Rank updated to &c[OWNER]&c!"
  1774. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1775. set {Hypixel.rank.%arg-2%} to "&c[OWNER] "
  1776. set {Hypixel.tabrank.%arg-2%} to "&cOWNER"
  1777. make console execute command "nte player %arg-2% prefix &c[OWNER] &c"
  1778. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1779. make console execute command "pex user %arg 2% add Hypixel.admin"
  1780. make console execute command "pex user %arg 2% add Hypixel.mod"
  1781. make console execute command "pex user %arg 2% add Hypixel.helper"
  1782. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1783. make console execute command "pex user %arg 2% add Hypixel.yt"
  1784. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1785. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1786. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1787. make console execute command "pex user %arg 2% add Hypixel.vip"
  1788. make console execute command "pex user %arg 2% add Hypixel.default"
  1789. else:
  1790. send "&cInvalid usage!"
  1791. else:
  1792. send "&cInvalid usage!"
  1793.  
  1794. command /rankcolor:
  1795. aliases: /colorrank
  1796. trigger:
  1797. if {Hypixel.rank.%player%} is not "&b[MVP&c+&b] " or "&b[MVP&6+&b] " or "&b[MVP&a+&b] " or "&b[MVP&e+&b] " or "&b[MVP&d+&b] " or "&b[MVP&f+&b] " or "&b[MVP&9+&b] " or "&b[MVP&2+&b] " or "&b[MVP&4+&b] " or "&b[MVP&3+&b] " or "&b[MVP&5+&b] " or "&b[MVP&8+&b] " or "&b[MVP&0+&b] ":
  1798. send "&cYou must be of the &bMVP&c+ &crank to use this command!"
  1799. else if {Hypixel.rank.%player%} is "&b[MVP&c+&b] " or "&b[MVP&6+&b] " or "&b[MVP&a+&b] " or "&b[MVP&e+&b] " or "&b[MVP&d+&b] " or "&b[MVP&f+&b] " or "&b[MVP&9+&b] " or "&b[MVP&2+&b] " or "&b[MVP&4+&b] " or "&b[MVP&3+&b] " or "&b[MVP&5+&b] " or "&b[MVP&8+&b] " or "&b[MVP&0+&b] ":
  1800. open chest with 4 rows named "MVP+ Rank Color" to player
  1801. wait 1 tick
  1802. format slot 10 of player with 351:1 named "&aRed MVP+ Rank Color" with lore "&7The default color for &bMVP&c+|| ||&3Unlocked at Hypixel Level 0" to close then run [make console execute command "adminrc Red %player%"]
  1803. format slot 11 of player with 351:14 named "&aGold MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to gold, turning it into &bMVP&6+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 35" to close then run [make console execute command "adminrc Gold %player%"]
  1804. format slot 20 of player with 331 named "&aDark Red MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to dark red, turning it into &bMVP&4+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 150" to close then run [make console execute command "adminrc DarkRed %player%"]
  1805. format slot 21 of player with 351:6 named "&aDark Aqua MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to dark aqua, turning it into &bMVP&3+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 150" to close then run [make console execute command "adminrc DarkAqua %player%"]
  1806. format slot 12 of player with 351:10 named "&aGreen MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to green, turning it into &bMVP&a+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 45" to close then run [make console execute command "adminrc Green %player%"]
  1807. format slot 14 of player with 351:9 named "&aLight Purple MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to light purple, turning it into &bMVP&d+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 65" to close then run [make console execute command "adminrc LightPurple %player%"]
  1808. format slot 15 of player with 351:15 named "&aWhite MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to white, turning it into &bMVP&f+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 75" to close then run [make console execute command "adminrc White %player%"]
  1809. format slot 13 of player with 351:11 named "&aYellow MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to yellow, turning it into &bMVP&e+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 55" to close then run [make console execute command "adminrc Yellow %player%"]
  1810. format slot 16 of player with 351:4 named "&aBlue MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to blue, turning it into &bMVP&9+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 85" to close then run [make console execute command "adminrc Blue %player%"]
  1811. format slot 19 of player with 351:2 named "&aDark Green MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to dark green, turning it into &bMVP&2+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 95" to close then run [make console execute command "adminrc DarkGreen %player%"]
  1812. format slot 22 of player with 351:5 named "&aDark Purple MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to dark purple, turning it into &bMVP&5+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 200" to close then run [make console execute command "adminrc DarkPurple %player%"]
  1813. format slot 23 of player with 351:8 named "&aDark Gray MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to dark gray, turning it into &bMVP&8+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 200" to close then run [make console execute command "adminrc DarkGray %player%"]
  1814. format slot 24 of player with 351:0 named "&aBlack MVP+ Rank Color" with lore "&7Changes the color of the plus in &bMVP&c+||&7to black, turning it into &bMVP&0+|| ||&7Shown in tab list also when chatting||&7and joining lobbies.|| ||&3Unlocked at Hypixel Level 250" to close then run [make console execute command "adminrc Black %player%"]
  1815.  
  1816. command /setspawn:
  1817. permission: Hypixel.setspawn
  1818. permission message: &cSorry, but you don't have permission to execute this command!
  1819. trigger:
  1820. message "&cSet spawn to your current location!"
  1821. set {spawn} to location of player
  1822.  
  1823. on join:
  1824. if {spawn} is set:
  1825. teleport player to {spawn}
  1826.  
  1827. every 2 seconds:
  1828. if {hypixel.usescoreboard} is false:
  1829. stop
  1830. else:
  1831. loop all players:
  1832. wipe loop-player's sidebar
  1833. set name of sidebar of loop-player to "&e&lHYPIXEL"
  1834. set score "&8 " in sidebar of loop-player to 13
  1835. set score "&fRank: %{Hypixel.tabrank.%loop-player%}%" in sidebar of loop-player to 12
  1836. set score "&fMystery Dust: &a0" in sidebar of loop-player to 11
  1837. set score "&fAchievements: &a%{apoints.%loop-player%}%" in sidebar of loop-player to 10
  1838. set score "&fLevel: &a%{Hypixel.level.%loop-player%}%" in sidebar of loop-player to 9
  1839. set score "&b" in sidebar of loop-player to 8
  1840. set score "&fRewards Found:" in sidebar of loop-player to 7
  1841. set score "&c%{rewards.%loop-player%}%&a/34" in sidebar of loop-player to 6
  1842. set score "&f" in sidebar of loop-player to 5
  1843. set score "&fLobby: &a##1" in sidebar of loop-player to 4
  1844. set score "&fPlayers: &a%{onlineplayers}%" in sidebar of loop-player to 3
  1845. set score "&f" in sidebar of loop-player to 2
  1846. set score "&ewww.hypixel.net" in sidebar of loop-player to 1
  1847.  
  1848. command /level [<player>] [<integer>]:
  1849. permission: Hypixel.admin
  1850. permission message: &cYou are not allowed to do this!
  1851. trigger:
  1852. if arg 1 is set:
  1853. if arg 2 is set:
  1854. if arg 2 is less than 0:
  1855. set {_temp} to "%arg-2%"
  1856. make console execute command "/xp -9999L %arg-1%"
  1857. make console execute command "/xp %{_temp}%L %arg-1%"
  1858. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1859. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1860. send "&f" to argument 1
  1861. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1862. send "&f" to argument 1
  1863. send " &eClaim your reward in the lobby!" to argument 1
  1864. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1865. make console execute command "sound LEVEL_UP %arg 1%"
  1866. add 1 to {claim.%arg 1%}
  1867. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1868. send "&eClick here to view them!" to argument 1
  1869. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1870. send "&aSet %arg-1% level to &e%arg-2%&a."
  1871. stop
  1872. else if arg 2 is less than 20:
  1873. set {_temp} to "%arg-2%"
  1874. make console execute command "/xp -9999L %arg-1%"
  1875. make console execute command "/xp %{_temp}%L %arg-1%"
  1876. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1877. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1878. send "&f" to argument 1
  1879. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1880. send "&f" to argument 1
  1881. send " &eClaim your reward in the lobby!" to argument 1
  1882. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1883. make console execute command "sound LEVEL_UP %arg 1%"
  1884. add 1 to {claim.%arg 1%}
  1885. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1886. send "&eClick here to view them!" to argument 1
  1887. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1888. send "&aSet %arg-1% level to &e%arg-2%&a."
  1889. stop
  1890. else if arg 2 is less than 40:
  1891. set {_temp} to "%arg-2%"
  1892. make console execute command "/xp -9999L %arg-1%"
  1893. make console execute command "/xp %{_temp}%L %arg-1%"
  1894. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1895. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1896. send "&f" to argument 1
  1897. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1898. send "&f" to argument 1
  1899. send " &eClaim your reward in the lobby!" to argument 1
  1900. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1901. make console execute command "sound LEVEL_UP %arg 1%"
  1902. add 1 to {claim.%arg 1%}
  1903. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1904. send "&eClick here to view them!" to argument 1
  1905. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1906. send "&aSet %arg-1% level to &e%arg-2%&a."
  1907. stop
  1908. else if arg 2 is less than 60:
  1909. set {_temp} to "%arg-2%"
  1910. make console execute command "/xp -9999L %arg-1%"
  1911. make console execute command "/xp %{_temp}%L %arg-1%"
  1912. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1913. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1914. send "&f" to argument 1
  1915. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1916. send "&f" to argument 1
  1917. send " &eClaim your reward in the lobby!" to argument 1
  1918. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1919. make console execute command "sound LEVEL_UP %arg 1%"
  1920. add 1 to {claim.%arg 1%}
  1921. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1922. send "&eClick here to view them!" to argument 1
  1923. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1924. send "&aSet %arg-1% level to &e%arg-2%&a."
  1925. stop
  1926. else if arg 2 is less than 80:
  1927. set {_temp} to "%arg-2%"
  1928. make console execute command "/xp -9999L %arg-1%"
  1929. make console execute command "/xp %{_temp}%L %arg-1%"
  1930. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1931. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1932. send "&f" to argument 1
  1933. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1934. send "&f" to argument 1
  1935. send " &eClaim your reward in the lobby!" to argument 1
  1936. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1937. make console execute command "sound LEVEL_UP %arg 1%"
  1938. add 1 to {claim.%arg 1%}
  1939. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1940. send "&eClick here to view them!" to argument 1
  1941. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1942. send "&aSet %arg-1% level to &e%arg-2%&a."
  1943. stop
  1944. else if arg 2 is less than or equal to 250:
  1945. set {_temp} to "%arg-2%"
  1946. make console execute command "/xp -9999L %arg-1%"
  1947. make console execute command "/xp %{_temp}%L %arg-1%"
  1948. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1949. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1950. send "&f" to argument 1
  1951. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1952. send "&f" to argument 1
  1953. send " &eClaim your reward in the lobby!" to argument 1
  1954. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1955. make console execute command "sound LEVEL_UP %arg 1%"
  1956. add 1 to {claim.%arg 1%}
  1957. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1958. send "&eClick here to view them!" to argument 1
  1959. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1960. send "&aSet %arg-1% level to &e%arg-2%&a."
  1961. stop
  1962. else:
  1963. send "&cError"
  1964. else:
  1965. send "&cUsage: /level <player> <1-250>"
  1966. else:
  1967. send "&cUsage: /level <player> <1-250>"
  1968.  
  1969. on damage:
  1970. cancel event
  1971.  
  1972. command /pet [<string>] [<string>]:
  1973. trigger:
  1974. if arg 1 is not set:
  1975. send "&ePet Commands"
  1976. send " &7/pet name <name> - Rename your pet"
  1977. if arg 1 is set:
  1978. if arg 2 is set:
  1979. if arg 1 is "name":
  1980. make player execute command "/gmenu namepet &8Lv&7001 &f%arg 2%"
  1981.  
  1982. variables:
  1983. {HypixelFriendlist.%player%::*} = 0
  1984. {world.alias::*} = 0
  1985.  
  1986.  
  1987.  
  1988.  
  1989.  
  1990.  
  1991.  
  1992. command /friend [<text>] [<player>] [<text>] [<text>]:
  1993. trigger:
  1994. if arg 1 is "help":
  1995. message "&9-----------------------------------------------------"
  1996. message "&aFriend Commands:"
  1997. message "&e/friend help &b- Prints this help message"
  1998. message "&e/friend add &b- Add a player as a friend"
  1999. message "&e/friend accept &b- Accept a friend request"
  2000. message "&e/friend deny &b- Decline a friend request"
  2001. message "&e/friend list &b- List your friends"
  2002. message "&e/friend notifications &b- Toggle friend notifications"
  2003. message "&e/friend remove <player> &b- Remove a player from your friends"
  2004. message "&e/friend requests &b- View friend requests"
  2005. message "&e/friend toggle &b- Toggle Friend Requests"
  2006. message "&9-----------------------------------------------------"
  2007. if arg 1 is not set:
  2008. message "&9-----------------------------------------------------"
  2009. message "&aFriend Commands:"
  2010. message "&e/friend help &b- Prints this help message"
  2011. message "&e/friend add &b- Add a player as a friend"
  2012. message "&e/friend accept &b- Accept a friend request"
  2013. message "&e/friend deny &b- Decline a friend request"
  2014. message "&e/friend list &b- List your friends"
  2015. message "&e/friend notifications &b- Toggle friend notifications"
  2016. message "&e/friend remove <player> &b- Remove a player from your friends"
  2017. message "&e/friend requests &b- View friend requests"
  2018. message "&e/friend toggle &b- Toggle Friend Requests"
  2019. message "&9-----------------------------------------------------"
  2020. if arg 1 is "add":
  2021. if arg 2 is "%player%":
  2022. message "&9-----------------------------------------------------"
  2023. message "&cYou can't add yourself as a friend!"
  2024. message "&9-----------------------------------------------------"
  2025. else:
  2026. if {HypixelFriend.%player%.%arg 2%.block} is 1:
  2027. message "&9-----------------------------------------------------"
  2028. message "&cThat person is blocking you!"
  2029. message "&9-----------------------------------------------------"
  2030. else:
  2031. if {HypixelFriendadd.%arg 2%.%player%} is 3:
  2032. message "&cYou are already friends with %{Hypixel.rank.%arg 2%}%%arg 2%&c!"
  2033. if {HypixelFriendadd.%arg 2%.%player%} is 1:
  2034. message "&cYou've already sent %{Hypixel.rank.%arg 2%}%%arg 2% &ca request!"
  2035. if {HypixelFriendadd.%arg 2%.%player%} is 1:
  2036. else:
  2037. if {HypixelFriendadd.%arg 2%.%player%} is 3:
  2038. else:
  2039. set {HypixelFriendadd.%arg 2%.%player%} to 1
  2040. message "&9-----------------------------------------------------"
  2041. message "&eYou've sent %arg 2% a friend request!"
  2042. message "&9-----------------------------------------------------"
  2043.  
  2044. message "&9&m----------------------------------------------------&r" to arg 2
  2045. message "&eFriend request from %{Hypixel.rank.%player%}%%player%&r" to arg 2
  2046. message "&eClick one: &a&l[ACCEPT] &8- &c&l[DENY] &8- &7&l[IGNORE]" to arg 2
  2047. message "&9&m----------------------------------------------------&r" to arg 2
  2048. if arg 1 is "accept":
  2049. if {HypixelFriendadd.%player%.%arg 2%} is 1:
  2050. add player to {HypixelFriendlist.%arg 2%::*}
  2051. add arg 2 to {HypixelFriendlist.%player%::*}
  2052. set {MCF.%player%.%arg 2%} to arg 2
  2053. set {MCF.%arg 2%.%player%} to player
  2054. set {HypixelFriendadd.%player%.%arg 2%} to 3
  2055.  
  2056. message "&9-----------------------------------------------------"
  2057. message "&aYou are now friends with %{Hypixel.rank.%arg 2%}%%arg 2%"
  2058. message "&9-----------------------------------------------------"
  2059. message "&9-----------------------------------------------------" to arg 2
  2060. message "&aYou are now friends with %{Hypixel.rank.%player%}%%player%" to arg 2
  2061. message "&9-----------------------------------------------------" to arg 2
  2062. else:
  2063. message "&cThat player didn't send you a request!"
  2064. if arg 1 is "list":
  2065. message "&9-----------------------------------------------------"
  2066. message "&cThis feature is still getting worked on!"
  2067. message "&9-----------------------------------------------------"
  2068. if arg 1 is "remove":
  2069. if {HypixelFriendadd.%arg 2%.%player%} is 3:
  2070. remove arg 2 from {HypixelFriendlist.%player%::*}
  2071. remove player from {HypixelFriendlist.%arg 2%::*}
  2072. set {HypixelFriendadd.%arg 2%.%player%} to 0
  2073. clear {MCF.%arg 2%.%player%}
  2074. clear {MCF.%player%.%arg 2%}
  2075.  
  2076. message "&9-----------------------------------------------------"
  2077. message "&eYou removed %{Hypixel.rankcolor.%arg 2%}%%arg 2% &efrom your friends list!"
  2078. message "&9-----------------------------------------------------"
  2079.  
  2080. message "&9-----------------------------------------------------" to arg 2
  2081. message "%{Hypixel.rankcolor.%player%}%%player% &eremoved you from they're friends list!" to arg 2
  2082. message "&9-----------------------------------------------------" to arg 2
  2083. else:
  2084. if {HypixelFriendadd.%player%.%arg 2%} is 3:
  2085. remove arg 2 from {HypixelFriendlist.%player%::*}
  2086. remove player from {HypixelFriendlist.%arg 2%::*}
  2087. set {HypixelFriendadd.%player%.%arg 2%} to 0
  2088. message "&9-----------------------------------------------------"
  2089. message "&eYou removed %{Hypixel.rankcolor.%arg 2%}%%arg 2% &efrom your friends list!"
  2090. message "&9-----------------------------------------------------"
  2091. message "&9-----------------------------------------------------" to arg 2
  2092. message "%{Hypixel.rankcolor.%player%}%%player% &eremoved you from they're friends list!" to arg 2
  2093. message "&9-----------------------------------------------------" to arg 2
  2094. else:
  2095. message "&9-----------------------------------------------------"
  2096. message "&cYou are not friends with that player!"
  2097. message "&9-----------------------------------------------------"
  2098.  
  2099. if arg 1 is "deny":
  2100. if {HypixelFriendadd.%player%.%arg 2%} is 1:
  2101. set {HypixelFriendadd.%player%.%arg 2%} to 0
  2102. message "&9-----------------------------------------------------"
  2103. message "&eYou denied %{Hypixel.rankcolor.%arg 2%}%%arg 2%&e's request!"
  2104. message "&9-----------------------------------------------------"
  2105. message "&9-----------------------------------------------------" to arg 2
  2106. message "%{Hypixel.rankcolor.%player%}%%player% &edenied your friend request!" to arg 2
  2107. message "&9-----------------------------------------------------" to arg 2
  2108.  
  2109.  
  2110.  
  2111. if arg 1 is "block":
  2112. set {HypixelFriend.%arg 2%.%player%.block} to 1
  2113. message "&8[&6HypixelFriend&8] &aDu hast den Spieler %arg 2% nun geblockt."
  2114. if arg 1 is "entblock":
  2115. set {HypixelFriend.%arg 2%.%player%.block} to 0
  2116. message "&8[&6HypixelFriend&8] &aDu hast den Spieler %arg 2% nun entblockt."
  2117. if arg 1 is "online":
  2118. message "&8[&6HypixelFriend&8] &a-=Online=-"
  2119. loop all players:
  2120. if {HypixelFriendadd.%player%.%loop-player%} is 3:
  2121. message "&8[&6HypixelFriend&8] &a-%{MCF.%player%.%loop-player%}% &7-> &d%{%World%.n}%"
  2122. if {HypixelFriendadd.%loop-player%.%player%} is 3:
  2123. message "&8[&6HypixelFriend&8] &a-%{MCF.%player%.%loop-player%}% &7-> &d%{%World%.n}%"
  2124.  
  2125.  
  2126. if arg 1 is "world":
  2127. add arg 3 to {world.alias::*}
  2128. set {%arg 3%.n} to arg 4
  2129. message "&dDie Alias %arg 4% wurde zur Welt %arg 3% hinzugefügt."
  2130.  
  2131. command /core:
  2132. trigger:
  2133. send "&cOriginally made by xyamz1!"
  2134.  
  2135.  
  2136.  
  2137. command /msg [<player>] [<text>]:
  2138. trigger:
  2139. if argument 2 is not set:
  2140. message "&cUse: /msg (player) (message)"
  2141. else if argument 1 is not set:
  2142. message "&cUse: /msg (player) (message)"
  2143. else if {hypixel.mute.%player%} is "true":
  2144. message "&6-----------------------------------------------------"
  2145. message "&cYou are currently muted for %{hypixel.mutereason.%player%}%"
  2146. message "&6-----------------------------------------------------"
  2147. else:
  2148. message "&dTo %{Hypixel.rank.%arg 1%}%%arg 1%&7: %arg 2%"
  2149. message "&dFrom %{Hypixel.rank.%player%}%%player%&7: %arg 2%" to arg 1
  2150.  
  2151. #Watchdog
  2152.  
  2153. on connect:
  2154. if {Hypixelban.%player%} is "true":
  2155. kick player due to "&cYou are permanently banned from his server!%nl%&f%nl%&7Reason: &f%{Hypixelbanreason.%player%}% &7&o(CR-0)%nl%&7Find out more: &b&nhttps://www.hypixel.net/watchdog&r%nl%&f%nl%&7Ban ID: &f##0"
  2156.  
  2157.  
  2158. command /watchdogban [<offlineplayer>] [<text>]:
  2159. permission: Hypixel.admin
  2160. permission message: &cYou are not allowed to do this!
  2161. trigger:
  2162. if executor is a player or console:
  2163. if arg 1 is set:
  2164. if arg 2 is set:
  2165. kick arg 1 due to "&cYou are permanently banned from his server!%nl%&f%nl%&7Reason: &f%arg 2% &7&o(CR-0)%nl%&7Find out more: &b&nhttps://www.hypixel.net/watchdog&r%nl%&f%nl%&7Ban ID: &f##0"
  2166. broadcast "&f[WATCHDOG] &c%arg 1% has been removed from your game."
  2167. add 1 to {watchdogbans}
  2168. set {Hypixelban.%arg 1%} to "true"
  2169. set {Hypixelbanreason.%arg 1%} to "%arg 2%"
  2170. set {Hypixel.lastban.%arg 1%} to "%arg 2%"
  2171. else:
  2172. send "&cUsage: &c/watchdogban <player> <reason>"
  2173. else:
  2174. send "&cUsage: &c/watchdogban <player> <reason>"
  2175. else:
  2176. send "&cYou don't have permission to use this command!"
  2177.  
  2178. command /kick [<offlineplayer>] [<text>]:
  2179. permission: Hypixel.admin
  2180. permission message: &cYou are not allowed to do this!
  2181. trigger:
  2182. if executor is a player or console:
  2183. if arg 1 is set:
  2184. if arg 2 is set:
  2185. kick arg 1 due to "&cYou have been kicked from the server!%nl%&f%nl%&7Reason: &f%arg 2%%nl%&f%nl%&7Kick ID: &f##0"
  2186. broadcast "&f[KICK] &c%arg 1% has been removed from your game."
  2187. else:
  2188. send "&cUse: &c/kick (username) (reason)"
  2189. else:
  2190. send "&cUse: &c/kick (username) (reason)"
  2191. else:
  2192. send "&cYou are not allowed to do this!"
  2193.  
  2194. command /unban [<offlineplayer>]:
  2195. permission: Hypixel.admin
  2196. permission message: &cYou are not allowed to do this!
  2197. trigger:
  2198. if arg 1 is not set:
  2199. send "&cUse: /unban (username)"
  2200. else if arg 1 is set:
  2201. set {Hypixelban.%arg 1%} to "false"
  2202. set {Hypixelbanreason.%arg 1%} to "None"
  2203. send "&f[WATCHDOG] &cUnbanned %arg 1%."
  2204.  
  2205. on join:
  2206. if {Hypixel.lastwarn.%player%} is not set:
  2207. set {Hypixel.lastwarn.%player%} to "None"
  2208. if {Hypixel.lastmute.%player%} is not set:
  2209. set {Hypixel.lastmute.%player%} to "None"
  2210. if {Hypixel.lastban.%player%} is not set:
  2211. set {Hypixel.lastban.%player%} to "None"
  2212.  
  2213. command /check [<offlineplayer>]:
  2214. permission: Hypixel.mod
  2215. permission message: &cYou are not allowed to do this!
  2216. trigger:
  2217. if arg 1 is not set:
  2218. send "&cUse: /check (username)"
  2219. else if arg 1 is set:
  2220. set {Hypixelban.%arg 1%} to "false"
  2221. set {Hypixelbanreason.%arg 1%} to "None"
  2222. send "&f[BANS] &c%arg 1%'s Information:"
  2223. send "&cLast Warning: &e%{Hypixel.lastwarn.%arg 1%}%"
  2224. send "&cLast Mute: &e%{Hypixel.lastmute.%arg 1%}%"
  2225. send "&cLast Ban: &e%{Hypixel.lastban.%arg 1%}%"
  2226.  
  2227. command /warn [<offlineplayer>] [<text>]:
  2228. permission: Hypixel.jrhelper
  2229. permission message: &cYou are not allowed to do this!
  2230. trigger:
  2231. if arg 1 is not set:
  2232. send "&cUse: /warn (username) (reason)"
  2233. else if arg 1 is set:
  2234. if arg 2 is set:
  2235. send "&c&lYou have been warned for %arg 2%." to argument 1
  2236. send "&cYou have warned %arg 1% for %arg 2%."
  2237. set {Hypixel.lastwarn.%arg 1%} to "%arg 2%"
  2238.  
  2239. on join:
  2240. if {Hypixelban.%player%} is not set:
  2241. set {Hypixelban.%player%} to "false"
  2242.  
  2243. command /?:
  2244. trigger:
  2245. send "&cYou are not allowed to do this!"
  2246. command /bukkit:?:
  2247. trigger:
  2248. send "&cYou are not allowed to do this!"
  2249. command /bukkit:help:
  2250. trigger:
  2251. send "&cYou are not allowed to do this!"
  2252.  
  2253. command /hcs:
  2254. permission: Hypixel.mod
  2255. permission message: &cYou are not allowed to do this!
  2256. trigger:
  2257. if {hcs.%player%} is not set:
  2258. set {hcs.%player%} to "false"
  2259. send "&C[HCS] &fHypixel Chat Spy: &cOff"
  2260. else if {hcs.%player%} is "false":
  2261. set {hcs.%player%} to "true"
  2262. send "&C[HCS] &fHypixel Chat Spy: &aOn"
  2263. else if {hcs.%player%} is "true":
  2264. set {hcs.%player%} to "false"
  2265. send "&C[HCS] &fHypixel Chat Spy: &cOff"
  2266.  
  2267. on command:
  2268. if the executor is a player:
  2269. loop all players:
  2270. if loop-player has permission "Hypixel.mod":
  2271. if {hcs.%player%} is "true":
  2272. send "&c[HCS] %{Hypixel.rank.%player%}%%player% &7used /%command%" to loop-player
  2273.  
  2274. on join:
  2275. if {claim.%player%} is more than 0:
  2276. send "&aYou have &b%{claim.%player%}% &aunclaimed leveling rewards!"
  2277. send "&eClick here to view them!"
  2278.  
  2279. on join:
  2280. if {Hypixel.chat.%player%} is "guild":
  2281. send "&cYou have been moved to the &6ALL &cchannel"
  2282. delete {Hypixel.chat.%player%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement