Ok, so recently, I have gotten into modding, and was trying to make an NPC.
I coded it correctly (I think) and cannot find out what's causing these errors. Please help!
Errors:
warning: [options] bootstrap class path not set in conjunction with -source 1.6
src\minecraft\net\minecraft\src\ModelMiner.java:3: error: class ModelMob is public, should be declared in a file named ModelMob.java
public class ModelMob extends ModelBiped
^
src\minecraft\net\minecraft\src\RenderMiner.java:14: error: cannot access ModelMiner
public RenderMiner(ModelMiner modelbase, float f)
^
bad source file: src\minecraft\net\minecraft\src\ModelMiner.java
file does not contain class net.minecraft.src.ModelMiner
Please remove or make sure it appears in the correct subdirectory of the sourcepath.
I coded it correctly (I think) and cannot find out what's causing these errors. Please help!
Errors:
warning: [options] bootstrap class path not set in conjunction with -source 1.6
src\minecraft\net\minecraft\src\ModelMiner.java:3: error: class ModelMob is public, should be declared in a file named ModelMob.java
public class ModelMob extends ModelBiped
^
src\minecraft\net\minecraft\src\RenderMiner.java:14: error: cannot access ModelMiner
public RenderMiner(ModelMiner modelbase, float f)
^
bad source file: src\minecraft\net\minecraft\src\ModelMiner.java
file does not contain class net.minecraft.src.ModelMiner
Please remove or make sure it appears in the correct subdirectory of the sourcepath.
4
at the top of ModelMiner.java you need to put package net.minecraft.src; for the bottom error and the top error you need to rename ModelMob ro ModelMiner
Could you please post the code?
Watch HenryTheCoder on Youtube. o-o
That's where I got the template. Followed his directions, etc. etc. and still these errors. Any idea?
