I too need some help now. I'm currently developing a mod that adds a whole new meaning to slimes. Iv'e gotten pretty far, but I can't for the life of me get the actual slime mob to work... I want to use the render and model for the slime and some of the entity aswell (basically a slime that spawns on the surface with of course different textures) but the: (sorry i don't know how to do spoilers :/)
public void addRenderer(Map var1)
{
var1.put(EntityNAME.class, new RenderSlime(new ModelSlime(),5f));
}
}
Doesn't work because it says: the constructor RenderSlime(ModelSlime, float) is undefined. Now I am using forge, but modloader stuff does work with forge plus I even did this on ModLoader before i switched to forge, but even then it still didn't work...
Please help me Iv'e been at this for about a month (including when i was modding with ModLoader) even if it edits base classes.. i just want this to work (BTW, i loveeeee your vids :D)
Finally. A reason to learn JAVA. Thanks man. Great tutorials. I have all 22 of them on my hard drive now with all the code and pics so I can learn about this as much as I can even if I am offline. ( Which I might be for a couple weeks. So this gives me something to do. )
Again, thank you very much for taking the time for this. THUMBS WAY UP.
Okay, Ive just finished watching the Part 3 of creating a mob, ive done everything (well i think) and my mob is invisible. I spawned it on top of a cactus, and it drops its drop (slimeball), and i can hear it walking around and such, but no mob :c any code i should post, just tell me, ill post it. Thanks.
Hey minecrafters. I am doing mod reviews and i need requests from people on what ones to do. In the videos i will show how to install it and i will review it. PLEASE COME TO MY CHANNEL!
}
public String getVersion()
{
return "3.14159265";
}
}
basemod and modname both show up and error saying cannot be resolved to a type, please help ive followed all of your instructions yet i still cant figure out what im doing wrong.
}
public String getVersion()
{
return "3.14159265";
}
}
basemod and modname both show up and error saying cannot be resolved to a type, please help ive followed all of your instructions yet i still cant figure out what im doing wrong.
Is the constructor
public modNAME(int)
defined in modNAME.java?
Rollback Post to RevisionRollBack
GENERATION 98: The first time you see this, copy it into your signature on any forum and subtract 1 from the generation. Social experiment.
To post a comment, please login or register a new account.
public void addRenderer(Map var1)
{
var1.put(EntityNAME.class, new RenderSlime(new ModelSlime(),5f));
}
}
Doesn't work because it says: the constructor RenderSlime(ModelSlime, float) is undefined. Now I am using forge, but modloader stuff does work with forge plus I even did this on ModLoader before i switched to forge, but even then it still didn't work...
Please help me Iv'e been at this for about a month (including when i was modding with ModLoader) even if it edits base classes.. i just want this to work
I was wondering if anyone knew how to get pictures is a forum post
http://www.minecraft...aft-version-01/
Again, thank you very much for taking the time for this. THUMBS WAY UP.
http://www.oracle.co...ds-1859576.html
Worked for me just fine.
Remember, always get the latest JDK.. in this case at the time I am writting this its :
Java SE Development Kit 7u9
//RubySlippers public static final Item rubyslippers = (new ItemArmor(3057,EnumArmorMaterial.DIAMOND, 5, 3 ).setItemName("Ruby Slippers"));Because armor is supposed to be new ItemArmor.
It has worked fine for all my other things
DON'T WORRY!
Download My New Mod HERE:
http://www.minecraftforum.net/topic/2099817-wip-164-forge-mcreator-gun-battle-mod/
http://www.youtube.com/user/7991matt?feature=mhee
Thanks
package net.minecraft.src;
import java.util.Random;
public class mod_NAME extends BaseMod
{
public static final Item NAMEhere = new ItemNAME(2085).setItemName("NAME");
public void load()
{
NAMEhere.iconIndex = ModLoader.addOverride("/gui/items.png" , "/items/pic.png");
ModLoader.addName(NAMEhere, "Ingame -Name");
}
public String getVersion()
{
return "3.14159265";
}
}
basemod and modname both show up and error saying cannot be resolved to a type, please help ive followed all of your instructions yet i still cant figure out what im doing wrong.
Is the constructor
defined in modNAME.java?