Krenair

MCP 8.05 client-server differences (names only)

Aug 14th, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.16 KB | None | 0 0
  1. Client name: sendPacketToPlayer (func_72567_b)
  2. Client description: addToSendQueue. if it is a chat packet, check before sending it
  3. Server name: sendPacket (func_72567_b)
  4. Server description: Adds the packet to the underlying network manager's send queue.
  5. ----
  6. Client name: railChunkPosition (field_94513_g)
  7. Client description: The chunk position the rail is at.
  8. Server name: connectedTracks (field_94513_g)
  9. Server description: The positions of connected rails
  10. ----
  11. Client name: numberOfTilesToUpdate (field_73262_e)
  12. Client description:
  13. Server name: numBlocksToUpdate (field_73262_e)
  14. Server description: the number of blocks that need to be updated next tick
  15. ----
  16. Client name: isDataInitialized (field_73144_s)
  17. Client description: set to true on first sendLocationToClients
  18. Server name: firstUpdateDone (field_73144_s)
  19. Server description:
  20. ----
  21. Client name: informAllAssociatedPlayersOfItemDestruction (func_73119_a)
  22. Client description:
  23. Server name: sendDestroyEntityPacketToTrackedPlayers (func_73119_a)
  24. Server description:
  25. ----
  26. Client name: removeFromWatchingList (func_73118_a)
  27. Client description:
  28. Server name: removeFromTrackedPlayers (func_73118_a)
  29. Server description:
  30. ----
  31. Client name: containsTranslateKey (func_94520_b)
  32. Client description:
  33. Server name: isKeyTranslated (func_94520_b)
  34. Server description: Returns true if the passed key is in the translation table.
  35. ----
  36. Client name: entityViewDistance (field_72792_d)
  37. Client description:
  38. Server name: maxTrackingDistanceThreshold (field_72792_d)
  39. Server description:
  40. ----
  41. Client name: getAllTileEntityInBox (func_73049_a)
  42. Client description: pars: min x,y,z , max x,y,z
  43. Server name: getTileEntityList (func_73049_a)
  44. Server description: get a list of tileEntity's
  45. ----
  46. Client name: biomeToUse (field_76947_d)
  47. Client description: this is the sole biome to utilize for this world
  48. Server name: biomeGenerator (field_76947_d)
  49. Server description: The biome generator object.
  50. ----
  51. Client name: minimumValue (field_111120_a)
  52. Client description:
  53. Server name: defaultValue (field_111120_a)
  54. Server description:
  55. ----
  56. Client name: setPlayerIsPresent (func_75128_a)
  57. Client description: adds or removes the player from the container based on par2
  58. Server name: setCanCraft (func_75128_a)
  59. Server description: sets whether the player can craft in this inventory or not
  60. ----
  61. Client name: ticks (field_73136_m)
  62. Client description:
  63. Server name: updateCounter (field_73136_m)
  64. Server description:
  65. ----
  66. Client name: logMessageAndSave (func_73666_a)
  67. Client description: logs an info message then calls saveSettingsToFile Yes this appears to be a potential stack overflow - these 2 functions call each other repeatdly if an exception occurs.
  68. Server name: generateNewProperties (func_73666_a)
  69. Server description: Generates a new properties file.
  70. ----
  71. Client name: connectionComplete (field_72539_c)
  72. Client description:
  73. Server name: finishedProcessing (field_72539_c)
  74. Server description: Returns if the login handler is finished and can be removed. It is set to true on either error or successful login.
  75. ----
  76. Client name: playersInChunk (field_73263_b)
  77. Client description:
  78. Server name: players (field_73263_b)
  79. Server description: the list of all players in this instance (chunk)
  80. ----
  81. Client name: saveChunkData (func_104140_m)
  82. Client description: saves chunk data - currently only called during execution of the Save All command
  83. Server name: func_104140_m (func_104140_m)
  84. Server description:
  85. ----
  86. Client name: posX (field_73147_p)
  87. Client description:
  88. Server name: lastTrackedEntityPosX (field_73147_p)
  89. Server description:
  90. ----
  91. Client name: tryStartWachingThis (func_73117_b)
  92. Client description: if the player is more than the distance threshold (typically 64) then the player is removed instead
  93. Server name: updatePlayerEntity (func_73117_b)
  94. Server description:
  95. ----
  96. Client name: sendToAllNear (func_72393_a)
  97. Client description: params: x,y,z,d,dimension. The packet is sent to all players within d distance of x,y,z (d^2<x^2+y^2+z^2)
  98. Server name: sendPacketToPlayersAroundPoint (func_72393_a)
  99. Server description: sends a packet to players within d3 of point (x,y,z)
  100. ----
  101. Client name: removeEntityFromAllTrackingPlayers (func_72790_b)
  102. Client description:
  103. Server name: untrackEntity (func_72790_b)
  104. Server description:
  105. ----
  106. Client name: isEmpty (field_72814_d)
  107. Client description: True if the chunk cache is empty.
  108. Server name: hasExtendedLevels (field_72814_d)
  109. Server description: set by !chunk.getAreLevelsEmpty
  110. ----
  111. Client name: sendPacketToAllTrackingPlayers (func_73120_a)
  112. Client description: if this is a player, then it is not informed
  113. Server name: sendPacketToTrackedPlayers (func_73120_a)
  114. Server description:
  115. ----
  116. Client name: packetSize (func_74426_e)
  117. Client description: returns 0 for memoryConnections
  118. Server name: getNumChunkDataPackets (func_74426_e)
  119. Server description: Returns the number of chunk data packets waiting to be sent.
  120. ----
  121. Client name: getPlayerForUsername (func_72361_f)
  122. Client description:
  123. Server name: getPlayerEntity (func_72361_f)
  124. Server description: gets the player entity for the player with the name specified
  125. ----
  126. Client name: respawnPlayer (func_72368_a)
  127. Client description: creates and returns a respawned player based on the provided PlayerEntity. Args are the PlayerEntityMP to respawn, an INT for the dimension to respawn into (usually 0), and a boolean value that is true if the player beat the game rather than dying
  128. Server name: recreatePlayerEntity (func_72368_a)
  129. Server description: Called on respawn
  130. ----
  131. Client name: initialInvulnerability (field_71145_cl)
  132. Client description: de-increments onUpdate, attackEntityFrom is ignored if this >0
  133. Server name: ticksOfInvuln (field_71145_cl)
  134. Server description: how many ticks of invulnerability(spawn protection) this player has
  135. ----
  136. Client name: sendPacketToAllAssociatedPlayers (func_72789_b)
  137. Client description: sends to the entity if the entity is a player
  138. Server name: sendPacketToTrackedPlayersAndTrackedEntity (func_72789_b)
  139. Server description:
  140. ----
  141. Client name: sendPlayerInfoToAllPlayers (func_72374_b)
  142. Client description: sends 1 player per tick, but only sends a player once every 600 ticks
  143. Server name: onTick (func_72374_b)
  144. Server description: self explanitory
  145. ----
  146. Client name: locationOfBlockChange (field_73261_d)
  147. Client description:
  148. Server name: blocksToUpdate (field_73261_d)
  149. Server description: array of blocks to update this tick
  150. ----
  151. Client name: posZ (field_73145_r)
  152. Client description:
  153. Server name: lastTrackedEntityPosZ (field_73145_r)
  154. Server description:
  155. ----
  156. Client name: prevTentacleAngle (field_70865_by)
  157. Client description: the last calculated angle of the tentacles in radians
  158. Server name: lastTentacleAngle (field_70865_by)
  159. Server description: the last calculated angle of the tentacles in radians
  160. ----
  161. Client name: chunkWatcherWithPlayers (field_72697_d)
  162. Client description: contains a PlayerInstance for every chunk they can see. the "player instance" cotains a list of all players who can also that chunk
  163. Server name: playerInstancesToUpdate (field_72697_d)
  164. Server description: the playerInstances(chunks) that need to be updated
  165. ----
  166. Client name: getOrCreateChunkWatcher (func_72690_a)
  167. Client description:
  168. Server name: getPlayerInstance (func_72690_a)
  169. Server description: passi n the chunk x and y and a flag as to whether or not the instance should be made if it doesnt exist
  170. ----
  171. Client name: currentFlightTarget (field_82237_a)
  172. Client description: randomly selected ChunkCoordinates in a 7x6x7 box around the bat (y offset -2 to 4) towards which it will fly. upon getting close a new target will be selected
  173. Server name: spawnPosition (field_82237_a)
  174. Server description: Coordinates of where the bat spawned.
  175. ----
  176. Client name: lastScaledYPosition (field_73129_e)
  177. Client description:
  178. Server name: encodedPosY (field_73129_e)
  179. Server description: The encoded entity Y position.
  180. ----
  181. Client name: tickables (field_71322_p)
  182. Client description: Collection of objects to update every tick. Type: List<IUpdatePlayerListBox>
  183. Server name: playersOnline (field_71322_p)
  184. Server description: List of names of players who are online.
  185. ----
  186. Client name: saveExtraData (func_104112_b)
  187. Client description: Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unimplemented.
  188. Server name: func_104112_b (func_104112_b)
  189. Server description:
  190. ----
  191. Client name: ticksForFloatKick (field_72572_g)
  192. Client description: player is kicked if they float for over 80 ticks without flying enabled
  193. Server name: playerInAirTime (field_72572_g)
  194. Server description: holds the amount of tick the player is floating
  195. ----
  196. Client name: getCurrentItemOrArmor (func_71124_b)
  197. Client description: 0 = item, 1-n is armor
  198. Server name: getEquipmentInSlot (func_71124_b)
  199. Server description: 0: Tool in Hand; 1-4: Armor
  200. ----
  201. Client name: isColor (func_96302_c)
  202. Client description: Checks if typo is a color.
  203. Server name: Checks (func_96302_c)
  204. Server description: if typo is a color.
  205. ----
  206. Client name: rayTraceBlocks_do_do (func_72831_a)
  207. Client description:
  208. Server name: rayTraceBlocks (func_72831_a)
  209. Server description:
  210. ----
  211. Client name: sendToAllPlayersWatchingChunk (func_73256_a)
  212. Client description:
  213. Server name: sendPacketToPlayersInInstance (func_73256_a)
  214. Server description: sends the packet to all players in the current instance
  215. ----
  216. Client name: isSlotInInventory (func_75217_a)
  217. Client description: returns true if this slot is in par2 of par1
  218. Server name: isHere (func_75217_a)
  219. Server description: returns true if the slot exists in the given inventory and location
  220. ----
  221. Client name: tickRate (field_75779_e)
  222. Client description:
  223. Server name: field_75779_e (field_75779_e)
  224. Server description:
  225. ----
  226. Client name: loadChunkOnProvideRequest (field_73250_a)
  227. Client description: if this is false, the defaultEmptyChunk will be returned by the provider
  228. Server name: chunkLoadOverride (field_73250_a)
  229. Server description: if set, this flag forces a request to load a chunk to load the chunk rather than defaulting to the dummy if possible
  230. ----
  231. Client name: theEntity (field_85155_a)
  232. Client description:
  233. Server name: field_85155_a (field_85155_a)
  234. Server description:
  235. ----
  236. Client name: sendTileToAllPlayersWatchingChunk (func_73257_a)
  237. Client description:
  238. Server name: updateTileEntity (func_73257_a)
  239. Server description: sends players update packet about the given entity
  240. ----
  241. Client name: unloadChunksIfNotNearSpawn (func_73241_b)
  242. Client description: marks chunk for unload by "unload100OldestChunks" if there is no spawn point, or if the center of the chunk is outside 200 blocks (x or z) of the spawn
  243. Server name: dropChunk (func_73241_b)
  244. Server description:
  245. ----
  246. Client name: trackedEntityIDs (field_72794_c)
  247. Client description:
  248. Server name: trackedEntityHashTable (field_72794_c)
  249. Server description: Used for identity lookup of tracked entities.
  250. ----
  251. Client name: travelToDimension (func_71027_c)
  252. Client description: Teleports the entity to another dimension. Params: Dimension number to teleport to
  253. Server name: travelToTheEnd (func_71027_c)
  254. Server description:
  255. ----
  256. Client name: playerInventoryBeingManipulated (field_71137_h)
  257. Client description: poor mans concurency flag, lets hope the jvm doesn't re-order the setting of this flag wrt the inventory change on the next line
  258. Server name: isChangingQuantityOnly (field_71137_h)
  259. Server description: set to true when player is moving quantity of items from one inventory to another(crafting) but item in either slot is not changed
  260. ----
  261. Client name: addCraftingToCrafters (func_75132_a)
  262. Client description:
  263. Server name: onCraftGuiOpened (func_75132_a)
  264. Server description:
  265. ----
  266. Client name: sendChunkUpdate (func_73254_a)
  267. Client description:
  268. Server name: onUpdate (func_73254_a)
  269. Server description:
  270. ----
  271. Client name: packetSize (func_72568_e)
  272. Client description: returns 0 for memoryMapped connections
  273. Server name: getNumChunkDataPackets (func_72568_e)
  274. Server description: return the number of chuckDataPackets from the netManager
  275. ----
  276. Client name: displayProgressMessage (func_73720_a)
  277. Client description: "Saving level", or the loading,or downloading equivelent
  278. Server name: displaySavingString (func_73720_a)
  279. Server description: Shows the 'Saving level' string.
  280. ----
  281. Client name: sendTileEntityToPlayer (func_71119_a)
  282. Client description: called from onUpdate for all tileEntity in specific chunks
  283. Server name: getTileEntityInfo (func_71119_a)
  284. Server description: gets description packets from all TileEntity's that override func_20070
  285. ----
  286. Client name: rotateRight (field_71577_f)
  287. Client description: Maps a direction to that to the right of it.
  288. Server name: enderEyeMetaToDirection (field_71577_f)
  289. Server description:
  290. ----
  291. Client name: getVanillaDimension (func_76076_i)
  292. Client description: Returns vanilla MC dimension (-1,0,1). For custom dimension compatibility, always prefer WorldProvider.dimensionID accessed from World.provider.dimensionID
  293. Server name: getDimension (func_76076_i)
  294. Server description:
  295. ----
  296. Client name: properties (field_73672_b)
  297. Client description:
  298. Server name: serverProperties (field_73672_b)
  299. Server description: The server properties object.
  300. ----
  301. Client name: sendPacketToAllAssociatedPlayers (func_73116_b)
  302. Client description: if this is a player, then it recieves the message also
  303. Server name: sendPacketToTrackedPlayersAndTrackedEntity (func_73116_b)
  304. Server description:
  305. ----
  306. Client name: addEntityToTracker (func_72785_a)
  307. Client description:
  308. Server name: trackEntity (func_72785_a)
  309. Server description:
  310. ----
  311. Client name: raiseErrorAndDisconnect (func_72527_a)
  312. Client description:
  313. Server name: kickUser (func_72527_a)
  314. Server description: Disconnects the user with the given reason.
  315. ----
  316. Client name: safeLoadChunk (func_73239_e)
  317. Client description: used by loadChunk, but catches any exceptions if the load fails.
  318. Server name: loadChunkFromFile (func_73239_e)
  319. Server description:
  320. ----
  321. Client name: consoleBuffer (field_70010_a)
  322. Client description: only ever used by MinecraftServer.executeCommand
  323. Server name: instance (field_70010_a)
  324. Server description: Single instance of RConConsoleSource
  325. ----
  326. Client name: sendEventsToPlayers (func_73125_b)
  327. Client description:
  328. Server name: updatePlayerEntities (func_73125_b)
  329. Server description:
  330. ----
  331. Client name: logInfo (func_98233_a)
  332. Client description:
  333. Server name: logInfoMessage (func_98233_a)
  334. Server description: Logs plain text message.
  335. ----
  336. Client name: currentChunkLoader (field_73247_e)
  337. Client description:
  338. Server name: chunkLoader (field_73247_e)
  339. Server description:
  340. ----
  341. Client name: addEntityToTracker (func_72791_a)
  342. Client description:
  343. Server name: trackEntity (func_72791_a)
  344. Server description:
  345. ----
  346. Client name: logWarning (func_98236_b)
  347. Client description:
  348. Server name: logWarningPlain (func_98236_b)
  349. Server description: Logs text as warning.
  350. ----
  351. Client name: getBlockBoundsMinX (func_83009_v)
  352. Client description: returns the block bounderies minX value
  353. Server name: getMinX (func_83009_v)
  354. Server description: returns the block bounderies minX value
  355. ----
  356. Client name: backgroundImageName (field_78043_p)
  357. Client description: Texture to use.
  358. Server name: theTexture (field_78043_p)
  359. Server description: Texture to use.
  360. ----
  361. Client name: createMapDataPacket (func_77871_c)
  362. Client description: returns null if no update is to be sent
  363. Server name: getUpdatePacket (func_77871_c)
  364. Server description:
  365. ----
  366. Client name: resetProgresAndWorkingMessage (func_73719_c)
  367. Client description: This is called with "Working..." by resetProgressAndMessage
  368. Server name: displayLoadingString (func_73719_c)
  369. Server description: Displays a string on the loading screen supposed to indicate what is being done currently.
  370. ----
  371. Client name: connectionTimer (field_72535_g)
  372. Client description:
  373. Server name: loginTimer (field_72535_g)
  374. Server description: While waiting to login, if this field ++'s to 600 it will kick you.
  375. ----
  376. Client name: myEntity (field_73132_a)
  377. Client description:
  378. Server name: trackedEntity (field_73132_a)
  379. Server description: The entity that this EntityTrackerEntry tracks.
  380. ----
  381. Client name: setBlockMetadataWithNotify (func_72921_c)
  382. Client description: Sets the blocks metadata and if set will then notify blocks that this block changed, depending on the flag. Args: x, y, z, metadata, flag. See setBlock for flag description
  383. Server name: setBlockMetadata (func_72921_c)
  384. Server description: Sets the blocks metadata and if set will then notify blocks that this block changed, depending on the flag. Args: x, y, z, metadata, flag. See setBlock for flag description
  385. ----
  386. Client name: networkTick (func_71747_b)
  387. Client description: processes packets and pending connections
  388. Server name: handleNetworkListenThread (func_71747_b)
  389. Server description: Handles all incoming connections and packets
  390. ----
  391. Client name: toggleRain (func_72913_w)
  392. Client description:
  393. Server name: commandToggleDownfall (func_72913_w)
  394. Server description: start precipitation in this world (2 ticks after command posted)
  395. ----
  396. Client name: createNewKeyPair (func_75891_b)
  397. Client description:
  398. Server name: generateKeyPair (func_75891_b)
  399. Server description: Generates RSA KeyPair
  400. ----
  401. Client name: func_82594_a (func_82594_a)
  402. Client description:
  403. Server name: getObject (func_82594_a)
  404. Server description:
  405. ----
  406. Client name: getWorldServer (func_72688_a)
  407. Client description:
  408. Server name: getMinecraftServer (func_72688_a)
  409. Server description: Returns the MinecraftServer associated with the PlayerManager.
  410. ----
  411. Client name: sendPacketToAllPlayersTrackingEntity (func_72784_a)
  412. Client description: does not send the packet to the entity if the entity is a player
  413. Server name: sendPacketToTrackedPlayers (func_72784_a)
  414. Server description:
  415. ----
  416. Client name: getPacketForThisEntity (func_73124_b)
  417. Client description:
  418. Server name: getSpawnPacket (func_73124_b)
  419. Server description:
  420. ----
  421. Client name: lastYaw (field_73127_g)
  422. Client description:
  423. Server name: encodedRotationYaw (field_73127_g)
  424. Server description: The encoded entity yaw rotation.
  425. ----
  426. Client name: flagChunkForUpdate (func_73259_a)
  427. Client description:
  428. Server name: markBlockNeedsUpdate (func_73259_a)
  429. Server description: mark the block as changed so that it will update clients who need to know about it
  430. ----
  431. Client name: minecartTnt (field_94582_cb)
  432. Client description:
  433. Server name: tntMinecart (field_94582_cb)
  434. Server description:
  435. ----
  436. Client name: loadedChunkHashMap (field_73244_f)
  437. Client description:
  438. Server name: id2ChunkMap (field_73244_f)
  439. Server description: map of chunk Id's to Chunk instances
  440. ----
  441. Client name: clip (func_72933_a)
  442. Client description: Performs a raycast against all blocks in the world except liquids.
  443. Server name: rayTraceBlocks (func_72933_a)
  444. Server description: ray traces all blocks, including non-collideable ones
  445. ----
  446. Client name: canNotSave (field_73058_d)
  447. Client description: set by CommandServerSave{all,Off,On}
  448. Server name: levelSaving (field_73058_d)
  449. Server description: Whether or not level saving is enabled
  450. ----
  451. Client name: networkTick (func_72570_d)
  452. Client description: run once each game tick
  453. Server name: handlePackets (func_72570_d)
  454. Server description: handle all the packets for the connection
  455. ----
  456. Client name: addEntityToTracker (func_72786_a)
  457. Client description: if entity is a player sends all tracked events to the player, otherwise, adds with a visibility and update arate based on the class type
  458. Server name: trackEntity (func_72786_a)
  459. Server description:
  460. ----
  461. Client name: partiallyDestroyedBlockZ (field_73099_h)
  462. Client description:
  463. Server name: curBlockZ (field_73099_h)
  464. Server description:
  465. ----
  466. Client name: motionX (field_73137_j)
  467. Client description:
  468. Server name: lastTrackedEntityMotionX (field_73137_j)
  469. Server description:
  470. ----
  471. Client name: blocksDistanceThreshold (field_73130_b)
  472. Client description:
  473. Server name: trackingDistanceThreshold (field_73130_b)
  474. Server description:
  475. ----
  476. Client name: motionY (field_73138_k)
  477. Client description:
  478. Server name: lastTrackedEntityMotionY (field_73138_k)
  479. Server description:
  480. ----
  481. Client name: kickPlayerFromServer (func_72565_c)
  482. Client description:
  483. Server name: kickPlayer (func_72565_c)
  484. Server description: Kick the offending player and give a reason why
  485. ----
  486. Client name: villagerStockList (field_70958_bB)
  487. Client description: a villagers recipe list is intialized off this list ; the 2 params are min/max amount they will trade for 1 emerald
  488. Server name: villagersSellingList (field_70958_bB)
  489. Server description: Selling list of Villagers items.
  490. ----
  491. Client name: randomGenerator (field_72583_k)
  492. Client description:
  493. Server name: rndmObj (field_72583_k)
  494. Server description: The Java Random object.
  495. ----
  496. Client name: hasChanges (func_75684_a)
  497. Client description:
  498. Server name: hasObjectChanged (func_75684_a)
  499. Server description: true if one or more object was changed
  500. ----
  501. Client name: getSocketAddress (func_74430_c)
  502. Client description: Return the InetSocketAddress of the remote endpoint
  503. Server name: getRemoteAddress (func_74430_c)
  504. Server description: Returns the socket address of the remote side. Server-only.
  505. ----
  506. Client name: incrementWindowID (func_71117_bO)
  507. Client description:
  508. Server name: getNextWindowId (func_71117_bO)
  509. Server description: get the next window id to use
  510. ----
  511. Client name: chunkLocation (field_73264_c)
  512. Client description: note: this is final
  513. Server name: currentChunk (field_73264_c)
  514. Server description: the chunk the player currently resides in
  515. ----
  516. Client name: partiallyDestroyedBlockX (field_73086_f)
  517. Client description:
  518. Server name: curBlockX (field_73086_f)
  519. Server description:
  520. ----
  521. Client name: posY (field_73146_q)
  522. Client description:
  523. Server name: lastTrackedEntityPosY (field_73146_q)
  524. Server description:
  525. ----
  526. Client name: rotateOpposite (field_71580_e)
  527. Client description: Maps a direction to that opposite of it.
  528. Server name: footInvisibleFaceRemap (field_71580_e)
  529. Server description:
  530. ----
  531. Client name: updateFlyingState (func_71122_b)
  532. Client description: likeUpdateFallState, but called from updateFlyingState, rather than moveEntity
  533. Server name: handleFalling (func_71122_b)
  534. Server description: process player falling based on movement packet
  535. ----
  536. Client name: tickCount (field_75778_d)
  537. Client description:
  538. Server name: field_75778_d (field_75778_d)
  539. Server description:
  540. ----
  541. Client name: removePlayerFromTracker (func_73123_c)
  542. Client description:
  543. Server name: removeTrackedPlayerSymmetric (func_73123_c)
  544. Server description: Remove a tracked player from our list and tell the tracked player to destroy us from their world.
  545. ----
  546. Client name: isInterruptible (func_75252_g)
  547. Client description: Determine if this AI Task is interruptible by a higher (= lower value) priority task.
  548. Server name: isContinuous (func_75252_g)
  549. Server description: Returns whether the task requires multiple updates or not
  550. ----
  551. Client name: sendContainerAndContentsToPlayer (func_71110_a)
  552. Client description:
  553. Server name: updateCraftingInventory (func_71110_a)
  554. Server description: update the crafting window inventory with the items in the list
  555. ----
  556. Client name: lastScaledZPosition (field_73126_f)
  557. Client description:
  558. Server name: encodedPosZ (field_73126_f)
  559. Server description: The encoded entity Z position.
  560. ----
  561. Client name: getPlayerCoordinates (func_82114_b)
  562. Client description: Return the position for this command sender.
  563. Server name: getCommandSenderPosition (func_82114_b)
  564. Server description: Return the position for this command sender.
  565. ----
  566. Client name: getSaveHandler (func_75756_e)
  567. Client description: returns null if no saveHandler is relevent (eg. SMP)
  568. Server name: getPlayerNBTManager (func_75756_e)
  569. Server description:
  570. ----
  571. Client name: dropContentsWhenDead (field_94112_b)
  572. Client description: When set to true, the minecart will drop all items when setDead() is called. When false (such as when travelling dimensions) it preserves its contents.
  573. Server name: preventContentDropping (field_94112_b)
  574. Server description: Whether the minecart should not drop its content when flagged as dead.
  575. ----
  576. Client name: safeSaveChunk (func_73242_b)
  577. Client description: used by saveChunks, but catches any exceptions if the save fails.
  578. Server name: saveChunkData (func_73242_b)
  579. Server description:
  580. ----
  581. Client name: executeCommand (func_71252_i)
  582. Client description:
  583. Server name: handleRConCommand (func_71252_i)
  584. Server description: Handle a command received by an RCon instance
  585. ----
  586. Client name: defaultValue (field_111113_b)
  587. Client description:
  588. Server name: field_111113_b (field_111113_b)
  589. Server description:
  590. ----
  591. Client name: lastPitch (field_73139_h)
  592. Client description:
  593. Server name: encodedRotationPitch (field_73139_h)
  594. Server description: The encoded entity pitch rotation.
  595. ----
  596. Client name: isPlayerNotUsingContainer (func_75129_b)
  597. Client description: NotUsing because adding a player twice is an error
  598. Server name: getCanCraft (func_75129_b)
  599. Server description: gets whether or not the player can craft in this inventory or not
  600. ----
  601. Client name: getAccessibleSlotsFromSide (func_94128_d)
  602. Client description: Returns an array containing the indices of the slots that can be accessed by automation on the given side of this block.
  603. Server name: getSlotsForFace (func_94128_d)
  604. Server description: param side
  605. ----
  606. Client name: getServerMOTD (func_71274_v)
  607. Client description: Returns the server message of the day
  608. Server name: getMotd (func_71274_v)
  609. Server description: Returns the server message of the day
  610. ----
  611. Client name: getChatBuffer (func_70008_c)
  612. Client description:
  613. Server name: getLogContents (func_70008_c)
  614. Server description: Gets the contents of the RCon log
  615. ----
  616. Client name: getLastActiveItems (func_70035_c)
  617. Client description:
  618. Server name: getInventory (func_70035_c)
  619. Server description: returns the inventory of this entity (only used in EntityPlayerMP it seems)
  620. ----
  621. Client name: partiallyDestroyedBlockY (field_73087_g)
  622. Client description:
  623. Server name: curBlockY (field_73087_g)
  624. Server description:
  625. ----
  626. Client name: chunksToUnload (field_73248_b)
  627. Client description: used by unload100OldestChunks to iterate the loadedChunkHashMap for unload (underlying assumption, first in, first out)
  628. Server name: droppedChunksSet (field_73248_b)
  629. Server description:
  630. ----
  631. Client name: uncheckedTryHarvestBlock (func_73082_a)
  632. Client description:
  633. Server name: blockRemoving (func_73082_a)
  634. Server description:
  635. ----
  636. Client name: associatedFile (field_73673_c)
  637. Client description:
  638. Server name: serverPropertiesFile (field_73673_c)
  639. Server description: The server properties file.
  640. ----
  641. Client name: clip (func_72901_a)
  642. Client description: Performs a raycast against all blocks in the world, and optionally liquids.
  643. Server name: rayTraceBlocks (func_72901_a)
  644. Server description:
  645. ----
  646. Client name: getSystemTimeMillis (func_130071_aq)
  647. Client description: returns the difference, measured in milliseconds, between the current system time and midnight, January 1, 1970 UTC.
  648. Server name: getCurrentTimeMillis (func_130071_aq)
  649. Server description:
  650. ----
  651. Client name: lastScaledXPosition (field_73128_d)
  652. Client description:
  653. Server name: encodedPosX (field_73128_d)
  654. Server description: The encoded entity X position.
  655. ----
  656. Client name: sendLocationToAllClients (func_73122_a)
  657. Client description: also sends velocity, rotation, and riding info.
  658. Server name: updatePlayerList (func_73122_a)
  659. Server description:
  660. ----
  661. Client name: defaultEmptyChunk (field_73249_c)
  662. Client description:
  663. Server name: dummyChunk (field_73249_c)
  664. Server description: a dummy chunk, returned in place of an actual chunk.
  665. ----
  666. Client name: currentChunkProvider (field_73246_d)
  667. Client description:
  668. Server name: serverChunkGenerator (field_73246_d)
  669. Server description: chunk generator object. Calls to load nonexistent chunks are forwarded to this object.
  670. ----
  671. Client name: getProperty (func_73671_a)
  672. Client description: Gets a property. If it does not exist, set it to the specified value.
  673. Server name: getStringProperty (func_73671_a)
  674. Server description: Returns a string property. If the property doesn't exist the default is returned.
  675. ----
  676. Client name: safeSaveExtraChunkData (func_73243_a)
  677. Client description: used by saveChunks, but catches any exceptions if the save fails.
  678. Server name: saveChunkExtraData (func_73243_a)
  679. Server description:
Advertisement
Add Comment
Please, Sign In to add comment