Advertisement
oChampPlays

Untitled

Mar 17th, 2018
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 115.54 KB | None | 0 0
  1. #
  2. #
  3. #
  4. # Hypixel Core by xyamz1 (Vanguard)
  5. #
  6. # Spigot: https://www.spigotmc.org/members/vanguard.390001/
  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: 1.2.2
  13. #Author. You are not allowed to change this since it would violate our terms of use.
  14. author: xyamz1 (Vanguard)
  15. #Spigot page of the author.
  16. spigot: https://www.spigotmc.org/members/vanguard.390001/
  17. awesomepeople: WheezyGold7931, cookipieman27
  18. #Links & more. Customize them to your liking!
  19. email: support@hypixel.net
  20. bug-report-link: https://hypixel.net/forums/35/
  21. player-report-link: https://hypixel.net/forums/37/
  22. help-link: https://hypixel.net/forums/5/
  23. votelink1: MinecraftServers.org
  24. votelink2: vote.hypixel.net/0
  25. quadlink: http://hypixel.net/quad
  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&lHYPIXEL" and footer to "&aRanks, Boosters & MORE! &c&l/STORE" 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: hypixel.admin
  1084. permission message: &cYou are not allowed to do this!
  1085. trigger:if argument 1 is not set:
  1086. if player's gamemode is survival:
  1087. set the player's gamemode to creative
  1088. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aCreative"
  1089. else:
  1090. set the player's gamemode to survival
  1091. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aSurvival"
  1092. else:
  1093. if arg-1's gamemode is survival:
  1094. set the arg-1's gamemode to creative
  1095. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aCreative"
  1096. else:
  1097. set the arg-1's gamemode to survival
  1098. send "%{Hypixel.rank.%player%}%%player%&e's Gamemode is now &aSurvival"
  1099.  
  1100. command /games:
  1101. trigger:
  1102. open chest with 6 rows named "Game Menu" to player
  1103. wait 1 tick
  1104. 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!"]
  1105. 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."]
  1106.  
  1107. command /profile:
  1108. trigger:
  1109. set {_p} to "%player%" parsed as player
  1110. open chest with 5 rows named "My Profile" to player
  1111. wait 1 tick
  1112. 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."]
  1113. 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."]
  1114. 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."]
  1115. 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"]
  1116. 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%"]
  1117. 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"]
  1118. 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"]
  1119. 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!"]
  1120. 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?"]
  1121.  
  1122. command /lobbies:
  1123. trigger:
  1124. open chest with 4 rows named "Main Lobby Selector" to player
  1125. wait 1 tick
  1126. 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!"]
  1127.  
  1128. command /guildmenu:
  1129. trigger:
  1130. open chest with 4 rows named "Guilds" to player
  1131. wait 1 tick
  1132. 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>"]
  1133. 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>"]
  1134. 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!"]
  1135. 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>"]
  1136. 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>"]
  1137. format slot 31 of player with 355 named "&cClose Menu" to close
  1138.  
  1139. command /guildshop:
  1140. trigger:
  1141. open chest with 6 rows named "Guild Shop" to player
  1142. wait 1 tick
  1143. 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!"]
  1144. 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!"]
  1145. 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!"]
  1146. 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!"]
  1147. 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!"]
  1148. 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!"]
  1149. 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!"]
  1150. 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!"]
  1151. 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!"]
  1152. 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!"]
  1153. 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!"]
  1154. 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!"]
  1155. 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!"]
  1156. 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!"]
  1157. 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!"]
  1158. 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!"]
  1159. 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!"]
  1160. 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!"]
  1161. 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!"]
  1162. 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!"]
  1163. 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!"]
  1164. 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!"]
  1165. 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!"]
  1166. 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!"]
  1167. 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!"]
  1168. 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!"]
  1169. 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!"]
  1170. 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!"]
  1171. 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!"]
  1172. 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!"]
  1173. 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!"]
  1174. 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!"]
  1175.  
  1176. on join:
  1177. wait 20 seconds
  1178. make console execute command "sound VILLAGER_IDLE %player%"
  1179. send "&f"
  1180. send "&cWe noticed you haven't claimed your free Daily Reward yet!"
  1181. send "&6To choose your reward you have to click the link to visit our"
  1182. send " &6website! As a reminder, here's your link for today:"
  1183. send "&bhttp://rewards.hypixel.net/claim-reward/0"
  1184. send "&f"
  1185.  
  1186. command /guild [<text>] [<text>] [<text>]:
  1187. executable by: players
  1188. trigger:
  1189. if argument 1 is not set:
  1190. message "&9-----------------------------------------------------"
  1191. message "&aGuild Commands: &c(Beta)"
  1192. message "&e/guild help &b- Prints this help message"
  1193. message "&e/guild create <name> &b- Creates a guild with the specified name"
  1194. message "&e/guild invite <player> &b- Invites the player to your guild"
  1195. message "&e/guild join <guild> &b- Join the guild with invitation"
  1196. message "&e/guild help &b- Leaves your current guild"
  1197. message "&9-----------------------------------------------------"
  1198. if argument 1 is "help":
  1199. message "&9-----------------------------------------------------"
  1200. message "&aGuild Commands: &c(Beta)"
  1201. message "&e/guild help &b- Prints this help message"
  1202. message "&e/guild create <name> &b- Creates a guild with the specified name"
  1203. message "&e/guild invite <player> &b- Invites the player to your guild"
  1204. message "&e/guild join <guild> &b- Join the guild with invitation"
  1205. message "&e/guild help &b- Leaves your current guild"
  1206. message "&9-----------------------------------------------------"
  1207. if argument 1 is "create":
  1208. if player has permission "Hypixelguild.create":
  1209. if argument 2 is set:
  1210. if {Hypixelguild.clandb.%argument 2%} isn't set:
  1211. set {Hypixelguild.clandb.%argument 2%} to true
  1212. set {Hypixelguild.clandb.%argument 2%.leader} to "%uuid of player%"
  1213. set {Hypixelguild.playerdb.%uuid of player%.clan} to "%argument 2%"
  1214. message "&cSuccessfuly created the &2%argument 2% &cGuild!" to player
  1215. make console execute command "nte player %player% suffix &7 &7[%argument 2%]"
  1216. set {Hypixel.guild.%player%} to "%argument 2%"
  1217. set {Hypixel.guildrank.%player%} to "Guild Master"
  1218. stop
  1219. message "&cThe Guild &2%argument 2% &calready exists!" to player
  1220. stop
  1221. message "&cYou must specify a Guild Name!" to player
  1222. stop
  1223. message "&cYou have no permission to create a Guild!" to player
  1224. stop
  1225. if argument 1 is "invite":
  1226. if argument 2 is set:
  1227. if {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.leader} is "%uuid of player%":
  1228. if player has permission "Hypixelguild.invite":
  1229. set {Hypixelguild.playerdb.%uuid of argument 2 parsed as an offline player%.invited.%{Hypixelguild.playerdb.clan}%} to true
  1230. message "&b-----------------------------------------------------" to player
  1231. message "&eYou invited %{Hypixel.rank.%arg 2%}%%{Hypixel.rankcolor.%arg 2%}%%arg 2% &eto your guild. They have 5"
  1232. message " &eminutes to accept." to player
  1233. message "&b-----------------------------------------------------" to player
  1234. stop
  1235. message "&cYou have no permission to invite players to your Guild!" to player
  1236. stop
  1237. message "&cYou must be the Guild Leader to invite other players!" to player
  1238. stop
  1239. message "&cPlease specify a player to invite to your guild." to player
  1240. stop
  1241. if argument 1 is "join":
  1242. if argument 2 is set:
  1243. if {Hypixelguild.playerdb.%player%.invited.%argument 2%} is true:
  1244. if {Hypixelguild.playerdb.%player%.clan} is not set:
  1245. if player has permission "Hypixelguild.join":
  1246. set {Hypixelguild.playerdb.%player%.clan} to "%argument 2%"
  1247. message "&aJoined &2%argument 2%"
  1248. make console execute command "nte player %player% suffix &7 &7[%argument 2%]"
  1249. set {Hypixel.guild.%player%} to "%argument 2%"
  1250. set {Hypixel.guildrank.%player%} to "Guild Member"
  1251. delete {Hypixelguild.playerdb.%player%.invited.%argument 2%}
  1252. add "%uuid of player%" to {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.members::*}
  1253. stop
  1254. message "&cYou have no permission to join Guilds!" to player
  1255. stop
  1256. message "&cYou are already in the &2%{Hypixelguild.playerdb.%player%.clan}% &cGuild!"
  1257. stop
  1258. message "&cYou aren't invited to &2%argument 2%"
  1259. stop
  1260. message "&cYou have to specify the Guild you would like to join!" to player
  1261. if argument 1 is "leave":
  1262. if {Hypixelguild.playerdb.%player%.clan} is set:
  1263. if {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.leader} is "%uuid of player%":
  1264. loop {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%.members::*}:
  1265. delete {Hypixelguild.playerdb.%loop-index%.clan}
  1266. delete {Hypixelguild.clandb.%{Hypixelguild.playerdb.%uuid of player%.clan}%}
  1267. make console execute command "nte player %player% suffix &7"
  1268. delete {Hypixelguild.playerdb.%player%.clan}
  1269. stop
  1270. message "&cYou are not in a Guild." to player
  1271. stop
  1272.  
  1273. on join:
  1274. if {Hypixel.rank.%player%} is "&b[MVP&c+&b] ":
  1275. broadcast "&c"
  1276. broadcast "&b[MVP&c+&b] %player% &6joined the lobby!"
  1277. broadcast "&c"
  1278. if {Hypixel.rank.%player%} is "&b[MVP&6+&b] ":
  1279. broadcast "&c"
  1280. broadcast "&b[MVP&6+&b] %player% &6joined the lobby!"
  1281. broadcast "&c"
  1282. if {Hypixel.rank.%player%} is "&b[MVP&4+&b] ":
  1283. broadcast "&c"
  1284. broadcast "&b[MVP&4+&b] %player% &6joined the lobby!"
  1285. broadcast "&c"
  1286. if {Hypixel.rank.%player%} is "&b[MVP&a+&b] ":
  1287. broadcast "&c"
  1288. broadcast "&b[MVP&a+&b] %player% &6joined the lobby!"
  1289. broadcast "&c"
  1290. if {Hypixel.rank.%player%} is "&b[MVP&d+&b] ":
  1291. broadcast "&c"
  1292. broadcast "&b[MVP&d+&b] %player% &6joined the lobby!"
  1293. broadcast "&c"
  1294. if {Hypixel.rank.%player%} is "&b[MVP&3+&b] ":
  1295. broadcast "&c"
  1296. broadcast "&b[MVP&3+&b] %player% &6joined the lobby!"
  1297. broadcast "&c"
  1298. if {Hypixel.rank.%player%} is "&b[MVP&e+&b] ":
  1299. broadcast "&c"
  1300. broadcast "&b[MVP&e+&b] %player% &6joined the lobby!"
  1301. broadcast "&c"
  1302. if {Hypixel.rank.%player%} is "&b[MVP&f+&b] ":
  1303. broadcast "&c"
  1304. broadcast "&b[MVP&f+&b] %player% &6joined the lobby!"
  1305. broadcast "&c"
  1306. if {Hypixel.rank.%player%} is "&b[MVP&9+&b] ":
  1307. broadcast "&c"
  1308. broadcast "&b[MVP&9+&b] %player% &6joined the lobby!"
  1309. broadcast "&c"
  1310. if {Hypixel.rank.%player%} is "&b[MVP&2+&b] ":
  1311. broadcast "&c"
  1312. broadcast "&b[MVP&2+&b] %player% &6joined the lobby!"
  1313. broadcast "&c"
  1314. if {Hypixel.rank.%player%} is "&b[MVP&5+&b] ":
  1315. broadcast "&c"
  1316. broadcast "&b[MVP&5+&b] %player% &6joined the lobby!"
  1317. broadcast "&c"
  1318. if {Hypixel.rank.%player%} is "&b[MVP&8+&b] ":
  1319. broadcast "&c"
  1320. broadcast "&b[MVP&8+&b] %player% &6joined the lobby!"
  1321. broadcast "&c"
  1322. if {Hypixel.rank.%player%} is "&b[MVP&0+&b] ":
  1323. broadcast "&c"
  1324. broadcast "&b[MVP&0+&b] %player% &6joined the lobby!"
  1325. broadcast "&c"
  1326. if {Hypixel.rank.%player%} is "&c[ADMIN] ":
  1327. broadcast "&c"
  1328. broadcast "&c[ADMIN] %player% &6joined the lobby!"
  1329. broadcast "&c"
  1330. if {Hypixel.rank.%player%} is "&6[YT] ":
  1331. broadcast "&c"
  1332. broadcast "&6[YT] %player% &6joined the lobby!"
  1333. broadcast "&c"
  1334. if {Hypixel.rank.%player%} is "&5[BETA TESTER] ":
  1335. broadcast "&c"
  1336. broadcast "&5[BETA TESTER] %player% &6joined the lobby!"
  1337. broadcast "&c"
  1338. if {Hypixel.rank.%player%} is "&e[GOD] ":
  1339. broadcast "&c"
  1340. broadcast "&e[GOD] %player% &6joined the lobby!"
  1341. broadcast "&c"
  1342. if {Hypixel.rank.%player%} is "&c[RETIRED] ":
  1343. broadcast "&c"
  1344. broadcast "&c[RETIRED] %player% &6joined the lobby!"
  1345. broadcast "&c"
  1346. if {Hypixel.rank.%player%} is "&9[JR HELPER] ":
  1347. broadcast "&c"
  1348. broadcast "&9[JR HELPER] %player% &6joined the lobby!"
  1349. broadcast "&c"
  1350. if {Hypixel.rank.%player%} is "&9[HELPER] ":
  1351. broadcast "&c"
  1352. broadcast "&9[HELPER] %player% &6joined the lobby!"
  1353. broadcast "&c"
  1354. if {Hypixel.rank.%player%} is "&2[MOD] ":
  1355. broadcast "&c"
  1356. broadcast "&2[MOD] %player% &6joined the lobby!"
  1357. broadcast "&c"
  1358. if {Hypixel.rank.%player%} is "&c[&aMC&fProHosting&c] ":
  1359. broadcast "&c"
  1360. broadcast "&c[&aMC&fProHosting&c] %player% &6joined the lobby!"
  1361. broadcast "&c"
  1362. if {Hypixel.rank.%player%} is "&3[BUILD TEAM] ":
  1363. broadcast "&c"
  1364. broadcast "&3[BUILD TEAM] %player% &6joined the lobby!"
  1365. broadcast "&c"
  1366. if {Hypixel.rank.%player%} is "&6[MOJANG] ":
  1367. broadcast "&c"
  1368. broadcast "&6[MOJANG] %player% &6joined the lobby!"
  1369. broadcast "&c"
  1370. if {Hypixel.rank.%player%} is "&c[SLOTH] ":
  1371. broadcast "&c"
  1372. broadcast "&c[SLOTH] %player% &6joined the lobby!"
  1373. broadcast "&c"
  1374. if {Hypixel.rank.%player%} is "&c[OWNER] ":
  1375. broadcast "&c"
  1376. broadcast "&c[OWNER] %player% &6joined the lobby!"
  1377. broadcast "&c"
  1378. send "&e%player% joined."
  1379.  
  1380. on join:
  1381. set join message to ""
  1382.  
  1383. on quit:
  1384. set quit message to ""
  1385.  
  1386. command /verify [<player>]:
  1387. permission: Hypixel.admin
  1388. permission message: &cYou are not allowed to do this!
  1389. trigger:
  1390. if argument 1 is not set:
  1391. send "&cUsage: /verify <player>"
  1392. else if argument 1 is set:
  1393. send "&aVerified %{Hypixel.rankcolor.%arg 1%}%%arg 1%"
  1394. send "&a&kK&r&a>> &aAchievement Unlocked: &6Verified &a<<&kK&r" to argument 1
  1395. add 1 to {apoints.%arg 1%}
  1396. make console execute command "sound LEVEL_UP %arg 1%"
  1397. wait 0.7 seconds
  1398. send "&d+250 Karma" to argument 1
  1399. add 250 to {karma.%arg 1%}
  1400. set {verify.%arg 1%} to "&aVerified"
  1401.  
  1402. command /rank [<string>] [<player>]:
  1403. permission: Hypixel.admin
  1404. permission message: &cYou are not allowed to do this!
  1405. trigger:
  1406. if argument 1 is not set:
  1407. send "&c[HYPIXEL] Rank System is up to date!"
  1408. send "&6/rank <rank> <player>: &eUpdates chosen player's rank to the chosen rank."
  1409. send "&6Ranks: &fMember VIP VIP+ MVP MVP+ YT BETA_TESTER GOD RETIRED JR_HELPER HELPER MOD MCProHosting BUILD_TEAM MOJANG SLOTH ADMIN OWNER"
  1410. else if argument 1 is "Member":
  1411. if argument 2 is set:
  1412. send "&aYour rank has been updated to &7Member&c!"
  1413. set {Hypixel.rankcolor.%arg-2%} to "&7"
  1414. set {Hypixel.rank.%arg-2%} to "&7"
  1415. set {Hypixel.tabrank.%arg-2%} to "&7Default"
  1416. make console execute command "nte player %arg-2% prefix &7"
  1417. set {Hypixel.chatformat.%arg-2%} to "&7:"
  1418. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1419. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1420. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1421. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1422. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1423. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1424. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1425. make console execute command "pex user %arg 2% remove Hypixel.vip+"
  1426. make console execute command "pex user %arg 2% remove Hypixel.vip"
  1427. make console execute command "pex user %arg 2% add Hypixel.default"
  1428. else:
  1429. send "&cInvalid usage!"
  1430. else if argument 1 is "VIP":
  1431. if argument 2 is set:
  1432. send "&aYour rank has been updated to &a[VIP]&c!"
  1433. set {Hypixel.rankcolor.%arg-2%} to "&a"
  1434. set {Hypixel.rank.%arg-2%} to "&a[VIP] "
  1435. set {Hypixel.tabrank.%arg-2%} to "&aVIP"
  1436. make console execute command "nte player %arg-2% prefix &a[VIP] &a"
  1437. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1438. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1439. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1440. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1441. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1442. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1443. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1444. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1445. make console execute command "pex user %arg 2% remove Hypixel.vip+"
  1446. make console execute command "pex user %arg 2% add Hypixel.vip"
  1447. make console execute command "pex user %arg 2% add Hypixel.default"
  1448. else:
  1449. send "&cInvalid usage!"
  1450. else if argument 1 is "VIP+":
  1451. if argument 2 is set:
  1452. send "&aYour rank has been updated to &a[VIP&6+&a]&c!"
  1453. set {Hypixel.rankcolor.%arg-2%} to "&a"
  1454. set {Hypixel.rank.%arg-2%} to "&a[VIP&6+&a] &a"
  1455. set {Hypixel.tabrank.%arg-2%} to "&aVIP&6+"
  1456. make console execute command "nte player %arg-2% prefix &a[VIP&6+&a] &a"
  1457. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1458. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1459. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1460. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1461. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1462. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1463. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1464. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1465. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1466. make console execute command "pex user %arg 2% add Hypixel.vip"
  1467. make console execute command "pex user %arg 2% add Hypixel.default"
  1468. else:
  1469. send "&cInvalid usage!"
  1470. else if argument 1 is "MVP":
  1471. if argument 2 is set:
  1472. send "&aYour rank has been updated to &b[MVP]&c!"
  1473. set {Hypixel.rankcolor.%arg-2%} to "&b"
  1474. set {Hypixel.rank.%arg-2%} to "&b[MVP] "
  1475. set {Hypixel.tabrank.%arg-2%} to "&bMVP"
  1476. make console execute command "nte player %arg-2% prefix &b[MVP] &b"
  1477. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1478. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1479. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1480. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1481. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1482. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1483. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1484. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1485. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1486. make console execute command "pex user %arg 2% add Hypixel.vip"
  1487. make console execute command "pex user %arg 2% add Hypixel.default"
  1488. else:
  1489. send "&cInvalid usage!"
  1490. else if argument 1 is "MVP+":
  1491. if argument 2 is set:
  1492. send "&aYour rank has been updated to &b[MVP&c+&b]&c!"
  1493. set {Hypixel.rankcolor.%arg-2%} to "&b"
  1494. set {Hypixel.rank.%arg-2%} to "&b[MVP&c+&b] "
  1495. set {Hypixel.tabrank.%arg-2%} to "&bMVP&c+"
  1496. make console execute command "nte player %arg-2% prefix &b[MVP&c+&b] &b"
  1497. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1498. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1499. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1500. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1501. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1502. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1503. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1504. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1505. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1506. make console execute command "pex user %arg 2% add Hypixel.vip"
  1507. make console execute command "pex user %arg 2% add Hypixel.default"
  1508. else:
  1509. send "&cInvalid usage!"
  1510. else if argument 1 is "YT":
  1511. if argument 2 is set:
  1512. send "&aYour rank has been updated to &6[YT]&c!"
  1513. set {Hypixel.rankcolor.%arg-2%} to "&6"
  1514. set {Hypixel.rank.%arg-2%} to "&6[YT] &6"
  1515. set {Hypixel.tabrank.%arg-2%} to "&6YT"
  1516. make console execute command "nte player %arg-2% prefix &6[YT] &6"
  1517. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1518. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1519. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1520. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1521. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1522. make console execute command "pex user %arg 2% add Hypixel.yt"
  1523. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1524. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1525. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1526. make console execute command "pex user %arg 2% add Hypixel.vip"
  1527. make console execute command "pex user %arg 2% add Hypixel.default"
  1528. else:
  1529. send "&cInvalid usage!"
  1530. else if argument 1 is "GOD":
  1531. if argument 2 is set:
  1532. send "&aYour rank has been updated to &b[MVP&c+&b]&c!"
  1533. set {Hypixel.rankcolor.%arg-2%} to "&e"
  1534. set {Hypixel.rank.%arg-2%} to "&e[GOD] "
  1535. set {Hypixel.tabrank.%arg-2%} to "&eGOD"
  1536. make console execute command "nte player %arg-2% prefix &e[GOD] &e"
  1537. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1538. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1539. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1540. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1541. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1542. make console execute command "pex user %arg 2% add Hypixel.yt"
  1543. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1544. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1545. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1546. make console execute command "pex user %arg 2% add Hypixel.vip"
  1547. make console execute command "pex user %arg 2% add Hypixel.default"
  1548. else:
  1549. send "&cInvalid usage!"
  1550. else if argument 1 is "BETA_TESTER":
  1551. if argument 2 is set:
  1552. send "&aYour rank has been updated to &5[BETA TESTER]&c!"
  1553. set {Hypixel.rankcolor.%arg-2%} to "&5"
  1554. set {Hypixel.rank.%arg-2%} to "&5[BETA TESTER] "
  1555. set {Hypixel.tabrank.%arg-2%} to "&5BETA TESTER"
  1556. make console execute command "nte player %arg-2% prefix &5[BETA TESTER]"
  1557. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1558. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1559. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1560. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1561. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1562. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1563. make console execute command "pex user %arg 2% remove Hypixel.mvp+"
  1564. make console execute command "pex user %arg 2% remove Hypixel.mvp"
  1565. make console execute command "pex user %arg 2% remove Hypixel.vip+"
  1566. make console execute command "pex user %arg 2% remove Hypixel.vip"
  1567. make console execute command "pex user %arg 2% add Hypixel.default"
  1568. else:
  1569. send "&cInvalid usage!"
  1570. else if argument 1 is "JR_HELPER":
  1571. if argument 2 is set:
  1572. send "&aYour rank has been updated to &9[JR HELPER]&c!"
  1573. set {Hypixel.rankcolor.%arg-2%} to "&9"
  1574. set {Hypixel.rank.%arg-2%} to "&9[JR HELPER] "
  1575. set {Hypixel.tabrank.%arg-2%} to "&9JR HELPER"
  1576. make console execute command "nte player %arg-2% prefix &9[JR HELPER] &9"
  1577. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1578. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1579. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1580. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1581. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1582. make console execute command "pex user %arg 2% add Hypixel.yt"
  1583. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1584. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1585. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1586. make console execute command "pex user %arg 2% add Hypixel.vip"
  1587. make console execute command "pex user %arg 2% add Hypixel.default"
  1588. else:
  1589. send "&cInvalid usage!"
  1590. else if argument 1 is "RETIRED":
  1591. if argument 2 is set:
  1592. send "&aYour rank has been updated to &c[RETIRED]&c!"
  1593. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1594. set {Hypixel.rank.%arg-2%} to "&c[RETIRED] "
  1595. set {Hypixel.tabrank.%arg-2%} to "&cRETIRED"
  1596. make console execute command "nte player %arg-2% prefix &c[RETIRED] &c"
  1597. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1598. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1599. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1600. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1601. make console execute command "pex user %arg 2% remove Hypixel.jrhelper"
  1602. make console execute command "pex user %arg 2% remove Hypixel.yt"
  1603. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1604. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1605. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1606. make console execute command "pex user %arg 2% add Hypixel.vip"
  1607. make console execute command "pex user %arg 2% add Hypixel.default"
  1608. else:
  1609. send "&cInvalid usage!"
  1610. else if argument 1 is "HELPER":
  1611. if argument 2 is set:
  1612. send "&aYour rank has been updated to &9[HELPER]&c!"
  1613. set {Hypixel.rankcolor.%arg-2%} to "&9"
  1614. set {Hypixel.rank.%arg-2%} to "&9[HELPER] "
  1615. set {Hypixel.tabrank.%arg-2%} to "&9HELPER"
  1616. make console execute command "nte player %arg-2% prefix &9[HELPER] &9"
  1617. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1618. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1619. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1620. make console execute command "pex user %arg 2% add Hypixel.helper"
  1621. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1622. make console execute command "pex user %arg 2% add Hypixel.yt"
  1623. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1624. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1625. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1626. make console execute command "pex user %arg 2% add Hypixel.vip"
  1627. make console execute command "pex user %arg 2% add Hypixel.default"
  1628. else:
  1629. send "&cInvalid usage!"
  1630. else if argument 1 is "MOD":
  1631. if argument 2 is set:
  1632. send "&aYour rank has been updated to &2[MOD]&c!"
  1633. set {Hypixel.rankcolor.%arg-2%} to "&2"
  1634. set {Hypixel.rank.%arg-2%} to "&2[MOD] "
  1635. set {Hypixel.tabrank.%arg-2%} to "&2MOD"
  1636. make console execute command "nte player %arg-2% prefix &2[MOD] &2"
  1637. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1638. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1639. make console execute command "pex user %arg 2% add Hypixel.mod"
  1640. make console execute command "pex user %arg 2% add Hypixel.helper"
  1641. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1642. make console execute command "pex user %arg 2% add Hypixel.yt"
  1643. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1644. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1645. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1646. make console execute command "pex user %arg 2% add Hypixel.vip"
  1647. make console execute command "pex user %arg 2% add Hypixel.default"
  1648. else:
  1649. send "&cInvalid usage!"
  1650. else if argument 1 is "MCProHosting":
  1651. if argument 2 is set:
  1652. send "&aYour rank has been updated to &c[MCProHosting]c!"
  1653. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1654. set {Hypixel.rank.%arg-2%} to "&c[&aMC&fProHosting&c] "
  1655. set {Hypixel.tabrank.%arg-2%} to "&aMC&fProHosting"
  1656. make console execute command "nte player %arg-2% prefix &c[MCProHosting]"
  1657. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1658. make console execute command "pex user %arg 2% add Hypixel.admin"
  1659. make console execute command "pex user %arg 2% add Hypixel.mod"
  1660. make console execute command "pex user %arg 2% add Hypixel.helper"
  1661. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1662. make console execute command "pex user %arg 2% add Hypixel.yt"
  1663. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1664. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1665. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1666. make console execute command "pex user %arg 2% add Hypixel.vip"
  1667. make console execute command "pex user %arg 2% add Hypixel.default"
  1668. else:
  1669. send "&cInvalid usage!"
  1670. else if argument 1 is "BUILD_TEAM":
  1671. if argument 2 is set:
  1672. send "&aYour rank has been updated to &3[BUILD TEAM]c!"
  1673. set {Hypixel.rankcolor.%arg-2%} to "&3"
  1674. set {Hypixel.rank.%arg-2%} to "&3[BUILD TEAM] "
  1675. set {Hypixel.tabrank.%arg-2%} to "&3BUILD TEAM"
  1676. make console execute command "nte player %arg-2% prefix &3[BUILD TEAM]"
  1677. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1678. make console execute command "pex user %arg 2% remove Hypixel.admin"
  1679. make console execute command "pex user %arg 2% remove Hypixel.mod"
  1680. make console execute command "pex user %arg 2% remove Hypixel.helper"
  1681. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1682. make console execute command "pex user %arg 2% add Hypixel.yt"
  1683. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1684. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1685. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1686. make console execute command "pex user %arg 2% add Hypixel.vip"
  1687. make console execute command "pex user %arg 2% add Hypixel.default"
  1688. else:
  1689. send "&cInvalid usage!"
  1690. else if argument 1 is "MOJANG":
  1691. if argument 2 is set:
  1692. send "&aYour rank has been updated to &6[MOJANG]c!"
  1693. set {Hypixel.rankcolor.%arg-2%} to "&6"
  1694. set {Hypixel.rank.%arg-2%} to "&6[MOJANG] "
  1695. set {Hypixel.tabrank.%arg-2%} to "&6MOJANG"
  1696. make console execute command "nte player %arg-2% prefix &6[MOJANG] &6"
  1697. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1698. make console execute command "pex user %arg 2% add Hypixel.admin"
  1699. make console execute command "pex user %arg 2% add Hypixel.mod"
  1700. make console execute command "pex user %arg 2% add Hypixel.helper"
  1701. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1702. make console execute command "pex user %arg 2% add Hypixel.yt"
  1703. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1704. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1705. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1706. make console execute command "pex user %arg 2% add Hypixel.vip"
  1707. make console execute command "pex user %arg 2% add Hypixel.default"
  1708. else:
  1709. send "&cInvalid usage!"
  1710. else if argument 1 is "SLOTH":
  1711. if argument 2 is set:
  1712. send "&aYour rank has been updated to &c[SLOTH]&c!"
  1713. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1714. set {Hypixel.rank.%arg-2%} to "&c[SLOTH] "
  1715. set {Hypixel.tabrank.%arg-2%} to "&cSLOTH"
  1716. make console execute command "nte player %arg-2% prefix &c[SLOTH] &c"
  1717. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1718. make console execute command "pex user %arg 2% add Hypixel.admin"
  1719. make console execute command "pex user %arg 2% add Hypixel.mod"
  1720. make console execute command "pex user %arg 2% add Hypixel.helper"
  1721. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1722. make console execute command "pex user %arg 2% add Hypixel.yt"
  1723. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1724. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1725. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1726. make console execute command "pex user %arg 2% add Hypixel.vip"
  1727. make console execute command "pex user %arg 2% add Hypixel.default"
  1728. else:
  1729. send "&cInvalid usage!"
  1730. else if argument 1 is "EVENTS":
  1731. if argument 2 is set:
  1732. send "&aYour rank has been updated to &6[EVENTS]&c!"
  1733. set {Hypixel.rankcolor.%arg-2%} to "&6"
  1734. set {Hypixel.rank.%arg-2%} to "&6[EVENTS] "
  1735. set {Hypixel.tabrank.%arg-2%} to "&6EVENTS"
  1736. make console execute command "nte player %arg-2% prefix &6[EVENTS] &6"
  1737. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1738. make console execute command "pex user %arg 2% add Hypixel.admin"
  1739. make console execute command "pex user %arg 2% add Hypixel.mod"
  1740. make console execute command "pex user %arg 2% add Hypixel.helper"
  1741. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1742. make console execute command "pex user %arg 2% add Hypixel.yt"
  1743. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1744. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1745. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1746. make console execute command "pex user %arg 2% add Hypixel.vip"
  1747. make console execute command "pex user %arg 2% add Hypixel.default"
  1748. else:
  1749. send "&cInvalid usage!"
  1750. else if argument 1 is "ADMIN":
  1751. if argument 2 is set:
  1752. send "&aYour rank has been updated to &c[ADMIN]&c!"
  1753. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1754. set {Hypixel.rank.%arg-2%} to "&c[ADMIN] "
  1755. set {Hypixel.tabrank.%arg-2%} to "&cADMIN"
  1756. make console execute command "nte player %arg-2% prefix &c[ADMIN] &c"
  1757. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1758. make console execute command "pex user %arg 2% add Hypixel.admin"
  1759. make console execute command "pex user %arg 2% add Hypixel.mod"
  1760. make console execute command "pex user %arg 2% add Hypixel.helper"
  1761. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1762. make console execute command "pex user %arg 2% add Hypixel.yt"
  1763. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1764. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1765. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1766. make console execute command "pex user %arg 2% add Hypixel.vip"
  1767. make console execute command "pex user %arg 2% add Hypixel.default"
  1768. else:
  1769. send "&cInvalid usage!"
  1770. else if argument 1 is "OWNER":
  1771. if argument 2 is set:
  1772. send "&aYour rank has been updated to &c[OWNER]&c!"
  1773. set {Hypixel.rankcolor.%arg-2%} to "&c"
  1774. set {Hypixel.rank.%arg-2%} to "&c[OWNER] "
  1775. set {Hypixel.tabrank.%arg-2%} to "&cOWNER"
  1776. make console execute command "nte player %arg-2% prefix &c[OWNER] &c"
  1777. set {Hypixel.chatformat.%arg-2%} to "&f:"
  1778. make console execute command "pex user %arg 2% add Hypixel.admin"
  1779. make console execute command "pex user %arg 2% add Hypixel.mod"
  1780. make console execute command "pex user %arg 2% add Hypixel.helper"
  1781. make console execute command "pex user %arg 2% add Hypixel.jrhelper"
  1782. make console execute command "pex user %arg 2% add Hypixel.yt"
  1783. make console execute command "pex user %arg 2% add Hypixel.mvp+"
  1784. make console execute command "pex user %arg 2% add Hypixel.mvp"
  1785. make console execute command "pex user %arg 2% add Hypixel.vip+"
  1786. make console execute command "pex user %arg 2% add Hypixel.vip"
  1787. make console execute command "pex user %arg 2% add Hypixel.default"
  1788. else:
  1789. send "&cInvalid usage!"
  1790. else:
  1791. send "&cInvalid usage!"
  1792.  
  1793. command /rankcolor:
  1794. aliases: /colorrank
  1795. trigger:
  1796. 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] ":
  1797. send "&cYou must be of the &bMVP&c+ &crank to use this command!"
  1798. 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] ":
  1799. open chest with 4 rows named "MVP+ Rank Color" to player
  1800. wait 1 tick
  1801. 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%"]
  1802. 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%"]
  1803. 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%"]
  1804. 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%"]
  1805. 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%"]
  1806. 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%"]
  1807. 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%"]
  1808. 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%"]
  1809. 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%"]
  1810. 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%"]
  1811. 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%"]
  1812. 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%"]
  1813. 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%"]
  1814.  
  1815. command /setspawn:
  1816. permission: Hypixel.setspawn
  1817. permission message: &cSorry, but you don't have permission to execute this command!
  1818. trigger:
  1819. message "&cSet spawn to your current location!"
  1820. set {spawn} to location of player
  1821.  
  1822. on join:
  1823. if {spawn} is set:
  1824. teleport player to {spawn}
  1825.  
  1826. every 2 seconds:
  1827. if {hypixel.usescoreboard} is false:
  1828. stop
  1829. else:
  1830. loop all players:
  1831. wipe loop-player's sidebar
  1832. set name of sidebar of loop-player to "&e&lHYPIXEL"
  1833. set score "&8 " in sidebar of loop-player to 13
  1834. set score "&fRank: %{Hypixel.tabrank.%loop-player%}%" in sidebar of loop-player to 12
  1835. set score "&fMystery Dust: &a0" in sidebar of loop-player to 11
  1836. set score "&fAchievements: &a%{apoints.%loop-player%}%" in sidebar of loop-player to 10
  1837. set score "&fLevel: &a%{Hypixel.level.%loop-player%}%" in sidebar of loop-player to 9
  1838. set score "&b" in sidebar of loop-player to 8
  1839. set score "&fRewards Found:" in sidebar of loop-player to 7
  1840. set score "&c%{rewards.%loop-player%}%&a/34" in sidebar of loop-player to 6
  1841. set score "&f" in sidebar of loop-player to 5
  1842. set score "&fLobby: &a##1" in sidebar of loop-player to 4
  1843. set score "&fPlayers: &a%{onlineplayers}%" in sidebar of loop-player to 3
  1844. set score "&f" in sidebar of loop-player to 2
  1845. set score "&ewww.hypixel.net" in sidebar of loop-player to 1
  1846.  
  1847. command /level [<player>] [<integer>]:
  1848. permission: Hypixel.admin
  1849. permission message: &cYou are not allowed to do this!
  1850. trigger:
  1851. if arg 1 is set:
  1852. if arg 2 is set:
  1853. if arg 2 is less than 0:
  1854. set {_temp} to "%arg-2%"
  1855. make console execute command "/xp -9999L %arg-1%"
  1856. make console execute command "/xp %{_temp}%L %arg-1%"
  1857. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1858. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1859. send "&f" to argument 1
  1860. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1861. send "&f" to argument 1
  1862. send " &eClaim your reward in the lobby!" to argument 1
  1863. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1864. make console execute command "sound LEVEL_UP %arg 1%"
  1865. add 1 to {claim.%arg 1%}
  1866. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1867. send "&eClick here to view them!" to argument 1
  1868. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1869. send "&aSet %arg-1% level to &e%arg-2%&a."
  1870. stop
  1871. else if arg 2 is less than 20:
  1872. set {_temp} to "%arg-2%"
  1873. make console execute command "/xp -9999L %arg-1%"
  1874. make console execute command "/xp %{_temp}%L %arg-1%"
  1875. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1876. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1877. send "&f" to argument 1
  1878. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1879. send "&f" to argument 1
  1880. send " &eClaim your reward in the lobby!" to argument 1
  1881. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1882. make console execute command "sound LEVEL_UP %arg 1%"
  1883. add 1 to {claim.%arg 1%}
  1884. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1885. send "&eClick here to view them!" to argument 1
  1886. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1887. send "&aSet %arg-1% level to &e%arg-2%&a."
  1888. stop
  1889. else if arg 2 is less than 40:
  1890. set {_temp} to "%arg-2%"
  1891. make console execute command "/xp -9999L %arg-1%"
  1892. make console execute command "/xp %{_temp}%L %arg-1%"
  1893. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1894. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1895. send "&f" to argument 1
  1896. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1897. send "&f" to argument 1
  1898. send " &eClaim your reward in the lobby!" to argument 1
  1899. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1900. make console execute command "sound LEVEL_UP %arg 1%"
  1901. add 1 to {claim.%arg 1%}
  1902. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1903. send "&eClick here to view them!" to argument 1
  1904. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1905. send "&aSet %arg-1% level to &e%arg-2%&a."
  1906. stop
  1907. else if arg 2 is less than 60:
  1908. set {_temp} to "%arg-2%"
  1909. make console execute command "/xp -9999L %arg-1%"
  1910. make console execute command "/xp %{_temp}%L %arg-1%"
  1911. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1912. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1913. send "&f" to argument 1
  1914. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1915. send "&f" to argument 1
  1916. send " &eClaim your reward in the lobby!" to argument 1
  1917. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1918. make console execute command "sound LEVEL_UP %arg 1%"
  1919. add 1 to {claim.%arg 1%}
  1920. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1921. send "&eClick here to view them!" to argument 1
  1922. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1923. send "&aSet %arg-1% level to &e%arg-2%&a."
  1924. stop
  1925. else if arg 2 is less than 80:
  1926. set {_temp} to "%arg-2%"
  1927. make console execute command "/xp -9999L %arg-1%"
  1928. make console execute command "/xp %{_temp}%L %arg-1%"
  1929. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1930. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1931. send "&f" to argument 1
  1932. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1933. send "&f" to argument 1
  1934. send " &eClaim your reward in the lobby!" to argument 1
  1935. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1936. make console execute command "sound LEVEL_UP %arg 1%"
  1937. add 1 to {claim.%arg 1%}
  1938. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1939. send "&eClick here to view them!" to argument 1
  1940. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1941. send "&aSet %arg-1% level to &e%arg-2%&a."
  1942. stop
  1943. else if arg 2 is less than or equal to 250:
  1944. set {_temp} to "%arg-2%"
  1945. make console execute command "/xp -9999L %arg-1%"
  1946. make console execute command "/xp %{_temp}%L %arg-1%"
  1947. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1948. send " &a&kK&r &6LEVEL UP! &a&kK&r" to argument 1
  1949. send "&f" to argument 1
  1950. send " &7You are now &3Hypixel Level &a%arg 2%&7!" to argument 1
  1951. send "&f" to argument 1
  1952. send " &eClaim your reward in the lobby!" to argument 1
  1953. send "&a▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬" to argument 1
  1954. make console execute command "sound LEVEL_UP %arg 1%"
  1955. add 1 to {claim.%arg 1%}
  1956. send "&aYou have &b%{claim.%arg 1%}% &aunclaimed leveling rewards!" to argument 1
  1957. send "&eClick here to view them!" to argument 1
  1958. set {Hypixel.level.%arg-1%} to "%{_temp}%"
  1959. send "&aSet %arg-1% level to &e%arg-2%&a."
  1960. stop
  1961. else:
  1962. send "&cError"
  1963. else:
  1964. send "&cUsage: /level <player> <1-250>"
  1965. else:
  1966. send "&cUsage: /level <player> <1-250>"
  1967.  
  1968. on damage:
  1969. cancel event
  1970.  
  1971. command /pet [<string>] [<string>]:
  1972. trigger:
  1973. if arg 1 is not set:
  1974. send "&ePet Commands"
  1975. send " &7/pet name <name> - Rename your pet"
  1976. if arg 1 is set:
  1977. if arg 2 is set:
  1978. if arg 1 is "name":
  1979. make player execute command "/gmenu namepet &8Lv&7001 &f%arg 2%"
  1980.  
  1981. variables:
  1982. {HypixelFriendlist.%player%::*} = 0
  1983. {world.alias::*} = 0
  1984.  
  1985.  
  1986.  
  1987.  
  1988.  
  1989.  
  1990.  
  1991. command /friend [<text>] [<player>] [<text>] [<text>]:
  1992. trigger:
  1993. if arg 1 is "help":
  1994. message "&9-----------------------------------------------------"
  1995. message "&aFriend Commands:"
  1996. message "&e/friend help &b- Prints this help message"
  1997. message "&e/friend add &b- Add a player as a friend"
  1998. message "&e/friend accept &b- Accept a friend request"
  1999. message "&e/friend deny &b- Decline a friend request"
  2000. message "&e/friend list &b- List your friends"
  2001. message "&e/friend notifications &b- Toggle friend notifications"
  2002. message "&e/friend remove <player> &b- Remove a player from your friends"
  2003. message "&e/friend requests &b- View friend requests"
  2004. message "&e/friend toggle &b- Toggle Friend Requests"
  2005. message "&9-----------------------------------------------------"
  2006. if arg 1 is not set:
  2007. message "&9-----------------------------------------------------"
  2008. message "&aFriend Commands:"
  2009. message "&e/friend help &b- Prints this help message"
  2010. message "&e/friend add &b- Add a player as a friend"
  2011. message "&e/friend accept &b- Accept a friend request"
  2012. message "&e/friend deny &b- Decline a friend request"
  2013. message "&e/friend list &b- List your friends"
  2014. message "&e/friend notifications &b- Toggle friend notifications"
  2015. message "&e/friend remove <player> &b- Remove a player from your friends"
  2016. message "&e/friend requests &b- View friend requests"
  2017. message "&e/friend toggle &b- Toggle Friend Requests"
  2018. message "&9-----------------------------------------------------"
  2019. if arg 1 is "add":
  2020. if arg 2 is "%player%":
  2021. message "&9-----------------------------------------------------"
  2022. message "&cYou can't add yourself as a friend!"
  2023. message "&9-----------------------------------------------------"
  2024. else:
  2025. if {HypixelFriend.%player%.%arg 2%.block} is 1:
  2026. message "&9-----------------------------------------------------"
  2027. message "&cThat person is blocking you!"
  2028. message "&9-----------------------------------------------------"
  2029. else:
  2030. if {HypixelFriendadd.%arg 2%.%player%} is 3:
  2031. message "&cYou are already friends with %{Hypixel.rank.%arg 2%}%%arg 2%&c!"
  2032. if {HypixelFriendadd.%arg 2%.%player%} is 1:
  2033. message "&cYou've already sent %{Hypixel.rank.%arg 2%}%%arg 2% &ca request!"
  2034. if {HypixelFriendadd.%arg 2%.%player%} is 1:
  2035. else:
  2036. if {HypixelFriendadd.%arg 2%.%player%} is 3:
  2037. else:
  2038. set {HypixelFriendadd.%arg 2%.%player%} to 1
  2039. message "&9-----------------------------------------------------"
  2040. message "&eYou've sent %arg 2% a friend request!"
  2041. message "&9-----------------------------------------------------"
  2042.  
  2043. message "&9&m----------------------------------------------------&r" to arg 2
  2044. message "&eFriend request from %{Hypixel.rank.%player%}%%player%&r" to arg 2
  2045. message "&eClick one: &a&l[ACCEPT] &8- &c&l[DENY] &8- &7&l[IGNORE]" to arg 2
  2046. message "&9&m----------------------------------------------------&r" to arg 2
  2047. if arg 1 is "accept":
  2048. if {HypixelFriendadd.%player%.%arg 2%} is 1:
  2049. add player to {HypixelFriendlist.%arg 2%::*}
  2050. add arg 2 to {HypixelFriendlist.%player%::*}
  2051. set {MCF.%player%.%arg 2%} to arg 2
  2052. set {MCF.%arg 2%.%player%} to player
  2053. set {HypixelFriendadd.%player%.%arg 2%} to 3
  2054.  
  2055. message "&9-----------------------------------------------------"
  2056. message "&aYou are now friends with %{Hypixel.rank.%arg 2%}%%arg 2%"
  2057. message "&9-----------------------------------------------------"
  2058. message "&9-----------------------------------------------------" to arg 2
  2059. message "&aYou are now friends with %{Hypixel.rank.%player%}%%player%" to arg 2
  2060. message "&9-----------------------------------------------------" to arg 2
  2061. else:
  2062. message "&cThat player didn't send you a request!"
  2063. if arg 1 is "list":
  2064. message "&9-----------------------------------------------------"
  2065. message "&cThis feature is still getting worked on!"
  2066. message "&9-----------------------------------------------------"
  2067. if arg 1 is "remove":
  2068. if {HypixelFriendadd.%arg 2%.%player%} is 3:
  2069. remove arg 2 from {HypixelFriendlist.%player%::*}
  2070. remove player from {HypixelFriendlist.%arg 2%::*}
  2071. set {HypixelFriendadd.%arg 2%.%player%} to 0
  2072. clear {MCF.%arg 2%.%player%}
  2073. clear {MCF.%player%.%arg 2%}
  2074.  
  2075. message "&9-----------------------------------------------------"
  2076. message "&eYou removed %{Hypixel.rankcolor.%arg 2%}%%arg 2% &efrom your friends list!"
  2077. message "&9-----------------------------------------------------"
  2078.  
  2079. message "&9-----------------------------------------------------" to arg 2
  2080. message "%{Hypixel.rankcolor.%player%}%%player% &eremoved you from they're friends list!" to arg 2
  2081. message "&9-----------------------------------------------------" to arg 2
  2082. else:
  2083. if {HypixelFriendadd.%player%.%arg 2%} is 3:
  2084. remove arg 2 from {HypixelFriendlist.%player%::*}
  2085. remove player from {HypixelFriendlist.%arg 2%::*}
  2086. set {HypixelFriendadd.%player%.%arg 2%} to 0
  2087. message "&9-----------------------------------------------------"
  2088. message "&eYou removed %{Hypixel.rankcolor.%arg 2%}%%arg 2% &efrom your friends list!"
  2089. message "&9-----------------------------------------------------"
  2090. message "&9-----------------------------------------------------" to arg 2
  2091. message "%{Hypixel.rankcolor.%player%}%%player% &eremoved you from they're friends list!" to arg 2
  2092. message "&9-----------------------------------------------------" to arg 2
  2093. else:
  2094. message "&9-----------------------------------------------------"
  2095. message "&cYou are not friends with that player!"
  2096. message "&9-----------------------------------------------------"
  2097.  
  2098. if arg 1 is "deny":
  2099. if {HypixelFriendadd.%player%.%arg 2%} is 1:
  2100. set {HypixelFriendadd.%player%.%arg 2%} to 0
  2101. message "&9-----------------------------------------------------"
  2102. message "&eYou denied %{Hypixel.rankcolor.%arg 2%}%%arg 2%&e's request!"
  2103. message "&9-----------------------------------------------------"
  2104. message "&9-----------------------------------------------------" to arg 2
  2105. message "%{Hypixel.rankcolor.%player%}%%player% &edenied your friend request!" to arg 2
  2106. message "&9-----------------------------------------------------" to arg 2
  2107.  
  2108.  
  2109.  
  2110. if arg 1 is "block":
  2111. set {HypixelFriend.%arg 2%.%player%.block} to 1
  2112. message "&8[&6HypixelFriend&8] &aDu hast den Spieler %arg 2% nun geblockt."
  2113. if arg 1 is "entblock":
  2114. set {HypixelFriend.%arg 2%.%player%.block} to 0
  2115. message "&8[&6HypixelFriend&8] &aDu hast den Spieler %arg 2% nun entblockt."
  2116. if arg 1 is "online":
  2117. message "&8[&6HypixelFriend&8] &a-=Online=-"
  2118. loop all players:
  2119. if {HypixelFriendadd.%player%.%loop-player%} is 3:
  2120. message "&8[&6HypixelFriend&8] &a-%{MCF.%player%.%loop-player%}% &7-> &d%{%World%.n}%"
  2121. if {HypixelFriendadd.%loop-player%.%player%} is 3:
  2122. message "&8[&6HypixelFriend&8] &a-%{MCF.%player%.%loop-player%}% &7-> &d%{%World%.n}%"
  2123.  
  2124.  
  2125. if arg 1 is "world":
  2126. add arg 3 to {world.alias::*}
  2127. set {%arg 3%.n} to arg 4
  2128. message "&dDie Alias %arg 4% wurde zur Welt %arg 3% hinzugefügt."
  2129.  
  2130. command /core:
  2131. trigger:
  2132. send "&cApple Core"
  2133.  
  2134.  
  2135.  
  2136. command /msg [<player>] [<text>]:
  2137. trigger:
  2138. if argument 2 is not set:
  2139. message "&cUse: /msg (player) (message)"
  2140. else if argument 1 is not set:
  2141. message "&cUse: /msg (player) (message)"
  2142. else if {hypixel.mute.%player%} is "true":
  2143. message "&6-----------------------------------------------------"
  2144. message "&cYou are currently muted for %{hypixel.mutereason.%player%}%"
  2145. message "&6-----------------------------------------------------"
  2146. else:
  2147. message "&dTo %{Hypixel.rank.%arg 1%}%%arg 1%&7: %arg 2%"
  2148. message "&dFrom %{Hypixel.rank.%player%}%%player%&7: %arg 2%" to arg 1
  2149.  
  2150. #Watchdog
  2151.  
  2152. on connect:
  2153. if {Hypixelban.%player%} is "true":
  2154. 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"
  2155.  
  2156.  
  2157. command /watchdogban [<offlineplayer>] [<text>]:
  2158. permission: Hypixel.admin
  2159. permission message: &cYou are not allowed to do this!
  2160. trigger:
  2161. if executor is a player or console:
  2162. if arg 1 is set:
  2163. if arg 2 is set:
  2164. 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"
  2165. broadcast "&f[WATCHDOG] &c%arg 1% has been removed from your game."
  2166. add 1 to {watchdogbans}
  2167. set {Hypixelban.%arg 1%} to "true"
  2168. set {Hypixelbanreason.%arg 1%} to "%arg 2%"
  2169. set {Hypixel.lastban.%arg 1%} to "%arg 2%"
  2170. else:
  2171. send "&cUsage: &c/watchdogban <player> <reason>"
  2172. else:
  2173. send "&cUsage: &c/watchdogban <player> <reason>"
  2174. else:
  2175. send "&cYou don't have permission to use this command!"
  2176.  
  2177. command /kick [<offlineplayer>] [<text>]:
  2178. permission: Hypixel.admin
  2179. permission message: &cYou are not allowed to do this!
  2180. trigger:
  2181. if executor is a player or console:
  2182. if arg 1 is set:
  2183. if arg 2 is set:
  2184. 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"
  2185. broadcast "&f[KICK] &c%arg 1% has been removed from your game."
  2186. else:
  2187. send "&cUse: &c/kick (username) (reason)"
  2188. else:
  2189. send "&cUse: &c/kick (username) (reason)"
  2190. else:
  2191. send "&cYou are not allowed to do this!"
  2192.  
  2193. command /unban [<offlineplayer>]:
  2194. permission: Hypixel.admin
  2195. permission message: &cYou are not allowed to do this!
  2196. trigger:
  2197. if arg 1 is not set:
  2198. send "&cUse: /unban (username)"
  2199. else if arg 1 is set:
  2200. set {Hypixelban.%arg 1%} to "false"
  2201. set {Hypixelbanreason.%arg 1%} to "None"
  2202. send "&f[WATCHDOG] &cUnbanned %arg 1%."
  2203.  
  2204. on join:
  2205. if {Hypixel.lastwarn.%player%} is not set:
  2206. set {Hypixel.lastwarn.%player%} to "None"
  2207. if {Hypixel.lastmute.%player%} is not set:
  2208. set {Hypixel.lastmute.%player%} to "None"
  2209. if {Hypixel.lastban.%player%} is not set:
  2210. set {Hypixel.lastban.%player%} to "None"
  2211.  
  2212. command /check [<offlineplayer>]:
  2213. permission: Hypixel.mod
  2214. permission message: &cYou are not allowed to do this!
  2215. trigger:
  2216. if arg 1 is not set:
  2217. send "&cUse: /check (username)"
  2218. else if arg 1 is set:
  2219. set {Hypixelban.%arg 1%} to "false"
  2220. set {Hypixelbanreason.%arg 1%} to "None"
  2221. send "&f[BANS] &c%arg 1%'s Information:"
  2222. send "&cLast Warning: &e%{Hypixel.lastwarn.%arg 1%}%"
  2223. send "&cLast Mute: &e%{Hypixel.lastmute.%arg 1%}%"
  2224. send "&cLast Ban: &e%{Hypixel.lastban.%arg 1%}%"
  2225.  
  2226. command /warn [<offlineplayer>] [<text>]:
  2227. permission: Hypixel.jrhelper
  2228. permission message: &cYou are not allowed to do this!
  2229. trigger:
  2230. if arg 1 is not set:
  2231. send "&cUse: /warn (username) (reason)"
  2232. else if arg 1 is set:
  2233. if arg 2 is set:
  2234. send "&c&lYou have been warned for %arg 2%." to argument 1
  2235. send "&cYou have warned %arg 1% for %arg 2%."
  2236. set {Hypixel.lastwarn.%arg 1%} to "%arg 2%"
  2237.  
  2238. on join:
  2239. if {Hypixelban.%player%} is not set:
  2240. set {Hypixelban.%player%} to "false"
  2241.  
  2242. command /?:
  2243. trigger:
  2244. send "&cYou are not allowed to do this!"
  2245. command /bukkit:?:
  2246. trigger:
  2247. send "&cYou are not allowed to do this!"
  2248. command /bukkit:help:
  2249. trigger:
  2250. send "&cYou are not allowed to do this!"
  2251.  
  2252. command /hcs:
  2253. permission: Hypixel.mod
  2254. permission message: &cYou are not allowed to do this!
  2255. trigger:
  2256. if {hcs.%player%} is not set:
  2257. set {hcs.%player%} to "false"
  2258. send "&C[HCS] &fHypixel Chat Spy: &cOff"
  2259. else if {hcs.%player%} is "false":
  2260. set {hcs.%player%} to "true"
  2261. send "&C[HCS] &fHypixel Chat Spy: &aOn"
  2262. else if {hcs.%player%} is "true":
  2263. set {hcs.%player%} to "false"
  2264. send "&C[HCS] &fHypixel Chat Spy: &cOff"
  2265.  
  2266. on command:
  2267. if the executor is a player:
  2268. loop all players:
  2269. if loop-player has permission "Hypixel.mod":
  2270. if {hcs.%player%} is "true":
  2271. send "&c[HCS] %{Hypixel.rank.%player%}%%player% &7used /%command%" to loop-player
  2272.  
  2273. on join:
  2274. if {claim.%player%} is more than 0:
  2275. send "&aYou have &b%{claim.%player%}% &aunclaimed leveling rewards!"
  2276. send "&eClick here to view them!"
  2277.  
  2278. on join:
  2279. if {Hypixel.chat.%player%} is "guild":
  2280. send "&cYou have been moved to the &6ALL &cchannel"
  2281. delete {Hypixel.chat.%player%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement