use of net.minecraft.server.v1_4_6.EntityPlayer in project NoCheatPlus by NoCheatPlus.
the class MCAccessCB2882 method setDead.
@Override
public void setDead(final Player player, final int deathTicks) {
final EntityPlayer mcPlayer = ((CraftPlayer) player).getHandle();
mcPlayer.deathTicks = deathTicks;
mcPlayer.dead = true;
}
use of net.minecraft.server.v1_4_6.EntityPlayer in project NoCheatPlus by NoCheatPlus.
the class MCAccessCB2922 method setDead.
@Override
public void setDead(final Player player, final int deathTicks) {
final EntityPlayer mcPlayer = ((CraftPlayer) player).getHandle();
mcPlayer.deathTicks = deathTicks;
mcPlayer.dead = true;
}
use of net.minecraft.server.v1_4_6.EntityPlayer in project NoCheatPlus by NoCheatPlus.
the class MCAccessCB3026 method isIllegalBounds.
@Override
public AlmostBoolean isIllegalBounds(final Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
if (entityPlayer.dead)
return AlmostBoolean.NO;
// TODO: Does this need a method call for the "real" box? Might be no problem during moving events, though.
final AxisAlignedBB box = entityPlayer.boundingBox;
if (!entityPlayer.isSleeping()) {
// This can not really test stance but height of bounding box.
final double dY = Math.abs(box.e - box.b);
// dY > 1.65D ||
if (dY > 1.8)
return AlmostBoolean.YES;
if (dY < 0.1D && entityPlayer.length >= 0.1)
return AlmostBoolean.YES;
}
return AlmostBoolean.MAYBE;
}
use of net.minecraft.server.v1_4_6.EntityPlayer in project NoCheatPlus by NoCheatPlus.
the class MCAccessCB3043 method isIllegalBounds.
@Override
public AlmostBoolean isIllegalBounds(final Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
if (entityPlayer.dead)
return AlmostBoolean.NO;
// TODO: Does this need a method call for the "real" box? Might be no problem during moving events, though.
final AxisAlignedBB box = entityPlayer.boundingBox;
if (!entityPlayer.isSleeping()) {
// This can not really test stance but height of bounding box.
final double dY = Math.abs(box.e - box.b);
if (dY > 1.8) {
// dY > 1.65D ||
return AlmostBoolean.YES;
}
if (dY < 0.1D && entityPlayer.length >= 0.1) {
return AlmostBoolean.YES;
}
}
return AlmostBoolean.MAYBE;
}
use of net.minecraft.server.v1_4_6.EntityPlayer in project NoCheatPlus by NoCheatPlus.
the class MCAccessCBDev method isIllegalBounds.
@Override
public AlmostBoolean isIllegalBounds(final Player player) {
final EntityPlayer entityPlayer = ((CraftPlayer) player).getHandle();
if (entityPlayer.dead) {
return AlmostBoolean.NO;
}
// TODO: Does this need a method call for the "real" box? Might be no problem during moving events, though.
final AxisAlignedBB box = entityPlayer.getBoundingBox();
if (LocUtil.isBadCoordinate(box.a, box.b, box.c, box.d, box.e, box.f)) {
return AlmostBoolean.YES;
}
if (!entityPlayer.isSleeping()) {
// This can not really test stance but height of bounding box.
final double dY = Math.abs(box.e - box.b);
if (dY > 1.8) {
// dY > 1.65D ||
return AlmostBoolean.YES;
}
if (dY < 0.1D && entityPlayer.length >= 0.1) {
return AlmostBoolean.YES;
}
}
return AlmostBoolean.MAYBE;
}
Aggregations