Page 1 of 1

Minecraft MCP

Posted: Thu Apr 21, 2011 3:20 am
by bamdur123
It basically allows you to modify the game completely.
(i made a chicken with a cow texture and dropped eggs every second)

http://www.minecraftwiki.net/wiki/Minecraft_Coder_Pack

You will need JDK and eclipse

Re: Minecraft MCP

Posted: Thu Apr 21, 2011 9:08 am
by Grev
Wow, thanks! What's JDK and eclipse though?

Re: Minecraft MCP

Posted: Thu Apr 21, 2011 12:04 pm
by Twilight_Warrior
JDK = Java Development Kit
Java Eclipse is an IDE, or Integrated Development Environment

Essentially, if you don't know at least some basic Java programming, this probably isn't for you.

Re: Minecraft MCP

Posted: Thu Apr 21, 2011 6:01 pm
by bamdur123
What he said^ but you might understand some basic functions even without knowing that much java

Re: Minecraft MCP

Posted: Fri May 13, 2011 8:59 pm
by CressAlbane
I started working with this but there appears to be a problem with the file RenderGlobal.
Here is the log:
Hidden/Spoiler:
2011-05-13 20:54 - commands.recompile - ERROR - == ERRORS FOUND ==
2011-05-13 20:54 - commands.recompile - ERROR -
2011-05-13 20:54 - commands.recompile - ERROR - src\minecraft\net\minecraft\src\RenderGlobal.java:441: possible loss of precision
2011-05-13 20:54 - commands.recompile - ERROR - found : int
2011-05-13 20:54 - commands.recompile - ERROR - required: byte
2011-05-13 20:54 - commands.recompile - ERROR - byte byte0 = j1;
2011-05-13 20:54 - commands.recompile - ERROR - ^
2011-05-13 20:54 - commands.recompile - ERROR -
2011-05-13 20:54 - commands.recompile - ERROR - 1 error
2011-05-13 20:54 - commands.recompile - ERROR - ==================
How can I fix this? I'm following some tutorials to add a block type, but I haven't changed anything yet.

Re: Minecraft MCP

Posted: Thu May 19, 2011 12:05 pm
by 501st_commander
Block type are Bytes not Int
2011-05-13 20:54 - commands.recompile - ERROR - found : int
2011-05-13 20:54 - commands.recompile - ERROR - required: byte

Im not sure if you did this, or its a Notch error, but whatever it is, its on line 441 in the file RenderGlobal.java

Re: Minecraft MCP

Posted: Tue May 24, 2011 8:24 pm
by CressAlbane
I did not edit this file, I looked here and I'm not thinking this will strongly affect the game play.
I also read that MCP 3.x is not the best to use.