Package packets.s2cpackets

Examples of packets.s2cpackets.S0x21


    int dX = newLocation.x - oldLocation.x;
    int dY = newLocation.y - oldLocation.y;
    int dZ = newLocation.z - oldLocation.z;
   
    //relative movement
    SPacket p = new S0x21(entity, (byte) dX, (byte) dY, (byte) dZ);

   
   
//    SPacket p = new SPacket(0x22);
//    p.addInt(entity.geteid());
View Full Code Here

TOP

Related Classes of packets.s2cpackets.S0x21

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.