Available Methods
- getHeldItem ( )
- isSneaking ( )
- openGui ( )
- sendMessage ( )
- getDistanceSq ( )
- getCapability ( )
- isCreative ( )
- addPotionEffect ( )
- getEntityWorld ( )
- getHeldItemMainhand ( )
- getCurrentEquippedItem ( )
- sendStatusMessage ( )
- addChatMessage ( )
- addStat ( )
- canPlayerEdit ( )
- getCommandSenderName ( )
- swingItem ( )
- setActiveHand ( )
- playSound ( )
- dropItem ( )
- addChatComponentMessage ( )
- isPotionActive ( )
- mountEntity ( )
- getUniqueID ( )
- getCurrentArmor ( )
- getBukkitEntity ( )
- canEat ( )
- isInWater ( )
- getHealth ( )
- onItemPickup ( )
- addExhaustion ( )
- getEntityData ( )
- setHeldItem ( )
- getEyeHeight ( )
- dropPlayerItemWithRandomChoice ( )
- getEntityId ( )
- setPositionAndUpdate ( )
- isEntityAlive ( )
- isInsideOfMaterial ( )
- xpBarCap ( )
- getDistanceSqToEntity ( )
- getEntityAttribute ( )
- setAir ( )
- attackEntityFrom ( )
- getUUID ( )
- isInvisible ( )
- swingArm ( )
- jump ( )
- getAir ( )
- getLook ( )
- getHeldItemOffhand ( )
- startRiding ( )
- getInventoryEnderChest ( )
- onDeath ( )
- extinguish ( )
- isBurning ( )
- getMaxHealth ( )
- isHandActive ( )
- setCurrentItemOrArmor ( )
- sendChatToPlayer ( )
- displayGUIChest ( )
Related Classes
- java.util.Iterator
- java.util.UUID
- javax.annotation.Nullable
- javax.annotation.Nonnull
- org.lwjgl.opengl.GL11
- net.minecraft.world.World
- net.minecraft.item.ItemStack
- net.minecraft.block.Block
- net.minecraft.client.Minecraft
- net.minecraft.item.Item
- net.minecraft.entity.Entity
- net.minecraft.nbt.NBTTagCompound
- net.minecraft.tileentity.TileEntity
- net.minecraft.init.Blocks
- net.minecraft.entity.EntityLivingBase
- net.minecraft.entity.player.EntityPlayerMP
- net.minecraft.init.Items
- net.minecraft.util.math.BlockPos
- net.minecraft.entity.item.EntityItem
- net.minecraftforge.fml.relauncher.Side
- net.minecraftforge.fml.common.eventhandler.SubscribeEvent
- net.minecraft.client.resources.I18n
- net.minecraft.util.EnumFacing
- net.minecraftforge.fml.relauncher.SideOnly
- net.minecraft.util.math.MathHelper
Java Code Examples for net.minecraft.entity.player.EntityPlayer#getUUID()
The following examples show how to use
net.minecraft.entity.player.EntityPlayer#getUUID() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TilePitKiln.java From TFC2 with GNU General Public License v3.0 | 4 votes |
/*********************************************************************************** * 2. Getters and Setters ***********************************************************************************/ public void setSmithID(EntityPlayer player) { potterID = EntityPlayer.getUUID(player.getGameProfile()); }
Example 2
Source File: TileCrop.java From TFC2 with GNU General Public License v3.0 | 4 votes |
public void setFarmerID(EntityPlayer player) { farmerID = EntityPlayer.getUUID(player.getGameProfile()); }
Example 3
Source File: TileAnvil.java From TFC2 with GNU General Public License v3.0 | 4 votes |
/*********************************************************************************** * 2. Getters and Setters ***********************************************************************************/ public void setSmithID(EntityPlayer player) { smithID = EntityPlayer.getUUID(player.getGameProfile()); }