-
Posts
140 -
Joined
-
Last visited
Everything posted by HoBoS_TaCo
-
I don't have access to the Minecraft source right now so I can't check if what i'm saying is going to work. Right now it seems that your block checks for an update on each block update (which seems to occur when the block is moved or a adjacent block is modified), rather than on each game tick. Are you using a separate tick handler or are you using the onUpdate() or similar method in your block class?
-
You could create a new world type, use the hell world chunk provider(since it only has one biome), and set the biome's min/max height to the highest possible. The nether should show a bit more depth on how to do it since that's basically what you're making.
-
Register blocks while loading (or joining) a world
HoBoS_TaCo replied to miscsubbin's topic in Modder Support
You could register it as one block and just change the properties on generation? It would conserve block id's and so forth. -
Why not use the LivingUpdate event, check if it's a cow then perform EntityAIEatGrass.updateTask() ?
-
Couldn't you use EntityJoinWorld event, check if an instance of a hostile mob is spawning and if it's in range of a 'holy entity', if so then cancel the event?
-
Would it be possible to have a RenderPlayer hook or event added. I'm trying to add a wearable backpack to my mod but I can't find a place to insert code to render it onto the player. Could this be added or could someone tell me where to look? Thanks in advance.
-
[SOLVED][1.4.2]Override(Overwrite ?) an existing biome
HoBoS_TaCo replied to TheDadamb's topic in Modder Support
What about this? GameRegistry.removeBiome(BiomeGenBase.oldBiome); GameRegistry.addBiome(ModClass.newBiome); -
Download this, unzip into your minecraft folder and rename fml_libs to lib.
-
Is it in your @Init method?
-
Check out dries007's SimpleServer mods.
-
If you don't give more information to as why it doesn't work Lex will come back and ban you. What and how didn't it work? Why no logs? Why and how didn't MultiMC work?
-
He means the ForgeModLoader-client.log from your .minecraft folder. If you can't find the log install forge using MultiMC, it's a lot easier.
-
I currently use a wrapper/workaround but I love to be able to do it directly. I don't see why we have to do this workaround to do something as simple as setting the tree rate of a biome?
-
Try: EntityRegistry.removeSpawn(EntityCreeper.class, EnumCreatureType.monster, WorldType.base12Biomes); As far as I know you need to specify the biome/biomes, hence the WorldType.base12Biomes.
-
What version of forge and minecraft are you running?
-
Hmm I have never gotten this before until today when I tried to set up a #303 server. I used the same method I have always used and now it's giving me a problem. The same problem is happening with a #251 server as well. I'm going to look into this a bit more.
-
Having a bit of a problem running my mod on a server
HoBoS_TaCo replied to BassPro241's topic in Modder Support
This problem is with your armour. This should help, it worked for me. Just don't implement ITextureProvider. -
Corrupt minecraft_server.jar? Have you tried redownloading it?
-
The problem is with how you install forge. How do you do it?
-
Need some help putting Forge on a bukkit server.
HoBoS_TaCo replied to xGcoinx's topic in Support & Bug Reports
Forge doesn't work with Bukkit on 1.3 yet. The best place to look for a release is http://www.mcportcentral.co.za/ -
[*]You don't need ModLoader, it should be a blank, un-modded jar. [*]I find MultiMC is a lot better use. [*]Somehow when installing the adt class wasn't installed. I know it's your choice to use MagicLauncher but MultiMC has a one-click install for forge, it's a lot easier.
-
Could someone please tell me what spawnFuzz is?
-
Hey i need help interpreting this crash message
HoBoS_TaCo replied to goldragon227's topic in General Discussion
java.lang.NoSuchMethodError: net.minecraftforge.common.DimensionManager.saveDimensionDataMap()Lan; It looks like the method was called but it does not exist. Try forge build #298 since a number of changes occurred in build #299. http://jenkins.minecraftforge.net/job/forge/