Tagged Questions
2
votes
1answer
164 views
How to make an articulated mob in Minecraft?
I am attempting to make a sea serpent, and I want to know how to make it be able to turn in any place, or at each 'segment', somewhat like the snakes in mocreatures. I know how to make mobs in ...
-1
votes
2answers
141 views
Are there any good guides for making mods for Minecraft? [closed]
I've been coding in Java for 5 months at work now, and having past experience with programming in other languages, modifying existing code at Uni etc. I feel like I want to get started on (read: ...
1
vote
1answer
400 views
First Minecraft mod not working: make a new sword
I am making my first mod and cannot see what is wrong with it. I am using MCP and Modloader.
For my first mod I was going to make swords.
I started with making a new EnumToolMaterials
WOOD(0, 59, ...
6
votes
1answer
768 views
Minecraft Mod portable torch/lantern
I have just started making a mod for minecraft, I learned how to make items and import custom png's and have gotten all of that to work. I have been searching around the code trying to find a way to ...
0
votes
0answers
514 views
How do i make a minecraft server mod? [duplicate]
Possible Duplicate:
Mods for Minecraft Server - how does it work?
I have made some minecraft client mods, but i've started a server a mounth ago and i want to make a mod for it, but i cant ...
1
vote
2answers
582 views
How do i get the X,Y and Z of the way my unit is facing?
I have the yaw and pitch of my unit at my disposal, I know if I use polar to cartesian conversion I'll get the X and Y of each one of those two, but I need them combined to give me the x,y and z of ...
8
votes
4answers
4k views
How do you make Minecraft mods? [closed]
I'm new to making minecraft mods and I'm wondering what I need to do to get started.
14
votes
1answer
9k views
How do I add a custom mob to Minecraft?
Basically decided to make my own mob, I have:
Created my mob's entity class
Created my mobs model class
Drawn the model
Added the function call for addMapping within the EntityList class
I'm stuck ...
8
votes
3answers
7k views
Mods for Minecraft Server - how does it work?
Minecraft server comes as a single jar. How are mods developed? How do they interact with the original jar? What is there under the hood?
What technologies are involved there? I'm mostly a C++/Python ...