Leaderboard
Popular Content
Showing content with the highest reputation on 05/23/2021 in Posts
-
I like Minehut's new corporate approach to moderation, really brings out the anti community aspects we've all grown to love over the past three years with SLG's acquisition of Minehut. Hell, they even demoted benny, who has been part of the staff team for many years. They obviously care a lot about us! And the Community Market! What an amazing way for SLG to promote creators to create their own skripts! Nevermind the 40% cut they take out of every purchase and the never ending ads that make it impossibly annoying to run a free server, this is definitely a community oriented feature aimed towards helping creators earn a small passive income for their work at the expense of the 70% of the player base who has to live with nonstop ads unless they purchase a premium server plan! Lets hope they will use this money to help better Minehut as a whole, like updating the long outdated web text editor, or adding a live console finally, or adding crash logs for server owners who have been begging for them for years. Lets hope the money made from the community market goes towards those things, they definitely wont spend 600 dollars on a hub that nobody likes, or remove the most community oriented feature in favor of a paid staff team that is only active on discord, they would never do that! I love minehut! Best server ever!2 points
-
M I N E H U T C O M M U N I T Y F A Q HOW TO CONNECT TO MINEHUT ON BEDROCK DIFFICULTY: EASY Introduction to How to Connect to Minehut on Bedrock: All servers on Minehut support crossplay on Java and Bedrock, meaning you are able to play with people using different editions of Minecraft. How to Connect: Bedrock currently supports 3 different types of devices: Windows 10, IOS, and Android. To join a server on bedrock, you can either join the Minehut lobby with bedrock.minehut.com and run /join <server name> or you can just join the server directly with <server name>.bedrock.minehut.gg and it will take you to your server if it is online. What to do if the IP does not work: As bedrock support is still in beta, joining the bedrock server does not work 100% of the time. Here are some things you can do if the IP is not working. Remove the server from your server list and re-add it. Completely restart your game. Just keep trying to connect to it multiple times until it works. Or just try again later. Require further assistance?: If you need more help on this topic, head over to this section of forums, or join our Discord! Compiled by _Tarna_ at the Minehut Staff Team1 point
-
So you wanna learn skript. First thing to start with would be commands, they're simple and easy to use and I will be using them throughout this tutorial. To get started setup your server and install Skript (preferably the latest version) After you've done that you're ready to get started, if any other plugins are necessary for certain things I will list that. Commands The first thing we would want to know is well, what is a command? A command is something we'd put in chat to run out certain skript. An example command would be "/gamemode creative" which has the command: "/gamemode" and the text argument: "creative". Now how do we make one in skript? Well to make a basic command with no arguments we would do command /ExampleCommand: trigger: send "You have executed this example command" to player As you may have guessed this send the message "You have executed this example command" to the player. But what if we want to have arguments, something the player can put into the command. Maybe we want to make an add command? command /add <integer> <integer>: trigger: send "%arg-1+arg-2%" to player Now we add arguments with <argumentType> and if we want an optional argument we use [<argumentType>]. You can find all the argument types here, then search "Types" in the search bar. Now that we know commands and how to add arguments why don't we make something useful, a /gmc command maybe? To set the player's gamemode to creative much easier, just like essentials. Maybe we want to give it a permission to? And tell the player's without permission "YOU CANT USE THIS COMMAND" or something like that. Let me give you an example on how we would achieve this. command /gmc: permission: tutorial.creative permission message: &cYou do not have permission to use this command trigger: set player's gamemode to creative send "&aYour gamemode has been set to creative." to player Now, that is a bit longer there our other skripts and you may notice some new things: "permission" and "permission message" What "permission" does is assure the player has the right permission to use the command because we wouldn't want your player's using the creative command to dupe their items! And "permission message" is the message it will send the player's that do not have the right permission to use the command. So our user would see "You do not have permission to use this command" in red if they do not have permission. We then change the player's gamemode with "set player's gamemode", I think that is self explanatory, and I hope you know what send does by now. Now you know basic commands and arguments and how to give them permissions, why not try to make /gms yourself? Events The next thing we can move onto is events, let's start with a basic event, on join. On join is called when a player joins the game so why don't we try to make a join message? on join: set join message to "%player% has joined this amazing server." As you can see, we are using "player" again but we have it in percent signs, this is because we're using a VARIABLE in a STRING. These are in uppercase as they are types. I'll tend to do that as we move on. We put all our VARIABLES that are in STRINGS within percent signs. So if we were to put the DISPLAY NAME of the player, we would do "%player's display name%" instead of "%player%" There are several events and you can find them all here. Loops Now you know how to use basic events and commands and arguments and even types, let's move onto loops. There are 2 loops, for loop and while loop. The first one I'll show you is a for loop. command /ForLoop <integer>: trigger: loop arg-1 times: send "hi x%loop-value%" to player you can see I've used multiple of the techniques I have showed you here to make this command. This loop (arg-1) which is whatever the player inputs to the command e.g /ForLoop 5 would loop 5 times the code in the indentation. Now a while loop, heres an example of that: on join: while player is online: send "hi nerd" to player wait 1 second This is in the on join event which then runs the "while player is online" which will run all the code, whilst the player is online, as fast as it can. We have the wait 1 second to prevent it from crashing the server. Now we've finished with basic loops we can do functions. Functions First things first is defining a function, we do that with the keyword function then we put the name of the function followered with parenthesis, function test(): heres an example function function sayHi(p:player send "hi" to {_p} Now to add arguments to a function we put the variable we want to store it in, in my case p and then a colon then the type, in my case PLAYER. we index these functions with {_p} so you will notice I did send "hi" to {_p} instead of player as in functions there is no player. Now how would we use this? Simple command /hi: trigger: sayHi(player) To see it's a function we see the parenthesis () to call the function and in the parenthesis are the arguments we pass to the function. These are useful to pass data across scopes. Returning data from functions: function add(x:integer,y:integer):: integer: return {_x} + {_y} command /add: trigger: "%add(1,2)%" We have :: with the return type that we want then our code with a return at the end this returns whatever data is after the return if it is the specified type. This allows us to run code somewhere else and use it in our specified location e.g our command. That's all I have time to cover right now, if there is anything else you'd like me to put examples for or explain then let me know in the replies or in my dms Hope you found this informative, I have written this late at night so please don't criticise my errors to much. Try and help each other in the replies if possible.1 point
-
I appreciate it man, the goal was to put something out that might create nostalgia and would be fun to look back on from time to time. Kicking myself that I didn't take more screenshots from promotions and such but regardless, enjoyed my time here and I'm very grateful for the opportunity. Thanks and all the best.1 point
-
Let's take a look at a similar community project that's been going on longer than the MH Market https://skriptify.glitch.me/ The entire purpose of Skriptify is to allow people to mitigate the restrictions with the 12 plugin limit with free servers. Every single script from Skriptify is free; you can expect quality scripts from developers who have been in this community for quite a while. xlr100 has worked on the Minehut Events Team before the recent staff purge, Mesyl2 has worked on Composter as a developer, and Adam is just a goat. Have you seen the advertising for the MH Market Applications? Aggressive as all hell. This isn't oriented towards helping the community; this is a mutual source of income between Market Makers and Minehut, which isn't really a bad thing in the long run; it's just a ruddy way of projecting a community oriented feature. Skriptify is purely made out of community contributions. Yeah, we're getting custom plugins. Finally. Let's hope it won't get the Skript treatment from anticipation that Minehut players are typically selfish and have an average IQ of ~70, with some being younger than 13 and their sense of judgement not being half developed. Totally not going to get cucked out of decent features due to abuse. Imagine paying ~480 credits for a script that does what a plugin could do just as easily. Talk about inspired! I play on Minehut to chill with friends and to waste my time away from reality, not remind myself that we live in a society where money makes the world goes round. Every time I see the goddamn lobby, it lags my game just hard enough for me to contemplate the server that I'm playing on, and to contemplate why I even considered applying for this corporate server in the first place. Because corporate couldn't give two fries about who they hired, as long as they were "qualified" to moderate a Minecraft server, which isn't saying much. But hey, with half clueless mods that aren't that familiar with the community yet, at least they won't ban you for inappropriate pronouns even if you were joking and weren't breaking any rules. Oh yeah, I was talking about Skriptify. Don't spend credits on a market that you could easily save using Skriptify. Unless you're down to pay for a godforsaken Skript anticheat that would ban more legit players than cheaters, or Skripted versions of plugins, just use Skriptify. https://youtu.be/yiY8FwdTsb0 Here's to hoping CarrotAC will be much better. Having tested it myself, the bar is still set quite low. Fox + Carrot Anticheat creator, DM me at mybeary#0900. Seriously dude, have you even tested your own anticheat for falses? Seems like you just got on a hacked client and found half-cracked detections. That might fly for Hypixel, but for a demand for a good anticheat, gotta step up your game. Seriously, Skriptify has a good amount of scripts that you can use to create an easy moderation system on your server. I would heavily advise utilizing scripts from Skriptify before you consider buying scripts from the MH Market.1 point
-
The sections that you put in place leading up to your acceptance as a Jr.Moderator really brought back a lot of memories for me, I remember each step as if it was yesterday and thank you for putting into words what sense and vibe the whole situation has. I hope you enjoy your time as a player and I want to thank you for your devotion to the Minehut staff team.1 point
-
I'm Just5MoreMinutes also known as Just5MoreMinutes in-game. You may have already seen me in the lobby or somewhere since I'm around since 2018! I never released any server because I lost interest in the ones I created after I have already put a ton of effort into them. However, recently I decided to join the forums and actually post stuff. I'm nearly 16 years old and I play minecraft for way to long (since 2013 to be exact) it's still fun tho idk why. Besides playing minecraft daily I also try to act like I completely and uterly understand python and java. I'm really into creative stuff like writing stories, drawing or building stuff in minecraft off the top of my head. So yea that was my late and extremely awkward intro pls be nice1 point
-
I forgot to reply to this post. I had a reminder set and everything but still forgot. Anyway, it's been real everyone. Imma miss being able to get my forum post count up by moving and locking topics1 point
-
The very first, simplest of them all... the CLEARCHAT skript. -- command /clearchat: permission: minehut.clearchat permission message: &cInsufficient permission. usage: /clearchat trigger: loop 100 times: broadcast " " wait 5 ticks broadcast "&e%player% &7cleared the chat" -- Enjoy. A full essentials skript coming soon!!1 point
-
1 point
-
Minehut Community Staff Team 2014-2021 As some of you may be aware, following 9 am PST on May 17th, the staff team as we know it will be dissolved- this means that all current volunteers will have their permissions removed and the Moderator position will become an employed role. The staff team has come a long way following its introduction in 2014, with hundreds of staff members coming and going as time went on, this post is here to recall the contributions the volunteer team has made to Minehut in the past. For those who aren’t aware of the situation, the volunteer staff team is being removed and replaced with a smaller team of employed Moderators. This change comes from an unexpected start of the year for the team, with the mass resignation on March 8th to now. The team has been under increased pressure from SLG- leading to the unexpected closure of recruitment on April 9th. Following the closure of recruitment, the staff team’s activity began to decline with the senior staff members becoming inactive first, spreading through the rest of the team. Minehut is a revolutionary service on Minecraft, acting as a place for anyone to come and establish their own server, with its own community that behaves exactly like a normal server- but free. Now, with a service of any kind, you need a dedicated team of people to help moderate it and ensure that it is safe for anyone- this is where the staff team comes into play. The staff team has been at the heart of Minehut since its introduction and will continue to be post-Monday. Today, I’d like to take the time to thank each and every staff member who has contributed to the staff team in one way or another. We have come so far. From the day that the Mod and Senior Mod ranks were created in January 2016 to today, the staff has come a long way, dealing with constant bot attacks, the data breach and other hurdles- the staff team has somehow survived. Through various sub teams, staff members have contributed so much to Minehut, whether it be through the plugins team, media team, events team, recruitment team, meta team, reports and appeals team and even quality assurance, I'm sure the contributions that we have made to Minehut will go on for years. Staff Team Quotes Quotes from some current and past staff members. Ben87, Helper “Even though I had only one month as a Helper on Minehut, it really changed the way I think of the community and players on it. I love every single one of you guys as you made me feel extremely welcomed as a staff member on Minehut. I hope better things can come for all of us in the future and I'm sad to be leaving, but I have to leave the past behind me.” thistl, Moderator “lol k” Faacto, Moderator “too bad minehut isn’t the same anymore, now it's ****” Jackson85, Moderator “I would describe my time on the staff team with a massive essay, but instead I’ll use one simple word: grape.” chillins, Moderator “maybe if you spent more time being a good staff member instead of disecting my guide you'd not of gotten demoted.” dissecting* ReportCards, Moderator "cool" muelr, Senior Moderator “lets prep for him to say that like no more staff under 18 (5/10/21, 7:51pm)” PandaChan, Moderator “It's been fun moderating Minehut for the past few months, I've made a ton of memories with this team. While it's been a rough year, to say the least, I'm still gonna miss everyone. I wish the new staff team good luck!” BurningBrimstone, Helper “Thank you, everyone, for a wonderful time as part of the community and staff team. It has been an outstanding 3 years on Minehut and I can't wait to experience what's in the future as we move on from this era. Much love.” SilentF1ame, Moderator “I had a great time moderating on the staff team and wish all of the future moderators good luck and I hope to see you all in the community in the future” Reassembly, Moderator “It was a good time, but everything has an ending, I will always have my messages open and yall can dm me at any time” bobyjoey12, Helper "It's been a wonder working with this community, helping resolve issues. I may not be a helper anymore, however I'll still always be more than happy to help anyone out. Thank you all for the wonderful memories of my 3 months as a helper :)." sqyid, Senior Moderator “Tough scenes” swirs, Moderator “vinixs is fake” Migins, Moderator “I’m going to cry over this” R2n, Ex-Moderator “SHEEEEEEEEESHHHHHHH” Tresre, Helper “Thanks to everyone who made the time we had great, had some amazing memories and experiences. It was awesome to be able to work with y'all and I'll never forget it. Its been a great nearly 2 years, Minehut.” Tarna, Moderator “I had a really great time moderating and helping the community for the past few months. I'm sad to see the community staff team is coming to an end but can't wait to see of what they have planned in the future. Thank you all for the fun times!" fjsu, Moderator "it was fun, gonna miss everyone" _Gingey_, Ex-Manager "See I wanted to add a quote, but I've got no idea what to say.." Criticyl, Ex-Senior Moderator "yikes" ReportCards, Moderator "cool" rosathorn, Helper "I’m very grateful of all the time I got to spend here. I’ve been apart of Minehut ever since it was a Warzone server, nothing more, finally sometime around a month ago I achieved Helper. Since then I’ve worked hard to maintain my position. While this saddens me I’ll still be active in the community, making servers, and devving for other servers too. Making servers here has not only become a hobby of mine, but a passion over the past 2 years. Minehut also got me into coding around 2 years ago, starting with Skript until I learned more. Thank you Minehut." Henr, aka Pixelific, Ex-Senior Moderator "remember me" Jellz, Ex-Senior Moderator "I loved my time on the staff team. Thanks to everyone who made me love it."0 points
-
0 points
