Package be.demmel.jgws.packets.gameserver.outbound

Examples of be.demmel.jgws.packets.gameserver.outbound.P085_GeneralChatOwner


        GameServerSession playerData = channel.attr(SessionKey.SESSION_KEY).get();
        // Retrieve the Character the player is currently playing
        CharacterData character = playerData.getCurrentCharacter();

        P085_GeneralChatOwner generalChatOwner = new P085_GeneralChatOwner();
        generalChatOwner.setUnknown1((int) character.getLocalID());
        generalChatOwner.setUnknown2(chatColor);
        try {
          channel.write(generalChatOwner);
        } catch (Exception e) {
          // TODO: idem
        }
View Full Code Here

TOP

Related Classes of be.demmel.jgws.packets.gameserver.outbound.P085_GeneralChatOwner

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.