Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P022_DespawnAgent


    public static void despawnAgent(Channel channel, Entity entity)
    {
        // retrieve some NPC data...
        AgentIdentifiers agentIDs = entity.get(AgentIdentifiers.class);
       
        P022_DespawnAgent despawn = new P022_DespawnAgent();
        despawn.init(channel);
        despawn.setAgentID(agentIDs.agentID);

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

TOP

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

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.