larsgerrits
Members-
Posts
3462 -
Joined
-
Last visited
-
Days Won
17
Everything posted by larsgerrits
-
What do you mean with "tekkit". It isn't a mod or anything, it's a "illegal" modpack. I think your trying to say that your liquid wants to be compatible with one of the mods IN tekkit. But if you register your liquid on the normal way, it should me compatible with BuildCraft or Redpower or other mods with liquid transport tubes or something.
-
I suggest following Pahimar's Lets Mod Series EP 4. Theres some handy tricks for updating Forge/MCP and different workspaces. Link:
-
What should I replace UCReferences.MOD_ID with? Your modid that you used in your @Mod annotation in your main class
-
Yeah I did that, but it didn't work for me. And I it gave me errors, so I deleted the armor class because I wanted to do something else without errors. So I don't have the armor class anymore, can you show me how to set up a good armor class? Yeah, this is my SapphireArmor class: Note the last method getIsRepairable: you only want to have this if you want your armor to be repairable.
-
For armor, did your armor class implement IArmorTextureProvider. It says that it's deprecated but it still works.
-
I suggest you take a look at the milk bucket class
-
No, you'll need to make a custom model for your block.
-
How to add liquid tanks to your container?
larsgerrits replied to larsgerrits's topic in Modder Support
Thank you, that should help. -
How to add liquid tanks to your container?
larsgerrits replied to larsgerrits's topic in Modder Support
Anyone? -
Ok, i've made a machine and i want it to have a liquid tank like the combustion engine from buildcraft? Does anyone how to add one of those?
-
Ok, i made a custom furnace and it works almost, but it won't smelt the item. Here is the TileEntityCleaner.java Hope someone can help me with this problem.
-
Sorry for all these threads :( Another help is needed
larsgerrits replied to AssassinHero's topic in Modder Support
Is your model class extending ModelBiped or ModelBase? It should be ModelBase for a custom model and did you have this line of code in your ClientProxy: -
BTW, use spoilers and the code thing. That makes it much easier to read it for ourself and for us. You can access those when writing a new comment/topic. Example:
-
That could really help us trying to figure out the problem.
-
Are you using MC 1.5.1/1.5.2? So yes, search for some tutorials on the internet for MC 1.5.1/1.5.2. If your using a older MC version, I recommend updating because there are some big changes to the way items and blocks get there textures.
-
Does it actually work now? Cause i've made a new furnace and mine can't smelt the items. Do you mind taking a look at my code? It's on this thread: http://www.minecraftforge.net/forum/index.php/topic,8381.0.html
-
It seems like it can't find the class: chibill.AdditionalCrafting.Base. Does this class even exists?
-
A) The @Mod annotation has to be above the @NetworkMod annotation. B) You need to have a client packet handler and a server packet handler. Replace you @NetworkMod annotation with this: and change the ClientPacketHandler.class with your client packet handler class and the ServerPacketHandler.class with your server packet handler class Also, put this in your client packet handler class: And put this in your server packet handler class: This code is from my mod and it works for me.