Jump to content

[1.7.10] Custom world type


theCorvid

Recommended Posts

My question is very simple: is there any documentation anywhere on creating a custom world type for 1.7.10? I've found a lot of tutorials for previous versions but they don't seem to work for this version. I've also tried looking through the Biomes O Plenty source code, but was unable to glean anything useful from it because it's such a huge mod and I don't even know where to start. Can anybody shed some light on this topic?

Link to comment
Share on other sites

Well, there is not much to say about WorldTypes.

 

You can make new class that extends WorldType and simply initialize it.

    public WorldType MYCUSTOM = new CustomWorldType(ID, "customName", versionInt);

 

That is all. Note that Minecraft allows you to have 16 WorldTypes, from which few IDs are alredy taken.

1.7.10 is no longer supported by forge, you are on your own.

Link to comment
Share on other sites

Well, there is not much to say about WorldTypes.

 

You can make new class that extends WorldType and simply initialize it.

    public WorldType MYCUSTOM = (new CustomWorldType(ID, "customName"));

 

That is all. Note that Minecraft allows you to have 16 WorldTypes, from which few IDs are alredy taken.

Forge automatically extends the limit using ArrayCopy. Since WorldType is only effective on server side, there is theoretically no limit for WorldType. So don't worry about that.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

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



×
×
  • Create New...

Important Information

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