Leaderboard
Popular Content
Showing content with the highest reputation on 03/01/2021 in Posts
-
Wow! Two milestones in 1 day. I hit 500 forum posts and 100 reputation. Thank you all so much8 points
-
@_omga Stop dominating the forums, just because I get busy for a little does not mean I need to come back and see 75 total reputation earned recently.3 points
-
3 points
-
2 points
-
Hello all, in this tutorial I will be sharing the basics of Skript. This tutorial will include how to install Skript, how to indent and basic understanding of Skript features. If you don't already have Skript installed, this is how you install it. Start your server Click "Edit Server" Head over to "Plugins" Search "Skript" in the search bar You will see alot of plugins named "Skript Addon: [addon]", don't get them yet Scroll down till you find "Skript" Click on "Skript" Click "Install Plugin" Restart your server To access Skript files and make Skripts, do what is shown below Start your server Click "Edit Server" Head over to "File Manager" Find the "Plugins" folder Open the "Plugins" folder Find "Skript" in the "Plugins" folder and open it You should see a folder named "Scripts", click it To add a skript, click on the button that says "Create a file" when you hover over it Enter the file name that you want it to be called. Make sure it has ".sk" at the end and click "Create" Find the file you have just created and open it You can now add code into that skript Reloading, Enabling and Disabling skripts Once you have added some code to a skript, you will need to reload the skript to get that functionality Start your server Join your server Type in chat "/sk reload [skriptname]". If that filename exists in the "Scripts" folder then it should reload. To disable a skript all you need to do is "/sk disable [skriptname]" To enable a disabled skript, do "/sk enable [skriptname]" Indentation Indentation is where alot of people mess up when skripting, they simply do not understand and need a way to learn how to indent. Indentation consists of spaces and tabs. Tabs are the most popular option as they are easier to do than spaces. You need to make sure that you keep a consistent indentation, meaning you cannot indent 1 line 5 spaces, and the next 7 spaces. It is always good to remember that you need to always indent the next line whenever the previous line ends with a :, an exception to this is in command statements with items before the trigger such as permission: or aliases:. Here is an image of proper indentation: Syntaxes Syntaxes can be tricky to learn for a beginner but once you learn them, it is easy to become really good at reading/understanding them Lets say for example we have this syntax: create [a] [new] gui [[with id] %-string%] with %inventory% [and shape %-strings%] The [] means it is optional and you dont need to include it. The %% means an object like player or string Lets take a look at another syntax: create [a] [new] [(full)] bound with id %string% (within|between) %location% and %location% The [] means it is optional and you dont need to include it. The %% means an object like player or string The (example 1|example 2) means you can use example 1 instead of example 2 or example 2 instead of example 1 Tutorials A good way of learning Skript is through tutorials on YouTube, they can be very helpful and is how I learned skript at the very start. A good channel to learn Skript from is the offical Minehut YouTube Channel That's all I have time for today folks, I hope you learned something from this tutorial.1 point
-
M I N E H U T C O M M U N I T Y F A Q HOW TO MAKE A VIXIO DISCORD BOT REQUIREMENTS: Skript, Vixio DIFFICULTY: Medium Introduction to Vixio Vixio is one of the many Skript addons that are available on Minehut. It allows you to make a fully functional and customizable Discord bot using Skript’s syntax along with Vixio’s syntax in a normal Skript (.sk) file. Because the bot is made this way, the functionality is only limited to what Skript allows you to do. In this tutorial, you will learn how to set up a Vixio bot and some common functionalities that come along with it. Application Setup The first thing you’re gonna need to do when setting up a Vixio bot is to make the application. An application is the discord terminology for a bot, and setting it up is as easy as clicking a few buttons. First, go to https://discord.com/developers. If this is your first time visiting this page, you may be prompted to log-in using your discord account. Simply log-in and you should be brought to the applications page. Next, you need to create your application. Click the “New Application” button at the top-right of the page to do so. Once you’ve done that, you will be prompted to create a name for your application. This can be anything, and it can be changed at any time once it’s been created. After your application has been created, you can input your bot’s general information. This includes the name, description (optional) and a profile picture. Again, this information can all be changed in the future by visiting this same page. (Note: Be sure to save your changes before leaving this page) Once you’ve entered the general information for your bot, go to the “Bot” tab and click the “Add Bot” button. In the “Privileged Gateway Intents” section, be sure to enable “Server Members Intent”. If you do not do this, your bot will not work. Be sure to also disable the “Public Bot” option. Doing this will make sure that the bot will not be able to be invited to other servers unless invited by you. (Note: The bot will function the same way in any server it is in, so for security reasons, you are going to want to leave this disabled) After you’ve done this, go to the “OAuth2” tab. Scroll down until you see the section called “Scopes”. From there, select “bot” and select the permissions you wish to grant your bot. Since you are making this bot for personal use and are coding it from scratch, I recommend choosing the “Administrator” permission so that you can make it do anything without having to worry about giving it additional permissions. (Note: Giving your bot this permission will allow it to do anything on any Discord servers it is in) Once you’ve done all of this, copy the URL that has been generated and paste it into a new tab. You will be prompted to add it to a server. Select the server you wish to add the bot to and click “Authorize”. You will most likely be asked to complete a captcha for security reasons. After doing this, you should be brought to another page advising you to close that tab. (Note: Keep the developer portal open, you will need it later) Your bot should now be in your server. Although it is there, it will have no functionality because it hasn’t been configured to do anything. You will also notice that your bot is offline. This is because bots need to be told when to log-in and log-out. In any case when using Vixio, the bot will need to be logged-in using Skript and will automatically be logged-out whenever your Minecraft server stops. Script Setup Once your bot is on the server, you can start creating your script. Go back to the “Bot” tab and copy your bot token. You will need this to log-in to your bot within your script. Once you’ve copied your bot token, you have two options. The first option and the one I recommend is to create an option for your bot token. The second option is to paste it manually whenever you need to use it. If you are choosing the options route, I would also recommend creating an option for the name of your bot. options: token: (Your token) bot: Iz's Secretary Once you’ve done all of this, you can add an event to log-in to your bot by using the following effect: (login|connect) to %string% (using|with) [the] name %string% The first %string% is the expression used for your bot token. The second is the name of your bot. (Note: Doing this twice without logging out of the bot will cause the bot to execute its actions twice. I recommend using the “on skript load” event to prevent this from happening) Example: on skript load: login to "{@token}" with the name "{@bot}" Another useful effect that Vixio offers is logging out of the bot. This can be done with the following effect. (logout [of]|shutdown) %bot/string% The %bot/string% expression is the name of your bot. Example: on skript unload: logout of "{@bot}" Here is an example of a full script to log in and log out of your bot: options: token: (Your token) bot: Iz's Secretary on skript load: login to "{@token}" with the name "{@bot}" on skript unload: logout of "{@bot}" Once you’ve completed the setup, your bot should now come online when your server starts! Additional Information A full list of Vixio syntax can be found here: https://olyno.github.io/VixioSite/ If you need help with Skript, a useful forum post can be found here: https://forums.minehut.com/topic/31934-how-to-use-skript/?tab=comments#comment-98786 If you need more help with Vixio, head over to the Skript discussion on the forums, or join our Discord! You can also feel free to personally message me if you have any questions related to this topic. Compiled by the Minehut Staff Team1 point
-
You have to execute the kill command from console, not in game. If you load the chunks directly the server will crash again.1 point
-
Great job, _Tarna_! This CFAQ looks great, and this plugin is very interesting. Many people ask about this plugin, so it's nice to have a Community FAQ about it. Thank you, and I can't wait to see more from you in the future.1 point
-
You see, I am already cool more than twice in a day. Also, I'd react if I wasn't react blocked1 point
-
1 point
-
1 point
-
Cool code: command /wk: trigger: set the player's walk speed to 0.1 loop 267 times: increase the player's walk speed by 0.1 wait 10 seconds1 point
-
1 point
-
every 5 minutes: broadcast "Clearing dropped items in 5 seconds." wait 5 seconds broadcast "Killed %size of dropped items% dropped items." kill dropped items1 point
-
1 point
-
Hey there. This is how you can fix it: -> Start your server, but don't join it. -> While it's showing you "Starting..." status, type this in the console: minecraft:kill @e -> Keep executing that command until your server shows "Online" status. -> Join back your server.1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Imagine the hard work he put into helping people on the forums, 75+ reputation in a week, great job @_omga!1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
Minehut does not support cracked minecraft. You need to use a premium account to be able to join Minehut.1 point
-
While the server is online, try running the command /gamerule keepInventory true. And make sure the command is exactly like that since it is case sensitive. Also the server can kick you for fly sometimes if you are lagging. If you enable the fly option in the settings tab, it won't kick anyone for that on your server.1 point
-
Ask one of your friends to use /gamerule keepInventory true while in the end, when you join you should keep your inventory when the void kills you. I suggest you make a backup before you try some ways, so if it fails you can rollback to the point where you still have your inventory1 point
-
1 point
-
1 point
-
You should do different events, how to add permissions, how to add aliases, and what trigger, send, and broadcast does. Also nice beginner tutorial1 point
-
1 point
-
This plugin looks pretty cool! What the other worse omega said about duplicating posts. Only post something once. No need to post it multiple times.1 point
-
Looks really neat! It’s a paid plugin though, usually means it will take longer / not be added unfortunately Also, wanted to point out you’re essentially duplicating your posts; please stick to only one post per plugin1 point
-
Developer of the plugin here, it would be pretty neat if it managed to get on Minehut1 point
-
1 point
-
Maybe some sort of NPC Skript to easily manipulate Citizens through a GUI. Not the most difficult thing but would be neat I guess haha Next, what about some sort of party Skript? I know a lot of those exist but not everyone is capable of making them. (Also goes for Clans/Guilds sort of things) Third, maybe a custom fishing Skript or something - not exactly sure what it would include but could have some neat concepts. Lastly, maybe some essential management stuff (A core Skript)? Far to many of these exist but they can be kinda fun to make when you have nothing else in your arsenal. Anyway, it’s fine if you don’t do any of these; just shooting some random ideas your way I guess. Good luck on the website, message me if you want any other of my wondrous inspirations lol1 point
-
even my friend, the owner of the server cant do /tp is there any way to enable cheats or anything?1 point
-
1 point
-
PLEXPVP APPLICATIONS Thank you for wanting to apply for staff on PlexPvP. An Application Guide will be released in the near future. Before you apply, be sure you meet the following requirements: - 14+ (exceptions can be made) - Strong understanding of the server - Understandable microphone - Active in-game and in discord - Strong understanding and knowledge of rules APPLICATION FORMAT Personal Details: Minecraft In-Game Name: Previous In-Game Names: Discord Name and Tag (Ex: Pndq#2240): How old are you? What is your time zone? Do you have access to a working microphone? (yes/no): Do you have the ability to record hackers?: What languages do you speak (fluently)?: General Details: Why did you decide to apply for staff on PlexPvP? Why should we accept you over other applicants? What are your strengths and weaknesses? What moderation experience do you have? Explain what you learned from these experiences: Have you ever been punished on Plex or any other Minecraft servers? If so, why were you punished and how did you learn from it? What are some hobbies, activities or achievements you have outside of Minecraft? Situational Questions: If the server is being botted, what would you do? If you get into an argument with a player, how would you try to resolve the situation? Would you come to terms with their side of the argument or would you just stop arguing? Tell us about a mistake you made in the past. What did you learn from this mistake and how did you deal with it? If a staff member’s account was hacked, what would you do? You see a player claiming he was false banned on another server. He begins to talk about botting Plex. How do you react? There is a player constantly saying bad things about the staff team, but they aren't technically breaking any rules? What do you do? A player, who claims to be friends with staff, is messaging you saying he will tell his friends that you are abusing your permissions if you punish them. What do you do in this situation? A player messages you with your personal information. He threatens to leak it if you don't un-punish them. How would you react in this situation? Anything else you would like to tell us? Thank you for applying. You will receive a response within 3 days. Please be patient.1 point
-
Ops can bypass this, op yourself through your server console located on the Home section of your web panel to stop it from occurring.1 point
-
1 point
-
0 points
-
0 points
-
0 points
-
Popular Contributors
-
Most Contributions
-
Member Statistics
-
Who's Online (See full list)
