Package gwlpr.protocol.gameserver.outbound

Examples of gwlpr.protocol.gameserver.outbound.P230_InstanceLoadAgentInfo


        sendGuiData(channel);
       
        // send this agent's spawn type
        SpawnType spawnType = entity.get(SpawnData.class).spawnType;
       
        P230_InstanceLoadAgentInfo beginAgentInfo = new P230_InstanceLoadAgentInfo();
        beginAgentInfo.init(channel);
        beginAgentInfo.setSpawnType(spawnType.getIntString());
        channel.writeAndFlush(beginAgentInfo);

       
        // set some initial values
        EntityUpdateAttributesView.sendInitial(channel, entity);
View Full Code Here

TOP

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

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.