Posted October 6, 201311 yr Hello, what is the proper way to spawn entities with forge? I was using this: ModLoader.addSpawn(EntityCow2.class, 1, 1, 4, EnumCreatureType.monster); But with this, the entity was spawning like hell, especially in a flat world. burnner_
October 6, 201311 yr No. Because you're doing it through Forge ModLoader. EntityRegistry.addSpawn(EntityBlinkDog.class, 8, 2, 4, EnumCreatureType.monster, BiomeGenBase.plains); And for spawn eggs: EntityList.addMapping(EntityBlinkDog.class, "Blink Dog", 4, 14342901, 8026845); You'll have to look up what each of the ints do, the only ones I remember are the second two in the spawn egg (the big ones): they refer to the base and spot color on the egg icon. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
October 6, 201311 yr Author I replaced it with: EntityRegistry.addSpawn(EntityCow2.class, 60, 1, 4, EnumCreatureType.creature); Problem: now it doesn't spawn at all
October 7, 201311 yr You'll have to add a last perimeter to addSpawn. That's the list of biomes your mob can spawn in. The way you have it now it won't spawn in any biome.
October 7, 201311 yr oh well, i thought thisway it will spawn everywhere. ill try it Nope, you have to use a line for every biome. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.