
MineModder2000
Members-
Posts
298 -
Joined
-
Last visited
Everything posted by MineModder2000
-
(SOLVED) [1.14.4] Custom Spawn Conditions
MineModder2000 replied to MineModder2000's topic in Modder Support
Okay I no longer need them not spawn in certain areas. What I want now is to have them only spawn only initial chunk creation, to avoid them popping in constantly. -
How do I add my own weather effects?
-
(SOLVED) [1.14.4] Custom Spawn Conditions
MineModder2000 replied to MineModder2000's topic in Modder Support
Well do you know of any good way to not have entities spawn within a certain zone, villages for example? -
(SOLVED) [1.14.4] Custom Spawn Conditions
MineModder2000 replied to MineModder2000's topic in Modder Support
I was afraid of such.... I think I will figure something else out instead. -
(SOLVED) [1.14.4] Custom Spawn Conditions
MineModder2000 replied to MineModder2000's topic in Modder Support
Okay... How about as far as checking whether a certain block type is not too close to the spawn position? if (event.getEntity().getPosition())..... -
Okay so I got a vanilla mob to spawn in over world like so (Only these guys and Zombie Pigman spawn correctly using this code) : for (Biome biome : ForgeRegistries.BIOMES) { biome.getSpawns(EntityClassification.MONSTER).add(new Biome.SpawnListEntry(EntityType.PILLAGER, 100, 3, 5)); } Now I want to give them a spawn condition, such as not spawning within a certain distance from a specified block. Possible?
-
[1.14.4] Modifying Vanilla Content
MineModder2000 replied to MineModder2000's topic in Modder Support
Ah screw it, I hate reflection. Thanks anyways. -
[1.14.4] Modifying Vanilla Content
MineModder2000 replied to MineModder2000's topic in Modder Support
Possible to change GUI text for villagers? Change "Butcher" or "Armorer" to something else for example. -
(NEVERMIND) [1.14.4] Custom Entity not Rendering Texture
MineModder2000 replied to MineModder2000's topic in Modder Support
Oh I've attempted this already, this is not a foreign concept to me. Things got ugly, and I couldn't really copy everything due to class dependencies, inaccessible objects and such. Well of course I already knew about the Model classes, did you not see in my Renderer class I am already using PlayerModel. Using the model alone is not enough, its very blocky and out of proportion, the arms especially. -
(NEVERMIND) [1.14.4] Custom Entity not Rendering Texture
MineModder2000 replied to MineModder2000's topic in Modder Support
Right, but it's not enough to have the skin, it doesn't render as it should because I am extending MobRenderer directly without the specifics of PlayerRenderer. But if I extend PlayerRenderer then I can't extend TameableEntity in my Entity class without breaking my Factory class (due to the generic parameters). So I don't think this will be possible. -
(NEVERMIND) [1.14.4] Custom Entity not Rendering Texture
MineModder2000 replied to MineModder2000's topic in Modder Support
Oh I see, it's "Steve". But this doesn't do, the model is correct but it doesn't render correctly as the Renderer class is extending MobRenderer directly and not PlayerRenderer. I don't see that there is any good way to have the Entity extend TameableEntity, while it renders as a Player or other Entity. -
(NEVERMIND) [1.14.4] Custom Entity not Rendering Texture
MineModder2000 replied to MineModder2000's topic in Modder Support
Oh boy, I am not going to even be able to get all of that to work. I'd rather just extend PlayerRenderer, but then I can't extend TameableEntity in my Entity class without getting type conversion errors in the Factory class. -
(NEVERMIND) [1.14.4] Custom Entity not Rendering Texture
MineModder2000 replied to MineModder2000's topic in Modder Support
How do I make it look like PlayerEntity then? I've tried putting other strings in there too, like "creeper", to no avail. -
(SOLVED) [1.14.4] Custom Mob not Spawning
MineModder2000 replied to MineModder2000's topic in Modder Support
I'll go through it more carefully later, for now though I figured out a different way to get my mob to spawn (it replaces regular skeletons with a certain chance in checkSpawn Event), and this is a more desirable way for me. In the future though I'll probably have to learn this approach. -
Ignore / delete comment
-
(SOLVED) [1.14.4] Custom Mob not Spawning
MineModder2000 replied to MineModder2000's topic in Modder Support
Going to have to explain this one more. -
Having trouble spawning my new mob naturally (though I can through events and what not). I am able to spawn vanilla mobs in over-world using this code, such as ZombiePigman, but it won't work for one I made. Entity Class Main Class
-
How create a custom mob / entity in 1.14 and above
MineModder2000 replied to Bantix's topic in Modder Support
Really... okay. I thought since it was related..... -
How create a custom mob / entity in 1.14 and above
MineModder2000 replied to Bantix's topic in Modder Support
Having trouble spawning my new mob naturally (though I can through events and what not) : Main Mod EntityClass -
How create a custom mob / entity in 1.14 and above
MineModder2000 replied to Bantix's topic in Modder Support
Just followed these steps and made a new mob, it renders and behaves corruptly AI-wise, however it cannot be hit for some reason. Anyway I try to attack it, the mob is simply unfazed. Please help. SOLVED. -
In terms of the git method, its a known issue, it was telling me the source folders were missing but even after linking them the error wouldn't disappear. With physically cloning the work space, I was getting build path errors, i could figure out how to resolve them but why bother, I like my newly discovered method of just having multiple src folders.