[Help ] UPDATE_QUEST_INFO [01EF] dc and error 38

Results 1 to 1 of 1
  1. #1
    Account Upgraded | Title Enabled! mixtamal6 is offline
    MemberRank
    Mar 2013 Join Date
    686Posts

    [Help ] UPDATE_QUEST_INFO [01EF] dc and error 38

    Hi i have error , ahm

    update the opcode, and also methods

    Method updateQuestinfo:

    PHP Code:
    public static byte[] updateQuestInfo(MapleCharacter cint questint npcbyte progress) {        MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
            
    mplew.writeShort(SendPacketOpcode.UPDATE_QUEST_INFO.getValue());        mplew.write(progress);        mplew.writeShort(quest);        mplew.writeInt(npc);        mplew.writeInt(0);
            return 
    mplew.getPacket();    } 

    methd: UpdateQuestfinish

    PHP Code:
    public static byte[] updateQuestFinish(int questint npcint nextquest) {        MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
            
    mplew.writeShort(SendPacketOpcode.UPDATE_QUEST_INFO.getValue());        mplew.write(11);//was 10        mplew.writeShort(quest);        mplew.writeInt(npc);        mplew.writeInt(nextquest);
            
    return mplew.getPacket();    } 


    but when I open or active any quest takes me and throws me play error code 38

    show messages in console:

    Send : EF 01 0A E8 7D E0 2E 00 00 00 00 00 00 //<---UPDATE_QUEST_INFO





    Received Data : //OPCODE IS QUEST_ACTION
    ED 00 02 E8 7D E0 2E 00 00 FF FF FF FF FF FF FF FF

    Received Data ://client error opcode
    4A 00 01 00 26 00 00 00 11 00 FD CD F0 CD EF 01 0A E8 7D E0 2E 00 00 00 00 00 00

    and error38log.txt

    show:
    SendOP(-38): UPDATE_QUEST_INFO [01EF] (13)Data: 0A E8 7D E0 2E 00 00 00 00 00 00

    Last edited by mixtamal6; 24-01-14 at 01:24 AM.




Advertisement