Jump to content

1.14.4 Using custom world type on server


matezz

Recommended Posts

Hello

I've been trying to use my custom world type on server. This is it:

public static WorldType WNWorldType = new WNWorldType("something");;

And after running my mod on a server and typing level-type=something in server.properties, and reloading server, it resets to default.

Also I've been thinking about the solution and found this:

@SubscribeEvent
public void dedicatedServerStarting(FMLDedicatedServerSetupEvent event)
{
    ServerProperties serverProperties = event.getServerSupplier().get().getServerProperties();


    if (ConfigApplier.runWorldOnServer.get())
    {
        LOGGER.info(String.format("Using WildNature Server World Generator %s", serverProperties.worldType.getName()));
        serverProperties.serverProperties.setProperty("level-type", "wildnature");//serverProperties is private
        serverProperties.worldType = WNWorldType;//worldType is final
    }
    else
    {
        LOGGER.info("Using normal world generator");
    }
}

This could work, but the code is invalid(see //)

 

Thanks

Link to comment
Share on other sites

  • 2 months later...

You can generate a single player world to your needs with mods etc(your server needs those mods aswell, and the players to. Don't know how, just search mc modded server)

When the world is created replace the default one in the server list with the one from the single player world and it should work.

Link to comment
Share on other sites

  • 2 weeks later...

One solution I've found is to use the "generator-settings" in server.properties, as they're get loaded properly, even if they don't strictly match valid settings in the vanilla game.
Here's an example:
 

server.properties:

allow-flight = false
...
generator-settings = {"mod-id": true}
...
white-list = false

 

mod.java:

@SubscribeEvent
public void dedicatedServerStarting(FMLDedicatedServerSetupEvent event)
{
    ServerProperties serverProperties = event.getServerSupplier().get().getServerProperties();
    boolean loadMod = false;
  
    // get the generator-settings and parse them as json
    JsonElement json = new Gson().fromJson(serverProperties.generatorSettings, JsonElement.class);
    // check for the existance of the "mod-id" entry in the json object. if it's present, we can load the mod.
    if (json.isJsonObject())
        loadMod = JSONUtils.getBoolean(json.getAsJsonObject(), "mod-id", false);

    if (loadMod)
    {
      	// do mod loading stuff
    }
    else
    {
        LOGGER.info("Using normal world generator");
    }
}

 

 

While not as elegant as having the ability to type a custom level-type, this works and is, in my mind, less hacky than many other options I tried.

 

One thing to note is that the Client is never sent generator-settings. Thus, if the Client needs to know whether or not the mod was loaded, you'll have to find another way to inform it.

Edited by acid1103
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Discovering that a trusted colleague had accessed my Bitcoin account and transferred $30,000 worth of bitcoins was a devastating blow. It shattered the trust I had placed in them and left me feeling vulnerable and betrayed. However, in the face of adversity, I turned to MUYERN TRUST HACKER for assistance in reclaiming control over my finances and holding the perpetrators accountable for their actions. One of the standout features of MUYERN TRUST HACKER was its ability to provide real-time alerts and notifications, keeping me informed every step of the way. With the support of MUYERN TRUST HACKER, I was able to gather irrefutable evidence of the perpetrator's actions and hold them accountable for their crimes. Armed with the information provided by the platform, I pursued legal recourse and ensured that justice was served. The perpetrator faced severe consequences for their actions, including legal penalties and financial restitution. Beyond its role in facilitating the recovery process, MUYERN TRUST HACKER provided me with a sense of empowerment and resilience in the face of adversity. While the experience was undoubtedly challenging, it ultimately served as a testament to the importance of vigilance and the power of technology in safeguarding our digital assets. Thanks to MUYERN TRUST HACKER, I emerged stronger and more resilient, ready to face whatever challenges the future may hold. Mail; muyerntrusted[At] mail-me .c o m
    • Discovering that a trusted colleague had accessed my Bitcoin account and transferred $30,000 worth of bitcoins was a devastating blow. It shattered the trust I had placed in them and left me feeling vulnerable and betrayed. However, in the face of adversity, I turned to MUYERN TRUST HACKER web [ ht tps:// muyerntrusthack.solutions/ ] for assistance in reclaiming control over my finances and holding the perpetrators accountable for their actions. One of the standout features of MUYERN TRUST HACKER was its ability to provide real-time alerts and notifications, keeping me informed every step of the way. With the support of MUYERN TRUST HACKER, I was able to gather irrefutable evidence of the perpetrator's actions and hold them accountable for their crimes. Armed with the information provided by the platform, I pursued legal recourse and ensured that justice was served. The perpetrator faced severe consequences for their actions, including legal penalties and financial restitution. Beyond its role in facilitating the recovery process, MUYERN TRUST HACKER provided me with a sense of empowerment and resilience in the face of adversity. While the experience was undoubtedly challenging, it ultimately served as a testament to the importance of vigilance and the power of technology in safeguarding our digital assets. Thanks to MUYERN TRUST HACKER, I emerged stronger and more resilient, ready to face whatever challenges the future may hold. Mail; muyerntrusted[At] mail-me .c o m  
    • Do you have still this problem? (I have it too so I want to know if you did something with it)  
    • Thank you very much, the mod worked. I almost destroyed my computer out of anger because I couldn't find the error.
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.