
creatorfromhell
-
Posts
21 -
Joined
-
Last visited
Posts posted by creatorfromhell
-
-
If I am correct, the world height is set via the world file format(Anvil) and has a max build height of 256, but I could be wrong. So, I would assume if you wanted to change it then you'd have to a modify the Anvil file format, or b create your own file format and try to make it compatible with the vanilla Minecraft file format.
-
Yeah it lead to that part where it returned something.. But what was that value at that specific time?
I don't know what you mean, but
this.biome.getRandomWorldGenForTrees(this.randomGenerator)
leads to net.minecraft.world.biome.BiomeGenBase.getRandomWorldGenForTrees(Random par1Random)
-
Just a small update. It does the same thing when using the vanilla Minecraft biome decorator.
-
After stepping into the break point it led to this part of MysticBiomeGenBase.java:
and here is MysticWorldGenTrees.java:
-
Hello. I have created a new dimension, but when I try to travel to it I get an error. Please help and thanks in advance.
Error:
http://paste.ubuntu.com/5585271/
MysticBiomeDecorator.java:
-
This may not be needed, but for my creative tab I had to also add another method, which is as follows.
LanguageRegistry.instance().addStringLocalization("itemGroup.TabName", "en_US", "Name Displayed In-game");
-
-
I recently made my own dimension and there are random dark spots around the world, but when I build on them or destroy a block that has black on it all the black disappears. My question is, is this a problem with my dimension or is it a problem with minecraft itself?
-
i do it differently then you maybe try this
EntityPlayerMP thePlayer = (EntityPlayerMP) par3EntityPlayer; if (par3EntityPlayer.dimension != MysticRealms.dimensionID) { thePlayer.mcServer.getConfigurationManager().transferPlayerToDimension(thePlayer, MysticRealms.dimensionID , new YourTeleporter(thePlayer.mcServer.worldServerForDimension(MysticRealms.dimensionID))); } else { thePlayer.mcServer.getConfigurationManager().transferPlayerToDimension(thePlayer, 0, new YourTeleporter(thePlayer.mcServer.worldServerForDimension(0))); }
Thanks! It's not really the approach I wanted to take, but it works and I can handle not getting my way once
-
I too want to know this.
I could sit here and type out an explanation for how you could achieve this, but I decided that I'd just google for an example/tutorial. From my search I found an open source mod that added a new dimension called "Inverted World" and I think you should study what the developer of it did and experiment yourself with it possibly. Here is the link https://github.com/tuyapin/InvertedWorld . Now I'm not saying to take the mod and call it your own, but take advantage of it being open source and study it.
-
-
-
-
-
I know what you're talking about and I'm going to try it then post my results.
-
onItemRightClick does not contain a method for EntityPlayerMP
-
you could try this for dimension change:
MinecraftServer.getServer().getConfigurationManager().transferPlayerToDimension(par3EntityPlayer, MysticRealm.dimensionID);
I don't think that would work since par3EntityPlayer is not EntityPlayerMP as in transferPlayerToDimension(EntityPlayerMP par1, int dimesnionid).
-
New Dimension Error
in Modder Support
Posted
Bump