use of net.minecraft.server.v1_13_R2.PacketPlayOutAnimation in project Citizens2 by CitizensDev.
the class PlayerAnimationImpl method playDefaultAnimation.
protected static void playDefaultAnimation(EntityPlayer player, int radius, int code) {
PacketPlayOutAnimation packet = new PacketPlayOutAnimation(player, code);
sendPacketNearby(packet, player, radius);
}
use of net.minecraft.server.v1_13_R2.PacketPlayOutAnimation in project Citizens2 by CitizensDev.
the class PlayerAnimationImpl method playDefaultAnimation.
protected static void playDefaultAnimation(EntityPlayer player, int radius, int code) {
PacketPlayOutAnimation packet = new PacketPlayOutAnimation(player, code);
sendPacketNearby(packet, player, radius);
}
use of net.minecraft.server.v1_13_R2.PacketPlayOutAnimation in project Citizens2 by CitizensDev.
the class PlayerAnimationImpl method playDefaultAnimation.
protected static void playDefaultAnimation(EntityPlayer player, int radius, int code) {
PacketPlayOutAnimation packet = new PacketPlayOutAnimation(player, code);
sendPacketNearby(packet, player, radius);
}
use of net.minecraft.server.v1_13_R2.PacketPlayOutAnimation in project DragonsOnline by UniverseCraft.
the class PlayerNPC116R3 method playAnimation.
public void playAnimation(byte animation) {
PacketPlayOutAnimation packet = new PacketPlayOutAnimation();
this.setField(packet, "a", handle.getId());
this.setField(packet, "b", animation);
this.sendPacket(packet);
}
use of net.minecraft.server.v1_13_R2.PacketPlayOutAnimation in project Warlords by ebicep.
the class AbstractChainBase method onActivate.
@Override
public boolean onActivate(@Nonnull WarlordsPlayer warlordsPlayer, @Nonnull Player player) {
int hitCounter = getHitCounterAndActivate(warlordsPlayer, player);
if (hitCounter != 0) {
PacketPlayOutAnimation playOutAnimation = new PacketPlayOutAnimation(((CraftPlayer) player).getHandle(), 0);
((CraftPlayer) player).getHandle().playerConnection.sendPacket(playOutAnimation);
warlordsPlayer.subtractEnergy(energyCost);
onHit(warlordsPlayer, player, hitCounter);
return true;
}
return false;
}
Aggregations