Jump to content

Echology

Market Creator
  • Posts

    268
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Echology

  1. Upload the world zip to a file upload website. If your world is smaller than 100mb you can use file.io, otherwise we recommend you use Dropbox. [500mb Limit]

    Get the direct download link to the file. If you're using Dropbox you can get the share link, but you need to replace ?dl=0 with ?dl=1 at the end of the link. If you're using file.io remember that the download links can only be used once.

    Run the command /ul world <worldname> <direct link> in your server.



    Curtesy of the Minehut Discord Bot

    More Info:

     

     

    Depth

    16 minutes ago, ojmillsy said:

    I as well want to make a super flat deep what should I input into the generator box? like what command 

    wait what are you trying to make? Examples?

    Superflat can be made by changing the world type to Flat

    image.png.c8dda214ab745378a36b929284529382.png

  2. Double check that the file you uploaded is the correct format and doesn't have any weird corruption.

    Also make sure it has content to it, if its a blank schematic it won't work.

    Other than that im not quite sure.

    Also, a tip: Don't double post

  3. This error usually occurs when a server is not in the Online status. When attempting to join a server that is Offline (Not Hibernating) or Starting you will receive this error.

    Wait until the server is 100% Online before joining

    Your server is probably stuck somewhere, you might need to force hibernate it, wait for it to start up, then join once it is online. This is just an issue with startup of bungee servers.

  4. 6 minutes ago, NotEnergy said:

    not gonna give out the name of the hoster im using but yeah im not using minehut, ive checked for updates on skript and all the addons for it, everything is fully updated.

    then why are you asking on Minehut forums. go ask on spigotmc .

  5. Just a skript tip:

    try to use list variables {variable::%input%}
    as they are far better for storage
    also try to use uuid instead of player something like: {player::%player's uuid%::something}
    You can also make your code more organized by doing negative checks, like checking the opposite of what you want first, then stopping there so you either can choose not to do a else or you can.
    example:
     

    on join:
    	if player has not played before:
    		send "Welcome to the server! Thanks for joining!"
    		stop
    	send "Welcome back to the server"

    instead of 

    on join:
    	if player has played before:
    		send "Welcome back to the server!"
    	else if player has not played before: #or just else
    		send "Welcome to the server! Thanks for joining!"

    This is apparent in the later part of the skript with the place and break event:
     

    on place:
    	if {BuildMode.%player%} is not false:
    		stop
    	if player does not have permission "SW.Build":
    		stop
    	cancel event
    	send "&cYou cannot place anything! Type /buildmode to enable breaking/placing blocks!"
    	stop

     

  6. just some skript tips:
    use list variables {variable::input}
    don't start variables with %player% instead use something like {player::%player's uuid%::something}
    this makes it easier for storage and for your usage later down the line.

    • Like 1
  7. I don't think you can check the used storage, if you mean ram when running the server, you can use PAPI and its placeholders to get the server ram and max server ram.

  8. Honestly this is the unfortunate reality that Minehut is facing. Many people are having rollback issues and there isn't much we can do about it. Some steps you can do to counteract this would be to constantly save your server and make backups, as you did saving the world on your computer is also another way. But I would say make a support ticket at https://minehut.com/support/form 

×
×
  • Create New...