Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.43 KB | None | 0 0
  1. C:\Users\kam\Desktop\customkb>javac EntityHuman.java
  2. EntityHuman.java:3: error: package com.google.common.base does not exist
  3. import com.google.common.base.Charsets;
  4. ^
  5. EntityHuman.java:4: error: package com.google.common.collect does not exist
  6. import com.google.common.collect.Lists;
  7. ^
  8. EntityHuman.java:5: error: package com.mojang.authlib does not exist
  9. import com.mojang.authlib.GameProfile;
  10. ^
  11. EntityHuman.java:12: error: package org.bukkit.craftbukkit.entity does not exist
  12. import org.bukkit.craftbukkit.entity.CraftHumanEntity;
  13. ^
  14. EntityHuman.java:13: error: package org.bukkit.craftbukkit.entity does not exist
  15. import org.bukkit.craftbukkit.entity.CraftItem;
  16. ^
  17. EntityHuman.java:14: error: package org.bukkit.craftbukkit.inventory does not exist
  18. import org.bukkit.craftbukkit.inventory.CraftItemStack;
  19. ^
  20. EntityHuman.java:15: error: package org.bukkit.entity does not exist
  21. import org.bukkit.entity.Player;
  22. ^
  23. EntityHuman.java:16: error: package org.bukkit.event.entity does not exist
  24. import org.bukkit.event.entity.EntityCombustByEntityEvent;
  25. ^
  26. EntityHuman.java:17: error: package org.bukkit.event.player does not exist
  27. import org.bukkit.event.player.PlayerBedEnterEvent;
  28. ^
  29. EntityHuman.java:18: error: package org.bukkit.event.player does not exist
  30. import org.bukkit.event.player.PlayerBedLeaveEvent;
  31. ^
  32. EntityHuman.java:19: error: package org.bukkit.event.player does not exist
  33. import org.bukkit.event.player.PlayerDropItemEvent;
  34. ^
  35. EntityHuman.java:20: error: package org.bukkit.event.player does not exist
  36. import org.bukkit.event.player.PlayerItemConsumeEvent;
  37. ^
  38. EntityHuman.java:21: error: package org.bukkit.event.player does not exist
  39. import org.bukkit.event.player.PlayerVelocityEvent;
  40. ^
  41. EntityHuman.java:22: error: package org.bukkit.util does not exist
  42. import org.bukkit.util.Vector;
  43. ^
  44. EntityHuman.java:25: error: cannot find symbol
  45. public abstract class EntityHuman extends EntityLiving {
  46. ^
  47. symbol: class EntityLiving
  48. EntityHuman.java:27: error: cannot find symbol
  49. public PlayerInventory inventory = new PlayerInventory(this);
  50. ^
  51. symbol: class PlayerInventory
  52. location: class EntityHuman
  53. EntityHuman.java:28: error: cannot find symbol
  54. private InventoryEnderChest enderChest = new InventoryEnderChest();
  55. ^
  56. symbol: class InventoryEnderChest
  57. location: class EntityHuman
  58. EntityHuman.java:29: error: cannot find symbol
  59. public Container defaultContainer;
  60. ^
  61. symbol: class Container
  62. location: class EntityHuman
  63. EntityHuman.java:30: error: cannot find symbol
  64. public Container activeContainer;
  65. ^
  66. symbol: class Container
  67. location: class EntityHuman
  68. EntityHuman.java:31: error: cannot find symbol
  69. protected FoodMetaData foodData = new FoodMetaData(this); // CraftBukkit - add "this" to constructor
  70. ^
  71. symbol: class FoodMetaData
  72. location: class EntityHuman
  73. EntityHuman.java:43: error: cannot find symbol
  74. public BlockPosition bx;
  75. ^
  76. symbol: class BlockPosition
  77. location: class EntityHuman
  78. EntityHuman.java:47: error: cannot find symbol
  79. private BlockPosition c;
  80. ^
  81. symbol: class BlockPosition
  82. location: class EntityHuman
  83. EntityHuman.java:49: error: cannot find symbol
  84. private BlockPosition e;
  85. ^
  86. symbol: class BlockPosition
  87. location: class EntityHuman
  88. EntityHuman.java:50: error: cannot find symbol
  89. public PlayerAbilities abilities = new PlayerAbilities();
  90. ^
  91. symbol: class PlayerAbilities
  92. location: class EntityHuman
  93. EntityHuman.java:56: error: cannot find symbol
  94. private ItemStack g;
  95. ^
  96. symbol: class ItemStack
  97. location: class EntityHuman
  98. EntityHuman.java:61: error: cannot find symbol
  99. private final GameProfile bH;
  100. ^
  101. symbol: class GameProfile
  102. location: class EntityHuman
  103. EntityHuman.java:63: error: cannot find symbol
  104. public EntityFishingHook hookedFish;
  105. ^
  106. symbol: class EntityFishingHook
  107. location: class EntityHuman
  108. EntityHuman.java:70: error: cannot find symbol
  109. public CraftHumanEntity getBukkitEntity() {
  110. ^
  111. symbol: class CraftHumanEntity
  112. location: class EntityHuman
  113. EntityHuman.java:75: error: cannot find symbol
  114. public EntityHuman(World world, GameProfile gameprofile) {
  115. ^
  116. symbol: class World
  117. location: class EntityHuman
  118. EntityHuman.java:75: error: cannot find symbol
  119. public EntityHuman(World world, GameProfile gameprofile) {
  120. ^
  121. symbol: class GameProfile
  122. location: class EntityHuman
  123. EntityHuman.java:260: error: cannot find symbol
  124. protected void b(ItemStack itemstack, int i) {
  125. ^
  126. symbol: class ItemStack
  127. location: class EntityHuman
  128. EntityHuman.java:447: error: cannot find symbol
  129. private void d(Entity entity) {
  130. ^
  131. symbol: class Entity
  132. location: class EntityHuman
  133. EntityHuman.java:465: error: cannot find symbol
  134. public void die(DamageSource damagesource) {
  135. ^
  136. symbol: class DamageSource
  137. location: class EntityHuman
  138. EntityHuman.java:497: error: cannot find symbol
  139. public void b(Entity entity, int i) {
  140. ^
  141. symbol: class Entity
  142. location: class EntityHuman
  143. EntityHuman.java:521: error: cannot find symbol
  144. private Collection e(Entity entity) { // CraftBukkit - TODO: Check me?
  145. ^
  146. symbol: class Entity
  147. location: class EntityHuman
  148. EntityHuman.java:552: error: cannot find symbol
  149. public EntityItem a(boolean flag) {
  150. ^
  151. symbol: class EntityItem
  152. location: class EntityHuman
  153. EntityHuman.java:557: error: cannot find symbol
  154. public EntityItem drop(ItemStack itemstack, boolean flag) {
  155. ^
  156. symbol: class ItemStack
  157. location: class EntityHuman
  158. EntityHuman.java:557: error: cannot find symbol
  159. public EntityItem drop(ItemStack itemstack, boolean flag) {
  160. ^
  161. symbol: class EntityItem
  162. location: class EntityHuman
  163. EntityHuman.java:561: error: cannot find symbol
  164. public EntityItem a(ItemStack itemstack, boolean flag, boolean flag1) {
  165. ^
  166. symbol: class ItemStack
  167. location: class EntityHuman
  168. EntityHuman.java:561: error: cannot find symbol
  169. public EntityItem a(ItemStack itemstack, boolean flag, boolean flag1) {
  170. ^
  171. symbol: class EntityItem
  172. location: class EntityHuman
  173. EntityHuman.java:629: error: cannot find symbol
  174. protected void a(EntityItem entityitem) {
  175. ^
  176. symbol: class EntityItem
  177. location: class EntityHuman
  178. EntityHuman.java:633: error: cannot find symbol
  179. public float a(Block block) {
  180. ^
  181. symbol: class Block
  182. location: class EntityHuman
  183. EntityHuman.java:684: error: cannot find symbol
  184. public boolean b(Block block) {
  185. ^
  186. symbol: class Block
  187. location: class EntityHuman
  188. EntityHuman.java:688: error: cannot find symbol
  189. public void a(NBTTagCompound nbttagcompound) {
  190. ^
  191. symbol: class NBTTagCompound
  192. location: class EntityHuman
  193. EntityHuman.java:733: error: cannot find symbol
  194. public void b(NBTTagCompound nbttagcompound) {
  195. ^
  196. symbol: class NBTTagCompound
  197. location: class EntityHuman
  198. EntityHuman.java:763: error: cannot find symbol
  199. public boolean damageEntity(DamageSource damagesource, float f) {
  200. ^
  201. symbol: class DamageSource
  202. location: class EntityHuman
  203. EntityHuman.java:857: error: cannot find symbol
  204. protected boolean d(DamageSource damagesource, float f) { // void -> boolean
  205. ^
  206. symbol: class DamageSource
  207. location: class EntityHuman
  208. EntityHuman.java:888: error: cannot find symbol
  209. public void openSign(TileEntitySign tileentitysign) {}
  210. ^
  211. symbol: class TileEntitySign
  212. location: class EntityHuman
  213. EntityHuman.java:890: error: cannot find symbol
  214. public void a(CommandBlockListenerAbstract commandblocklistenerabstract) {}
  215. ^
  216. symbol: class CommandBlockListenerAbstract
  217. location: class EntityHuman
  218. EntityHuman.java:892: error: cannot find symbol
  219. public void openTrade(IMerchant imerchant) {}
  220. ^
  221. symbol: class IMerchant
  222. location: class EntityHuman
  223. EntityHuman.java:894: error: cannot find symbol
  224. public void openContainer(IInventory iinventory) {}
  225. ^
  226. symbol: class IInventory
  227. location: class EntityHuman
  228. EntityHuman.java:896: error: cannot find symbol
  229. public void openHorseInventory(EntityHorse entityhorse, IInventory iinventory) {}
  230. ^
  231. symbol: class EntityHorse
  232. location: class EntityHuman
  233. EntityHuman.java:896: error: cannot find symbol
  234. public void openHorseInventory(EntityHorse entityhorse, IInventory iinventory) {}
  235. ^
  236. symbol: class IInventory
  237. location: class EntityHuman
  238. EntityHuman.java:898: error: cannot find symbol
  239. public void openTileEntity(ITileEntityContainer itileentitycontainer) {}
  240. ^
  241. symbol: class ITileEntityContainer
  242. location: class EntityHuman
  243. EntityHuman.java:900: error: cannot find symbol
  244. public void openBook(ItemStack itemstack) {}
  245. ^
  246. symbol: class ItemStack
  247. location: class EntityHuman
  248. EntityHuman.java:902: error: cannot find symbol
  249. public boolean u(Entity entity) {
  250. ^
  251. symbol: class Entity
  252. location: class EntityHuman
  253. EntityHuman.java:944: error: cannot find symbol
  254. public ItemStack bZ() {
  255. ^
  256. symbol: class ItemStack
  257. location: class EntityHuman
  258. EntityHuman.java:956: error: cannot find symbol
  259. public void attack(Entity entity) {
  260. ^
  261. symbol: class Entity
  262. location: class EntityHuman
  263. EntityHuman.java:1097: error: cannot find symbol
  264. public void b(Entity entity) {}
  265. ^
  266. symbol: class Entity
  267. location: class EntityHuman
  268. EntityHuman.java:1099: error: cannot find symbol
  269. public void c(Entity entity) {}
  270. ^
  271. symbol: class Entity
  272. location: class EntityHuman
  273. EntityHuman.java:1114: error: cannot find symbol
  274. public GameProfile getProfile() {
  275. ^
  276. symbol: class GameProfile
  277. location: class EntityHuman
  278. EntityHuman.java:1118: error: cannot find symbol
  279. public EntityHuman.EnumBedResult a(BlockPosition blockposition) {
  280. ^
  281. symbol: class BlockPosition
  282. location: class EntityHuman
  283. EntityHuman.java:1203: error: cannot find symbol
  284. private void a(EnumDirection enumdirection) {
  285. ^
  286. symbol: class EnumDirection
  287. location: class EntityHuman
  288. EntityHuman.java:1273: error: cannot find symbol
  289. public static BlockPosition getBed(World world, BlockPosition blockposition, boolean flag) {
  290. ^
  291. symbol: class World
  292. location: class EntityHuman
  293. EntityHuman.java:1273: error: cannot find symbol
  294. public static BlockPosition getBed(World world, BlockPosition blockposition, boolean flag) {
  295. ^
  296. symbol: class BlockPosition
  297. location: class EntityHuman
  298. EntityHuman.java:1273: error: cannot find symbol
  299. public static BlockPosition getBed(World world, BlockPosition blockposition, boolean flag) {
  300. ^
  301. symbol: class BlockPosition
  302. location: class EntityHuman
  303. EntityHuman.java:1299: error: cannot find symbol
  304. public void b(IChatBaseComponent ichatbasecomponent) {}
  305. ^
  306. symbol: class IChatBaseComponent
  307. location: class EntityHuman
  308. EntityHuman.java:1301: error: cannot find symbol
  309. public BlockPosition getBed() {
  310. ^
  311. symbol: class BlockPosition
  312. location: class EntityHuman
  313. EntityHuman.java:1309: error: cannot find symbol
  314. public void setRespawnPosition(BlockPosition blockposition, boolean flag) {
  315. ^
  316. symbol: class BlockPosition
  317. location: class EntityHuman
  318. EntityHuman.java:1322: error: cannot find symbol
  319. public void b(Statistic statistic) {
  320. ^
  321. symbol: class Statistic
  322. location: class EntityHuman
  323. EntityHuman.java:1326: error: cannot find symbol
  324. public void a(Statistic statistic, int i) {}
  325. ^
  326. symbol: class Statistic
  327. location: class EntityHuman
  328. EntityHuman.java:1328: error: cannot find symbol
  329. public void a(Statistic statistic) {}
  330. ^
  331. symbol: class Statistic
  332. location: class EntityHuman
  333. EntityHuman.java:1455: error: cannot find symbol
  334. public void a(EntityLiving entityliving) {
  335. ^
  336. symbol: class EntityLiving
  337. location: class EntityHuman
  338. EntityHuman.java:1475: error: cannot find symbol
  339. public ItemStack q(int i) {
  340. ^
  341. symbol: class ItemStack
  342. location: class EntityHuman
  343. EntityHuman.java:1541: error: cannot find symbol
  344. public FoodMetaData getFoodData() {
  345. ^
  346. symbol: class FoodMetaData
  347. location: class EntityHuman
  348. EntityHuman.java:1553: error: cannot find symbol
  349. public void a(ItemStack itemstack, int i) {
  350. ^
  351. symbol: class ItemStack
  352. location: class EntityHuman
  353. EntityHuman.java:1568: error: cannot find symbol
  354. public boolean a(BlockPosition blockposition, EnumDirection enumdirection, ItemStack itemstack) {
  355. ^
  356. symbol: class BlockPosition
  357. location: class EntityHuman
  358. EntityHuman.java:1568: error: cannot find symbol
  359. public boolean a(BlockPosition blockposition, EnumDirection enumdirection, ItemStack itemstack) {
  360. ^
  361. symbol: class EnumDirection
  362. location: class EntityHuman
  363. EntityHuman.java:1568: error: cannot find symbol
  364. public boolean a(BlockPosition blockposition, EnumDirection enumdirection, ItemStack itemstack) {
  365. ^
  366. symbol: class ItemStack
  367. location: class EntityHuman
  368. EntityHuman.java:1626: error: package WorldSettings does not exist
  369. public void a(WorldSettings.EnumGamemode worldsettings_enumgamemode) {}
  370. ^
  371. EntityHuman.java:1632: error: cannot find symbol
  372. public InventoryEnderChest getEnderChest() {
  373. ^
  374. symbol: class InventoryEnderChest
  375. location: class EntityHuman
  376. EntityHuman.java:1636: error: cannot find symbol
  377. public ItemStack getEquipment(int i) {
  378. ^
  379. symbol: class ItemStack
  380. location: class EntityHuman
  381. EntityHuman.java:1640: error: cannot find symbol
  382. public ItemStack bA() {
  383. ^
  384. symbol: class ItemStack
  385. location: class EntityHuman
  386. EntityHuman.java:1644: error: cannot find symbol
  387. public void setEquipment(int i, ItemStack itemstack) {
  388. ^
  389. symbol: class ItemStack
  390. location: class EntityHuman
  391. EntityHuman.java:1650: error: cannot find symbol
  392. public ItemStack[] getEquipment() {
  393. ^
  394. symbol: class ItemStack
  395. location: class EntityHuman
  396. EntityHuman.java:1658: error: cannot find symbol
  397. public Scoreboard getScoreboard() {
  398. ^
  399. symbol: class Scoreboard
  400. location: class EntityHuman
  401. EntityHuman.java:1662: error: cannot find symbol
  402. public ScoreboardTeamBase getScoreboardTeam() {
  403. ^
  404. symbol: class ScoreboardTeamBase
  405. location: class EntityHuman
  406. EntityHuman.java:1666: error: cannot find symbol
  407. public IChatBaseComponent getScoreboardDisplayName() {
  408. ^
  409. symbol: class IChatBaseComponent
  410. location: class EntityHuman
  411. EntityHuman.java:1702: error: cannot find symbol
  412. public static UUID a(GameProfile gameprofile) {
  413. ^
  414. symbol: class GameProfile
  415. location: class EntityHuman
  416. EntityHuman.java:1716: error: cannot find symbol
  417. public boolean a(ChestLock chestlock) {
  418. ^
  419. symbol: class ChestLock
  420. location: class EntityHuman
  421. EntityHuman.java:1730: error: cannot find symbol
  422. public boolean d(int i, ItemStack itemstack) {
  423. ^
  424. symbol: class ItemStack
  425. location: class EntityHuman
  426. EntityHuman.java:27: error: cannot find symbol
  427. public PlayerInventory inventory = new PlayerInventory(this);
  428. ^
  429. symbol: class PlayerInventory
  430. location: class EntityHuman
  431. EntityHuman.java:28: error: cannot find symbol
  432. private InventoryEnderChest enderChest = new InventoryEnderChest();
  433. ^
  434. symbol: class InventoryEnderChest
  435. location: class EntityHuman
  436. EntityHuman.java:31: error: cannot find symbol
  437. protected FoodMetaData foodData = new FoodMetaData(this); // CraftBukkit - add "this" to constructor
  438. ^
  439. symbol: class FoodMetaData
  440. location: class EntityHuman
  441. EntityHuman.java:50: error: cannot find symbol
  442. public PlayerAbilities abilities = new PlayerAbilities();
  443. ^
  444. symbol: class PlayerAbilities
  445. location: class EntityHuman
  446. EntityHuman.java:71: error: cannot find symbol
  447. return (CraftHumanEntity) super.getBukkitEntity();
  448. ^
  449. symbol: class CraftHumanEntity
  450. location: class EntityHuman
  451. EntityHuman.java:71: error: cannot find symbol
  452. return (CraftHumanEntity) super.getBukkitEntity();
  453. ^
  454. symbol: variable super
  455. location: class EntityHuman
  456. EntityHuman.java:69: error: method does not override or implement a method from a supertype
  457. @Override
  458. ^
  459. EntityHuman.java:77: error: cannot find symbol
  460. this.uniqueID = a(gameprofile);
  461. ^
  462. symbol: variable uniqueID
  463. EntityHuman.java:79: error: cannot find symbol
  464. this.defaultContainer = new ContainerPlayer(this.inventory, !world.isClientSide, this);
  465. ^
  466. symbol: class ContainerPlayer
  467. location: class EntityHuman
  468. 100 errors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement