Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/02/2021 in all areas

  1. Hello Minehut, I would like to suggest this anticheat - Spartan Anticheat https://www.spigotmc.org/resources/spartan-anti-cheat-advanced-cheat-detection-hack-blocker-1-7-2-1-16-5.25638/ This is a very good anticheat which is one of the biggest problems in minehut these days. I tested it myself and its one of the best anticheats i've ever seen and it will solve so much problem in the entire minehut community to all of the big servers. This is a list of cheats that it blocks - https://docs.google.com/document/u/1/d/e/2PACX-1vTHwxatQmlastam-oCq5zOwQ3gLFTSa6SgqL5WT37JzC5g4YZWhkE3r-a6JGAJC_LnjIHXx8EDFRKMV/pub I would like you to consider adding it as this is an actual important plugin. Note: Before you say that there are alternatives to it, I've tried both Matrix and NoCheatPlus which minehut currently provide and they are just not good enough, and doesn't block any of the important cheats.
    3 points
  2. Hey there, Please include a plugin link next time you suggest a plugin. I couldn't find any link for this plugin.
    1 point
  3. on break coal ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to coal ore on break iron ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to iron ore on break gold ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to gold ore on break lapis ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to lapis ore on break redstone ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to redstone ore on break diamond ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to diamond ore on break emerald ore: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to emerald ore on break ancient debris: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to ancient debris on break coal block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to coal block on break iron block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to iron block on break gold block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to gold block on break lapis block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to lapis block on break redstone block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to redstone block on break diamond block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to diamond block on break emerald block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to emerald block on break netherite block: player's world = "world": if gamemode of player is survival: wait 3 ticks set event-block to bedrock wait 30 seconds set event-block to netherite block i made that i hope it will help (i checked that already )
    1 point
  4. It looks like Packet Limiter itself lists "1.0.0" as the version, but I can assure you that is in fact 1.0.1. This would need to be fixed by the plugin author, but I doubt this is a large priority.
    1 point
  5. This would not work, please stop posting these in script releases.
    1 point
  6. I can't make the skript for you, but I can give you documentation links and tutorials. There are two main solutions for guis there is skript-gui addon (which can be installed in the plugins tab) and vanilla skript (which comes when you install skript). I recommend vanilla skript, but neither is bad. For skript-gui: Tutorial: https://github.com/APickledWalrus/skript-gui/wiki Documentation: Search for syntax by filtering only skript-gui, https://skripthub.net/docs/ For vanilla skript: Tutorial: https://forums.skunity.com/threads/vanilla-guis.8939/ Documentation: Search for syntax by filtering only Skript, https://skripthub.net/docs/
    1 point
  7. Here's the 10 mins worth of efforts. Enjoy! options: eco-usage-message: &cUsage: /eco (set/add/remove) (player) (amount). pay-usage-message: &cUsage: /eco (player) (amount). min-amount: 10 command /eco <text> <offline player> <number>: permission: op usage: {@eco-usage-message} trigger: if arg 1 is "set": setBal(arg-2, arg-3, sender) stop if arg 1 is "add": addBal(arg-2, arg-3, sender) stop if arg 1 is "remove": removeBal(arg-2, arg-3, sender) stop send "{@eco-usage-message}" to player command /bal [<offline player>]: trigger: if arg 1 is set: send "&7Player &b%arg-1% &7has &a$%getBal(arg-1)%&7." stop send "&7You have &a$%getBal(player)%&7." command /pay <offline player> <number>: usage: {@pay-usage-message} trigger: if exists(arg-1) is false: send "&cPlayer %arg-1% &cdoesn't exist." stop if getBal(player) < arg-2: send "&cNot enough money." stop if arg-2 < {@min-amount}: send "&cMinimum amount that you can pay is ${@min-amount}." stop addBal(arg-1, arg-2, null) removeBal(player, arg-2, null) send "&aYou paid $%arg-2%&a to %arg-1%&a." to player send "&aYou recieved $%arg-2%&a from %player%&a." to arg 1 function setBal(p: offline player, n: number, cb: sender): set {_u} to {_p}'s uuid set {balance::%{_u}%} to {_n} send "&aSet %{_p}%&a's balance to $%{_n}%&a." to {_cb} send "&aYour balance was set to $%{_n}%&a." to {_p} function addBal(p: offline player, n: number, cb: sender): set {_u} to {_p}'s uuid add {_n} to {balance::%{_u}%} send "&aAdded $%{_n}% &ato %{_p}%&a's balance." to {_cb} send "&a$%{_n}%&a were added to your balance." to {_p} function removeBal(p: offline player, n: number, cb: sender): set {_u} to {_p}'s uuid remove {_n} from {balance::%{_u}%} send "&aRemoved $%{_n}% &afrom %{_p}%&a's balance." to {_cb} send "&a$%{_n}%&a were removed your balance." to {_p} function getBal(p: offline player) :: number: set {_u} to {_p}'s uuid return ({balance::%{_u}%} ? 0) function exists(p: offline player) :: boolean: set {_u} to {_p}'s uuid return true if {balance::%{_u}%} is set return false
    1 point
  8. ty this gonna help my server
    1 point
  9. Hey there, Resetting your world will generate a whole new world.
    1 point
  10. Hey, this can be quite difficult to do. But once you get the hang of navigating your config folders it's pretty straightforward. To do this go to your Console > File Manager tab > click the "Plugins" folder > click the "Essentials" folder > click "config,yml" > then scroll down to "Essentials Global" and you'll be met with "ops-name.color: (color)" replace the color with the word "none" > restart your server.
    1 point
  11. At the moment in time you cannot delete your Minehut Account, but if you are looking to delete/reset your server(s) the you can do the following... To delete your entire server 1) Go to your dashboard 2) Go to "Danger Zone" and click Reset Server. 3) Go to "World Settings" and click Save World. 4) Reset your world. 5) Restart your server. To reset your world 1) Go to your dashboard 2) Go to "Danger Zone" and click Reset Server. 3) Go to "World Settings" 4) Reset your world. 5) Restart your server.
    1 point
  12. Change it in server properties, and if you are using multiverse change it in the config.
    1 point
  13. - | - Hey there. Unfortunately, you cannot add Mods to your Minehut server. You can however add plugins via the Plugins tab in your Minehut Panel If you want your server to support versions 1.8+, then get the Protocol Support plugin Hope this helps! - | -
    0 points
×
×
  • Create New...