-
Posts
465 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Gallery
Blogs
Events
Store
Downloads
Everything posted by UntitledGoose
-
M I N E H U T C O M M U N I T Y F A Q HOW TO CREATE KITS WITH ESSENTIALSX REQUIREMENTS: EssentialsX DIFFICULTY: Easy Introduction: With EssentialsX, you can create kits that provide supplies to a player. These can be used in mostly any type of server to make day-to-day life easier and more convenient. Managing kits: Creating kits: You can create kits with “/createkit <kit name> [cooldown in seconds: optional]”, note that you must be opped or have been given permission via a permission plugin to run this command. Kit name is the name of the kit you want to create, and cooldown is the cooldown between uses of a kit. Note that there must not already be a kit with the chosen name. Note that if you set the cooldown to -1, the kit will be one time use. For example, “/createkit hourly 3600” would create a kit named ‘hourly’, that I can only use once every day. Deleting kits: You can delete kits with “/delkit <kit name>”. This will delete the specified kit. You need to be opped or have permission to run this command. Viewing kits: You can view kits with “/showkit <kit name>”. This will bring up a menu showing you the contents of the kit specified. Using kits: Kits can be used with “/kit <kit name>”. Note that you will need a special permission to use kits. Configuration: Newbie Kits: The newbie kits option allows you to give new players a kit when they join for the first time. This can be used from giving new players starter tools, or a booklet containing the server rules. You can enable newbie kits by putting this in config.yml: newbies: kit: tools This will give new players the kit tools when they join. Note that EssentialsSpawn is required for newbie kits to work. Kit Costs: The kit costs option allows you to charge a player in-game currency when they use a kit. In the Command costs section of config.yml, you can add this: kit-tools: 100 This will make the kit tools charge the player $100 every time they run /kit tools. Permission nodes: essentials.createkit Allows you to use /createkit. essentials.delkit Allows you to use /delkit. essentials.showkit Allows you to use /showkit. essentials.kit Allows you to use /kit essentials.kit.others Allows you to use /kit on other people. essentials.kit.exemptdelay Allows you to use kits without having to wait for the cooldown to end essentials.kits.* Allows you to use all kits. essentials.kits.[kit name] Allows you to use a specific kit. Note that ‘essentials.kit’ is required in order to use ‘essentials.kits’. Examples: ‘/createkit hourly 3600’ - Creates a kit named ‘hourly’ with a cooldown of 1 hour. ‘/delkit daily’ - Deletes a kit named ‘daily’. ‘/showkit daily’ - Brings up a menu showing the contents of the kit named ‘daily’ ‘/createkit starter’ - Creates a kit named ‘starter’. Require further assistance?: If you need more help on this topic, head over to this section of forums, or join our Discord! https://youtu.be/HUxXi5iSi7g Compiled by the Minehut Support Team
- 1 reply
-
- 3
-
-
in Garry's Mod yeah
-
All plugins are free, you don't have to pay for a plan if you don't want to, and we don't charge you for support
-
useful reload skript (under 50 lines) [LAG FREE]
UntitledGoose replied to 83y's topic in Script Releases
-
I respect people who do this. Nice work!
-
The forgotten punishment plugin (A very serious documentary)
UntitledGoose replied to Reassembly's topic in General
The Minehut Experience -
The forgotten punishment plugin (A very serious documentary)
UntitledGoose replied to Reassembly's topic in General
Can we actually make a documentary though -
Simple solution to a crazy problem? (Staff, please read this)
UntitledGoose replied to CoolProgrammer's topic in General
One of the large issues with this idea is that if this was implemented, and somebody tried to tell somebody how to join their server (for example "you can join your server with /join <server>"), it'd be blocked. However, this is an issue on Meta, and the details on how to work this out are being discussed. Feel free to contribute your thoughts on the matter. -
I'm gonna be honest, bots can solve GUI captchas as easily as command captchas. They have access to everything the Minecraft client has access to, so you'd often need something special like Maptcha or making the messages super randomized, or not having a captcha at all, or abusing the weird quirks of bots. Regardless, I've made you one anyways. I haven't tested it, but here you go: https://parser.skunity.com/5888c579
-
Tutorial | Simple Custom Whitelist Skript ;)
UntitledGoose replied to CoolProgrammer's topic in Script Releases
Intriguing that people cant join if they aren't online 24/7... but good tutorial, quite informative. Love how it explains what bundles of code so the reader gains an understanding of the script -
How do you put curly brackets in quotes
UntitledGoose replied to Personwhoskripts's topic in Discussion
Expanding on this: If you don't actually want a variable to be represented, throw out the percentage signs. Skript only looks for a variable in a string if it is wrapped in percentage signs. set {epic} to "honk" send "%{epic}%" # Resulting string: "honk" set {epic} to "honk" send "{epic}" # Resulting string: "{epic}" -
No sir
-
M I N E H U T C O M M U N I T Y F A Q WHAT IS THE PURPOSE OF COMMON SKRIPT ADDONS REQUIREMENTS: Skript Introduction Ever wondered what Skript addons were for? This will answer that question, as well as provide some clever uses for them! What do Skript addons do? Skript addons are plugins that you can install to expand Skript, so you can do lots more in your scripts. You'll often see addons being used, because they make day to day use of Skript much easier and more convenient. Common Skript addons SkBee - Allows you to modify the NBT of blocks, items, entities, etc Skellett - Provides general purpose effects, like modifying maps, scoreboards, tablists, as well as general purpose events. SkQuery - Focused on covering more of the Spigot API. This provides events like on any move, on flight toggle, on horse jump, etc. TuSKe - Provides a good way to manage inventory GUIs, also hooks into plugins so you can manage them with Skript, and covers more of the Spigot API. Vixio - Provides full support for the Discord API, allowing you to make your own Discord bots that link between Minecraft and Discord. skDragon - Allows particles to be utilized to make wonderful scenes and animations in Minecraft How do I install Skript addons? You can install them from your panel, just go into the Plugins tab, search 'Skript', and then you have a list of all the addons available on Minehut! I'd recommend reading this CFAQ if you don't know how to install plugins. Examples # This command uses the addon SkBee, which you can use for modifying NBT of blocks, entities, items, etc. command summonDummy: permission: admin.dummy trigger: summon zombie at player’s location with nbt "{NoAI:1b,CustomNameVisible:1b,CustomName:'{""text"":""Dummy"",""color"":""blue"",""bold"":true}" # This command will spawn a test dummy that doesn't take any knockback, hurt players, or make noises. # This command uses the addon skRayFall, for its Shiny Item expression! This expression makes an item have an enchantment glint, without any enchantments showing. command shinyItem: trigger: give player shiny diamond sword named "Ooo.. shiny!" Require further assistance? If you need more help on this topic, head over to this section of forums, or join our Discord! Compiled by the Minehut Staff Team
-
Suggest plugins to be updated here
-
Hey, this is really cool! May I suggest you could also check if the user is in a cold biome for Freezing as well?
-
We don't lock posts because they're old... but you've just done a necro post so lock we shall. @TheRustySpud necro
-
Since skript-mirror allows people to use Java, that's a large security issue for Minehut, so I suspect it will likely not be added. Also considering that this has been requested many times before, and the addon was never added.
-
You could try installing an anticheat (like Matrix) and configuring it to focus on flight hackers and try to prevent them from doing so, while still allowing normal cheats like KA and whantot
-
one year necro jesus christ @Untreated pls lock for necro
-
welcome back sir and/or other
-
@BennyDoesStuff I would ask somebody else but you were the only one online at the time- Could you please lock for necro?
