Jump to content

rosabel

Moderator
  • Posts

    806
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by rosabel

  1. rosabel

    Help lol

    This should be asked in the Skript discussion. First of all, you need the Skript plugin. Don't know what it is? It's an English-based programming language for Minecraft. Java for dummies, essentially. What you need to do is create an on break: event, set {_b} to event-block, set event-block to bedrock, wait a few minutes, then set event-block to {_b} Those are actual syntaxes, by the way. Good luck.
  2. Yeah, this issue should be fixed now. I believe Minehut is aware, can't be sure, but if the issue is still occurring it should be fixed soon.
  3. rosabel

    SetworldSpawn

    You need to OP yourself via the console. Handy tutorial made by Minehut.
  4. rosabel

    random spawn script

    I'm confused. Do you want them to spawn in a random spot of the map? If so, download a randomTP plugin then input this Skript: on respawn: execute console command "/rtp %player%" on first join: execute console command "/rtp %player%" Alternatively you could just worldguard the spawn using the WorldGuard plugin.
  5. rosabel

    ABC anti Cheat

    I'm sure whatever anticheat you have installed has a way of disabling these messages, I tried to find the commands but it seems the plugin development page is privated. I recommend just uninstalling this one and installing a different anticheat.
  6. Try doing /difficulty hard, doing /save-all, and restarting your server. Best of luck to it working, though! If it doesn't, you can always install the Multiverse plugin and change the difficulty using commands from the plugin and that likely should work. The command is /mv modify set difficulty hard <world> If the problem persists and won't stop I've created a solution for this. I'll list the steps here. This can also do the trick if you don't want to go through the hassle of Multiverse. Edit Server > Install Skript plugin > File Manager > Plugins > Skript > scripts > Create new file named "difficulty.sk" > Paste the code below this into that file > Click Save > Execute the command "/sk reload difficulty.sk" in game to put the code into effect. on load: set difficulty of world "world" to hard Just be sure to set ` "world" ` to the name of your world inside the parenthesis. Case sensitive!
  7. rosabel

    Session expired

    It could be for a lot of reasons. If you changed your password- session expired. But also leaving the tab open and not interacting with it for long periods of time causes the session expired error. Try relogging into your account. This post was 7 hours ago, so it's possible Minehut was having some internal issues, if it still doesn't work by now, trying contacting Support at minehut.com/support
  8. Lol.. just do /sk reload filename.sk 'filename' being the name of your skript file. Also be in mind it's case sensitive meaning if your file's name is Test.sk you have to do /sk reload Test.sk and not /sk reload test.sk
  9. rosabel

    Cant join a server

    Crashing on startup. I'd need your logs to see what's up. Paste them here via a link. This post will guide you on how to do so.
  10. That's really down to Minecraft its self. I'm sure they'll find a way to make this work for old worlds, but in any case you can always travel different directions, load new chunks, and the new caves will generate. That, or it may also generate in existing chunks, though unlikely Minecraft may do that. And every time a new Minecraft version is released Minehut is usually quick to update all servers to that version.
  11. I believe the servers have been bugging out as of late this morning. It should be fixed within time.
  12. I can still see why it would be blocked, your name is likely blocked due to it being somewhat similar to the B word, essentially someone could use it to bypass to say that word. Though it's not a very good bypass in its self. The Minehut Meta Discord allows people to suggest changes to the filter, maybe head on over there and try to get it unblocked?
  13. Thank you everyone, thanks Minehut for this opportunity. It’s been good. I’ll still be around making servers, devving, and so on. Rosa out.
  14. rosabel

    Prison cell

    Ah, I don't believe there is one. You can head on over to the Suggestions part of the forum and suggest one. A cell system can also be done with the Skript plugin, but to do so requires extensive knowledge of the coding language. I've done a cell system with it before, actually, so I can tell you that it is in fact possible.
  15. You'll likely need to reset the entire end world. Try deleting the world from your File Manager in console, then restarting the server.
  16. Yep. Seen this before. I usually just fix it with Skript. Edit Server > Plugins > Install Skript > Restart Server > File Manager > plugins > Skript > scripts > Create new file named start.sk > Input the code below into the file > Click Save > Restart Server After following those steps in that order, it should work. The code: on server start: execute console command "/minecraft:kill @e[type=item]" You could also just execute it through console when the server starts, but this method makes sure the task is done as soon as the server starts so the command 100% goes through.
  17. Use an on right click event and check what item the player is holding. The syntax for adding effects is apply haste 1 without any particles to the player for 60 seconds
  18. rosabel

    Help me pls

    Do you know what happens when you do try to? I assume just nothing happens. Be sure you're following these exact steps: Startup your server from the panel. Go to the “World” section of the panel found at the top of the page. Scroll down the “World Seed” and type in the seed that you want to upload. Click “update” Then click the “reset world” button and restart your server. When your server starts up the new seed will be generated. Keep in mind resetting the world resets all of your current progress.
  19. All Minehut servers are automatically the latest version, so 1.16.5, you can allow older versions to join with the ProtocolSupport or ViaVersion plugins.
  20. No. You can join the Minehut server mc.minehut.com and do /join servername so if the first part of the IP of his server is, say, Survival as in Survival.minehut.gg you'd join the Minehut server and do /join Survival it will then automatically start the server and after a while you can join for yourself.
  21. Yep. Seen this before. I usually just fix it with Skript. Edit Server > Plugins > Install Skript > Restart Server > File Manager > plugins > Skript > scripts > Create new file named start.sk > Input the code below into the file > Click Save > Restart Server After following those steps in that order, it should work. The code: on server start: execute console command "/gamerule randomTickSpeed 3" You could also just execute it through console when the server starts, but this method makes sure the task is done as soon as the server starts so the command 100% goes through.
  22. If you're sure the command works, but not the syntax, just add a player arg to your command and do on first join: execute console command "/newplayerwelcometest %player%"
  23. Make sure you're OPPED and do /pardon username it should be as simple as that. If it, for some reason, doesn't let him on. Head over to File Manager > Click the trash-can and go into delete mode > Delete the file banned-players.json Keep in mind this'll unban EVERY other player you banned, but it should, theoretically, unban him if all else fails.
  24. For this it is simple, and I don't want to spoon feed so I can't just give that to you. But to do this, just set up an on break event, use "chance of 1%:", give the player an item named backpack then do an on right click event, if the held item's name is backpack then remove 1 of that item and give the player some things again. Be sure to indent your code as well.
×
×
  • Create New...