[HELP] .bat error NEED HELP!!!

Results 1 to 7 of 7
  1. #1
    Account Upgraded | Title Enabled! GabrielSin is offline
    MemberRank
    Apr 2010 Join Date
    483Posts

    [HELP] .bat error NEED HELP!!!


    -




    HELP? :/


  2. #2
    Account Upgraded | Title Enabled! ngnam87 is offline
    MemberRank
    Mar 2013 Join Date
    666Posts

    Re: [HELP] .bat error NEED HELP!!!

    image2 showed :| missing field charid !
    and image1 idk if it is error or not !!!

  3. #3
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: [HELP] .bat error NEED HELP!!!

    This isn't an error mate.

  4. #4
    Account Upgraded | Title Enabled! GabrielSin is offline
    MemberRank
    Apr 2010 Join Date
    483Posts

    Re: [HELP] .bat error NEED HELP!!!

    How to remove those messages ByteArrayByteStream?

  5. #5
    I'm overrated. Fraysa is offline
    MemberRank
    Apr 2008 Join Date
    4,891Posts

    Re: [HELP] .bat error NEED HELP!!!

    Quote Originally Posted by GabrielSin View Post
    How to remove those messages ByteArrayByteStream?
    Try to look for ByteArrayByteStream in the source to see where it's called. Should be starting like:

    System.out.println(ByteArray.....

  6. #6
    Account Upgraded | Title Enabled! GabrielSin is offline
    MemberRank
    Apr 2010 Join Date
    483Posts

    Re: [HELP] .bat error NEED HELP!!!

    @Override
    public void messageReceived(IoSession session, Object message) throws Exception {
    byte[] content = (byte[]) message;
    SeekableLittleEndianAccessor slea = new GenericSeekableLittleEndianAccessor(new ByteArrayByteStream(content));
    SeekableLittleEndianAccessor sleaREF = new GenericSeekableLittleEndianAccessor(new ByteArrayByteStream(content));
    short packetId = slea.readShort();
    MapleClient client = (MapleClient) session.getAttribute(MapleClient.CLIENT_KEY);
    MaplePacketHandler packetHandler = processor.getHandler(packetId);
    if (packetHandler != null && (ServerConstants.DEBUG && !packetHandler.validateState(client) || packetHandler.validateState(client))) {
    try {
    packetHandler.handlePacket(slea, client);
    } catch (Throwable t) {
    }
    } if (ServerConstants.DEBUG) {
    System.out.println(sleaREF);
    }
    }
    SeekableLittleEndianAccessor slea = new GenericSeekableLittleEndianAccessor(new ByteArrayByteStream(content));
    Only place I found was here, now I ask you, how to remove?

  7. #7
    Proficient Member Mr mr is offline
    MemberRank
    Mar 2013 Join Date
    167Posts

    Re: [HELP] .bat error NEED HELP!!!

    Code:
    
    @Override
    public void messageReceived(IoSession session, Object message) throws Exception {
    byte[] content = (byte[]) message;
    SeekableLittleEndianAccessor slea = new GenericSeekableLittleEndianAccessor(new ByteArrayByteStream(content));
    SeekableLittleEndianAccessor sleaREF = new GenericSeekableLittleEndianAccessor(new ByteArrayByteStream(content));
    short packetId = slea.readShort();
    MapleClient client = (MapleClient) session.getAttribute(MapleClient.CLIENT_KEY);
    MaplePacketHandler packetHandler = processor.getHandler(packetId);
    if (packetHandler != null && (ServerConstants.DEBUG && !packetHandler.validateState(client) || packetHandler.validateState(client))) {
    try {
    packetHandler.handlePacket(slea, client);
    } catch (Throwable t) {
    }
    }
    }
    


    just do it percival



Advertisement