Jump to content

noonzark

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by noonzark

  1. Yes like the eggs that are ingame already, and i made a new mob which can spawn naturally and can be spawned with an egg, but i cant see them anywhere and when i try to spawn one, their invisible
  2. Im making a mod and added a egg spawner
  3. srry for miss spelling things i was rushing to get something done
  4. well im still learning code so if you dont want to help ill figure it out my self
  5. so cause i have the server jar too i have to register it there to, umm one question can i just copy and paste my class files into the server one?
  6. iv got a problem iv figured out how to add npc eggs so that i can spawn them but there invisible and i know there there cause i can here them screaming i made there sounds to zombie pig men so i hope someone can help me thx
  7. so true, iv actually figured out alot of things by just looking at the code and yes Jeb has fucked alot of the code around but its all about messing around and trying different things, you should get it soon thx for the advice to man :D
  8. if you can could you give me code to work with cause all the tutorials for modding npcs are out dated and i think that minecraft has changed some things
  9. its eclipse, minecraft runs fine but now i got a new problem i changed EnumCreatureType.creature to Mob and now minecraft crashes heres my code if you want to help out ///////////////////////////////////EntityTest\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ package net.minecraft.src; import java.util.Random; public class EntityTest extends EntityMob { public EntityTest(World world) { super(world); texture = "/Entity/Guy.png"; moveSpeed = 0.5F; } public int getMaxHealth() { return 20; } protected String getLivingSound() { return"mob.villager.default"; } protected String getHurtSound() { return"mob.villager.defaulthurt"; } protected String getDeathSound() { return"mob.villager.defaultdeath"; } protected int getDropItemId() { return Item.ingotIron.shiftedIndex; } protected boolean canDespawn() { return false; } } /////////////////////////////////////////////////////////////mod_Test\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ package net.minecraft.src; import java.util.Map; public class mod_Test extends BaseMod { public void load() { ModLoader.registerEntityID(EntityTest.class, "Test", ModLoader.getUniqueEntityId()); ModLoader.addSpawn(EntityTest.class, 1, 1, 5, EnumCreatureType.monster); } public void addRenderer(Map map) { map.put(EntityTest.class, new RenderBiped(new ModelBiped(), 0.5F)); } public String getVersion() { return "1.3.2"; } }
  10. I need help every time i test my mod on eclipse it says Skipping Entity with id test or something like that this is my code. I hope someone can help EntityTest.class package net.minecraft.src; import java.util.Random; publicclass EntityTest extends EntityCreature { public EntityTest(World world) { super(world); texture = "/Entity/Guy.png"; moveSpeed = 0.5F; } publicint getMaxHealth() { return 20; } protected String getLivingSound() { return"mob.villager.default"; } protected String getHurtSound() { return"mob.villager.defaulthurt"; } protected String getDeathSound() { return"mob.villager.defaultdeath"; } protectedint getDropItemId() { return Item.ingotIron.shiftedIndex; } protectedboolean canDespawn() { returnfalse; } } mod_Test.java package net.minecraft.src; import java.util.Map; publicclass mod_Test extends BaseMod { publicvoid load() { ModLoader.registerEntityID(EntityTest.class, "Test", ModLoader.getUniqueEntityId()); ModLoader.addSpawn(EntityTest.class, 12, 14, 18, EnumCreatureType.creature); } publicvoid AddRenderer(Map map) { map.put(EntityTest.class, new RenderBiped(new ModelBiped(), 0.5F)); } public String getVersion() { return"1.3.2"; } }
  11. it was the first pic of a client launcher i saw
  12. latest one i just want to change it by adding a picture or movie behind it
  13. hey every one im kind of new to modding and java coding but know lots already, what i want help with is modding the minecraft login screen if someone could help me out that would be great all i need to know is what the java name is in eclipse and may be some examples on how to do some things with it This is what i want to change
×
×
  • Create New...