Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P030_AgentMoveToPoint


        channel.writeAndFlush(speedMod);

        // TODO check me: this is probably the place that the player would reach within
        // the next time step.
        P030_AgentMoveToPoint moveToPoint = new P030_AgentMoveToPoint();
        moveToPoint.init(channel);
        moveToPoint.setAgentID(agentID);
        moveToPoint.setMoveAim(moveTo);
        moveToPoint.setCurrentPlane(curPos.getZPlane());
        moveToPoint.setNextPlane(moveTo.getZPlane());

        channel.writeAndFlush(moveToPoint);
    }
View Full Code Here

TOP

Related Classes of gwlpr.protocol.gameserver.outbound.P030_AgentMoveToPoint

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.