Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P075_NPCModel


        for (int i = 0; i < npc.modelHashes.length; i++)
        {
            modelFile[i].setUnknown1(npc.modelHashes[i]);
        }
       
        P075_NPCModel npcModel = new P075_NPCModel();
        npcModel.init(channel);
        npcModel.setLocalID(agentIDs.localID);
        npcModel.setModelFile(modelFile);

        channel.writeAndFlush(npcModel);
       
        // if the NPC has got a special name, send it now:
        if (!"".equals(name) && !"NoName".equals(name))
View Full Code Here

TOP

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

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.