Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.minecraft.src;
- import java.util.*;
- import java.util.Map;
- public class mod_Minepocalypse extends BaseMod
- {
- public mod_Minepocalypse()
- {
- ModLoader.RegisterEntityID(EntityCrawler.class, "Crawler", ModLoader.getUniqueEntityId());
- ModLoader.AddSpawn(EntityCrawler.class, 3, 3, 3, EnumCreatureType.monster);
- }
- public void AddRenderer(Map map)
- {
- map.put(EntityCrawler.class, new RenderCrawler(new ModelCrawler(), 0.5F));
- }
- public String Version()
- {
- return "Minepocalypse";
- }
- }
- package net.minecraft.src;
- public class RenderCrawler extends RenderLiving
- {
- public RenderCrawler(float f)
- {
- super(new ModelCrawler(), f);
- }
- public void render(EntityLiving entityliving, double d, double d1, double d2,
- float f, float f1)
- {
- super.doRenderLiving(entityliving, d, d1, d2, f, f1);
- }
- public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2,
- float f, float f1)
- {
- render(entityliving, d, d1, d2, f, f1);
- }
- public void doRender(Entity entity, double d, double d1, double d2,
- float f, float f1)
- {
- render((EntityLiving)entity, d, d1, d2, f, f1);
- }
- }
- 2011-10-04 14:41 - commands.__init__ - INFO - == MCP v4.4 ==
- 2011-10-04 14:41 - commands.__init__ - DEBUG - OS : win32
- 2011-10-04 14:41 - recompile.main - INFO - > Recompiling client...
- 2011-10-04 14:41 - commands.recompile - DEBUG - recompile: 'javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.jar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath src/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/minecraft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java conf/patches/*.java'
- 2011-10-04 14:41 - commands.recompile - ERROR - javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/bin/minecraft.jar;jars/bin/jinput.jar;jars/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath src/minecraft -d bin/minecraft src/minecraft\net\minecraft\client\*.java src/minecraft\net\minecraft\isom\*.java src/minecraft\net\minecraft\src\*.java conf/patches/*.java failed.
- 2011-10-04 14:41 - commands.recompile - ERROR - Return code : 1
- 2011-10-04 14:41 - commands.recompile - DEBUG - src\minecraft\net\minecraft\src\mod_Minepocalypse.java:17: cannot find symbol
- 2011-10-04 14:41 - commands.recompile - DEBUG - symbol : constructor RenderCrawler(net.minecraft.src.ModelCrawler,float)
- 2011-10-04 14:41 - commands.recompile - DEBUG - location: class net.minecraft.src.RenderCrawler
- 2011-10-04 14:41 - commands.recompile - DEBUG - map.put(EntityCrawler.class, new RenderCrawler(new ModelCrawler(), 0.5F));
- 2011-10-04 14:41 - commands.recompile - DEBUG - ^
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: src\minecraft\net\minecraft\src\NetworkMasterThread.java uses or overrides a deprecated API.
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:deprecation for details.
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Some input files use unchecked or unsafe operations.
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:unchecked for details.
- 2011-10-04 14:41 - commands.recompile - DEBUG - 1 error
- 2011-10-04 14:41 - commands.recompile - ERROR -
- 2011-10-04 14:41 - commands.recompile - ERROR - == ERRORS FOUND ==
- 2011-10-04 14:41 - commands.recompile - ERROR -
- 2011-10-04 14:41 - commands.recompile - ERROR - src\minecraft\net\minecraft\src\mod_Minepocalypse.java:17: cannot find symbol
- 2011-10-04 14:41 - commands.recompile - ERROR - symbol : constructor RenderCrawler(net.minecraft.src.ModelCrawler,float)
- 2011-10-04 14:41 - commands.recompile - ERROR - location: class net.minecraft.src.RenderCrawler
- 2011-10-04 14:41 - commands.recompile - ERROR - map.put(EntityCrawler.class, new RenderCrawler(new ModelCrawler(), 0.5F));
- 2011-10-04 14:41 - commands.recompile - ERROR - ^
- 2011-10-04 14:41 - commands.recompile - ERROR -
- 2011-10-04 14:41 - commands.recompile - ERROR - 1 error
- 2011-10-04 14:41 - commands.recompile - ERROR - ==================
- 2011-10-04 14:41 - commands.recompile - ERROR -
- 2011-10-04 14:41 - recompile.main - INFO - > Done in 10.29 seconds
- 2011-10-04 14:41 - recompile.main - INFO - > Recompiling server...
- 2011-10-04 14:41 - commands.recompile - DEBUG - recompile: 'javac.exe -g -source 1.6 -target 1.6 -classpath "lib/;lib/*;jars/minecraft_server.jar" -sourcepath src/minecraft_server -d bin/minecraft_server src/minecraft_server\net\minecraft\server\*.java src/minecraft_server\net\minecraft\src\*.java '
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: src\minecraft_server\net\minecraft\src\NetworkMasterThread.java uses or overrides a deprecated API.
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:deprecation for details.
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Some input files use unchecked or unsafe operations.
- 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:unchecked for details.
- 2011-10-04 14:41 - recompile.main - INFO - > Done in 13.12 seconds
Add Comment
Please, Sign In to add comment