Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P143_UpdateNpcName


        // retrieve some NPC data...
        String name = entity.get(Name.class).name;
        AgentIdentifiers agentIDs = entity.get(AgentIdentifiers.class);
       
        // send the packet
        P143_UpdateNpcName updNPCName = new P143_UpdateNpcName();
        updNPCName.init(channel);
        updNPCName.setAgentID(agentIDs.agentID);
        updNPCName.setName(GWString.formatChat(name));
       
        channel.writeAndFlush(updNPCName);
    }
View Full Code Here

TOP

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

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.