Advertisement
Guest User

Untitled

a guest
Dec 27th, 2018
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.     //copiado da net
  2.     public void freezeEntity(Entity en) {
  3.         net.minecraft.server.v1_8_R1.Entity nmsEn = ((CraftEntity) en).getHandle();
  4.         NBTTagCompound compound = new NBTTagCompound();
  5.         nmsEn.c(compound);
  6.         compound.setByte("NoAI", (byte) 1);
  7.         nmsEn.f(compound);
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement