Search in sources :

Example 41 with AttributeInstance

use of net.minecraft.server.v1_13_R2.AttributeInstance in project NoCheatPlus by NoCheatPlus.

the class AttributeAccess method getSpeedAttributeMultiplier.

@Override
public double getSpeedAttributeMultiplier(Player player) {
    final AttributeInstance attr = ((CraftLivingEntity) player).getHandle().getAttributeInstance(GenericAttributes.MOVEMENT_SPEED);
    final double val = attr.getValue() / attr.b();
    final AttributeModifier mod = attr.a(AttribUtil.ID_SPRINT_BOOST);
    if (mod == null) {
        return val;
    } else {
        return val / AttribUtil.getMultiplier(mod.c(), mod.d());
    }
}
Also used : AttributeInstance(net.minecraft.server.v1_9_R1.AttributeInstance) AttributeModifier(net.minecraft.server.v1_9_R1.AttributeModifier)

Example 42 with AttributeInstance

use of net.minecraft.server.v1_13_R2.AttributeInstance in project NoCheatPlus by NoCheatPlus.

the class AttributeAccess method getSpeedAttributeMultiplier.

@Override
public double getSpeedAttributeMultiplier(Player player) {
    final AttributeInstance attr = ((CraftLivingEntity) player).getHandle().getAttributeInstance(GenericAttributes.MOVEMENT_SPEED);
    final double val = attr.getValue() / attr.b();
    final AttributeModifier mod = attr.a(AttribUtil.ID_SPRINT_BOOST);
    if (mod == null) {
        return val;
    } else {
        return val / AttribUtil.getMultiplier(mod.c(), mod.d());
    }
}
Also used : AttributeInstance(net.minecraft.server.v1_12_R1.AttributeInstance) AttributeModifier(net.minecraft.server.v1_12_R1.AttributeModifier)

Example 43 with AttributeInstance

use of net.minecraft.server.v1_13_R2.AttributeInstance in project NoCheatPlus by NoCheatPlus.

the class AttributeAccess method getSpeedAttributeMultiplier.

@Override
public double getSpeedAttributeMultiplier(Player player) {
    final AttributeInstance attr = ((CraftLivingEntity) player).getHandle().getAttributeInstance(GenericAttributes.MOVEMENT_SPEED);
    final double val = attr.getValue() / attr.b();
    final AttributeModifier mod = attr.a(AttribUtil.ID_SPRINT_BOOST);
    if (mod == null) {
        return val;
    } else {
        return val / AttribUtil.getMultiplier(mod.c(), mod.d());
    }
}
Also used : AttributeInstance(net.minecraft.server.v1_8_R3.AttributeInstance) AttributeModifier(net.minecraft.server.v1_8_R3.AttributeModifier)

Example 44 with AttributeInstance

use of net.minecraft.server.v1_13_R2.AttributeInstance in project Citizens2 by CitizensDev.

the class EntityHumanNPC method initialise.

private void initialise(MinecraftServer minecraftServer) {
    Socket socket = new EmptySocket();
    NetworkManager conn = null;
    try {
        conn = new EmptyNetworkManager(EnumProtocolDirection.CLIENTBOUND);
        playerConnection = new EmptyNetHandler(minecraftServer, conn, this);
        conn.a(playerConnection);
        socket.close();
    } catch (IOException e) {
    // swallow
    }
    AttributeInstance range = getAttributeInstance(GenericAttributes.FOLLOW_RANGE);
    if (range == null) {
        range = getAttributeMap().b(GenericAttributes.FOLLOW_RANGE);
    }
    range.setValue(Setting.DEFAULT_PATHFINDING_RANGE.asDouble());
    controllerJump = new PlayerControllerJump(this);
    controllerLook = new PlayerControllerLook(this);
    controllerMove = new PlayerControllerMove(this);
    navigation = new PlayerNavigation(this, world);
    invulnerableTicks = 0;
    // the default (0) breaks step climbing
    NMS.setStepHeight(getBukkitEntity(), 1);
    setSkinFlags((byte) 0xFF);
}
Also used : EmptyNetworkManager(net.citizensnpcs.nms.v1_8_R3.network.EmptyNetworkManager) PlayerControllerLook(net.citizensnpcs.nms.v1_8_R3.util.PlayerControllerLook) EmptySocket(net.citizensnpcs.nms.v1_8_R3.network.EmptySocket) EmptyNetHandler(net.citizensnpcs.nms.v1_8_R3.network.EmptyNetHandler) PlayerControllerMove(net.citizensnpcs.nms.v1_8_R3.util.PlayerControllerMove) PlayerNavigation(net.citizensnpcs.nms.v1_8_R3.util.PlayerNavigation) AttributeInstance(net.minecraft.server.v1_8_R3.AttributeInstance) PlayerControllerJump(net.citizensnpcs.nms.v1_8_R3.util.PlayerControllerJump) IOException(java.io.IOException) EmptyNetworkManager(net.citizensnpcs.nms.v1_8_R3.network.EmptyNetworkManager) NetworkManager(net.minecraft.server.v1_8_R3.NetworkManager) EmptySocket(net.citizensnpcs.nms.v1_8_R3.network.EmptySocket) Socket(java.net.Socket)

Aggregations

IOException (java.io.IOException)7 Socket (java.net.Socket)7 AttributeInstance (net.minecraft.server.v1_10_R1.AttributeInstance)5 AttributeInstance (net.minecraft.server.v1_13_R2.AttributeInstance)5 AttributeInstance (net.minecraft.server.v1_8_R3.AttributeInstance)5 AttributeInstance (net.minecraft.server.v1_11_R1.AttributeInstance)4 AttributeInstance (net.minecraft.server.v1_12_R1.AttributeInstance)4 AttributeInstance (net.minecraft.server.v1_14_R1.AttributeInstance)3 AttributeInstance (net.minecraft.server.v1_15_R1.AttributeInstance)3 EntityHumanNPC (net.citizensnpcs.nms.v1_10_R1.entity.EntityHumanNPC)2 EntityHumanNPC (net.citizensnpcs.nms.v1_11_R1.entity.EntityHumanNPC)2 EntityHumanNPC (net.citizensnpcs.nms.v1_12_R1.entity.EntityHumanNPC)2 EntityHumanNPC (net.citizensnpcs.nms.v1_13_R2.entity.EntityHumanNPC)2 EntityHumanNPC (net.citizensnpcs.nms.v1_14_R1.entity.EntityHumanNPC)2 EntityHumanNPC (net.citizensnpcs.nms.v1_15_R1.entity.EntityHumanNPC)2 EntityHumanNPC (net.citizensnpcs.nms.v1_8_R3.entity.EntityHumanNPC)2 EntityLiving (net.minecraft.server.v1_10_R1.EntityLiving)2 EntityLiving (net.minecraft.server.v1_11_R1.EntityLiving)2 EntityLiving (net.minecraft.server.v1_14_R1.EntityLiving)2 EntityInsentient (net.minecraft.server.v1_15_R1.EntityInsentient)2