Guest User

Untitled

a guest
Jan 5th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.23 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. import java.util.*;
  4. import java.util.Map;
  5.  
  6. public class mod_Minepocalypse extends BaseMod
  7. {
  8. public mod_Minepocalypse()
  9. {
  10. ModLoader.RegisterEntityID(EntityCrawler.class, "Crawler", ModLoader.getUniqueEntityId());
  11. ModLoader.AddSpawn(EntityCrawler.class, 3, 3, 3, EnumCreatureType.monster);
  12. }
  13.  
  14. public void AddRenderer(Map map)
  15. {
  16.  
  17. map.put(EntityCrawler.class, new RenderCrawler(new ModelCrawler(), 0.5F));
  18. }
  19.  
  20.  
  21. public String Version()
  22. {
  23. return "Minepocalypse";
  24. }
  25. }
  26.  
  27. package net.minecraft.src;
  28.  
  29. public class RenderCrawler extends RenderLiving
  30. {
  31.  
  32. public RenderCrawler(float f)
  33. {
  34. super(new ModelCrawler(), f);
  35. }
  36.  
  37. public void render(EntityLiving entityliving, double d, double d1, double d2,
  38. float f, float f1)
  39. {
  40. super.doRenderLiving(entityliving, d, d1, d2, f, f1);
  41. }
  42.  
  43. public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2,
  44. float f, float f1)
  45. {
  46. render(entityliving, d, d1, d2, f, f1);
  47. }
  48.  
  49. public void doRender(Entity entity, double d, double d1, double d2,
  50. float f, float f1)
  51. {
  52. render((EntityLiving)entity, d, d1, d2, f, f1);
  53. }
  54. }
  55.  
  56.  
  57. 2011-10-04 14:41 - commands.__init__ - INFO - == MCP v4.4 ==
  58. 2011-10-04 14:41 - commands.__init__ - DEBUG - OS : win32
  59. 2011-10-04 14:41 - recompile.main - INFO - > Recompiling client...
  60. 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'
  61. 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.
  62. 2011-10-04 14:41 - commands.recompile - ERROR - Return code : 1
  63. 2011-10-04 14:41 - commands.recompile - DEBUG - src\minecraft\net\minecraft\src\mod_Minepocalypse.java:17: cannot find symbol
  64. 2011-10-04 14:41 - commands.recompile - DEBUG - symbol : constructor RenderCrawler(net.minecraft.src.ModelCrawler,float)
  65. 2011-10-04 14:41 - commands.recompile - DEBUG - location: class net.minecraft.src.RenderCrawler
  66. 2011-10-04 14:41 - commands.recompile - DEBUG - map.put(EntityCrawler.class, new RenderCrawler(new ModelCrawler(), 0.5F));
  67. 2011-10-04 14:41 - commands.recompile - DEBUG - ^
  68. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: src\minecraft\net\minecraft\src\NetworkMasterThread.java uses or overrides a deprecated API.
  69. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:deprecation for details.
  70. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Some input files use unchecked or unsafe operations.
  71. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:unchecked for details.
  72. 2011-10-04 14:41 - commands.recompile - DEBUG - 1 error
  73. 2011-10-04 14:41 - commands.recompile - ERROR -
  74. 2011-10-04 14:41 - commands.recompile - ERROR - == ERRORS FOUND ==
  75. 2011-10-04 14:41 - commands.recompile - ERROR -
  76. 2011-10-04 14:41 - commands.recompile - ERROR - src\minecraft\net\minecraft\src\mod_Minepocalypse.java:17: cannot find symbol
  77. 2011-10-04 14:41 - commands.recompile - ERROR - symbol : constructor RenderCrawler(net.minecraft.src.ModelCrawler,float)
  78. 2011-10-04 14:41 - commands.recompile - ERROR - location: class net.minecraft.src.RenderCrawler
  79. 2011-10-04 14:41 - commands.recompile - ERROR - map.put(EntityCrawler.class, new RenderCrawler(new ModelCrawler(), 0.5F));
  80. 2011-10-04 14:41 - commands.recompile - ERROR - ^
  81. 2011-10-04 14:41 - commands.recompile - ERROR -
  82. 2011-10-04 14:41 - commands.recompile - ERROR - 1 error
  83. 2011-10-04 14:41 - commands.recompile - ERROR - ==================
  84. 2011-10-04 14:41 - commands.recompile - ERROR -
  85. 2011-10-04 14:41 - recompile.main - INFO - > Done in 10.29 seconds
  86. 2011-10-04 14:41 - recompile.main - INFO - > Recompiling server...
  87. 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 '
  88. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: src\minecraft_server\net\minecraft\src\NetworkMasterThread.java uses or overrides a deprecated API.
  89. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:deprecation for details.
  90. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Some input files use unchecked or unsafe operations.
  91. 2011-10-04 14:41 - commands.recompile - DEBUG - Note: Recompile with -Xlint:unchecked for details.
  92. 2011-10-04 14:41 - recompile.main - INFO - > Done in 13.12 seconds
Add Comment
Please, Sign In to add comment