Jump to content

Rebel

Members
  • Content Count

    148
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by Rebel


  1. In import/inter-server.conf

    inter_configuration: {
    	// Log configuration
    	log: {
    		// [LOGIN, MAP] Log database SQL connection
    		sql_connection: {
    			db_hostname: "127.0.0.1" // Change this to your hostname
    			db_port: 3306
    			db_username: "root" // Change this to your mysql username
    			db_password: "your_password" // Change this to your mysql password
    			db_database: "db_logs" // Change this to your log db name
    		}
    	}
    }

    In that way your main and log db is separate. :)


  2. NPC Telma uses the bg_reserved_char_id and woe_reserved_char_id.. and sell some BG / WoE Exclusive items.. if you bought that through Telma, you can only use it in BG Maps or WoE Castles.. I tried using bg_reserved_char_id and set it in conf/map/battle/eBG.conf.. 

    // BG CharID for Items
    bg_reserved_char_id: 1

    is this correct? but getting this in map-console ..

    [Warning]: buildin_getbattleflag: non-exist battle config requested bg_reserved_char_id
    [Debug]: Source (NPC): Telma at bat_room (163,146)

     


  3. 1 hour ago, Dastgir said:
    [Error]: --- nullpo info --------------------------------------------
    [Error]: ExtendedBG.c:4897: 'tsd' in function `ebg_clif_send'
    [Error]: ./map-server(assert_report+0x83) [0x657373]
    [Error]: plugins/ExtendedBG.so(ebg_clif_send+0xd4) [0x7f44c74f8764]
    [Error]: plugins/ExtendedBG.so(ebg_broadcast2+0xd0) [0x7f44c74f8b30]
    [Error]: plugins/ExtendedBG.so(buildin_bg_announce+0x14a) [0x7f44c74f902a]
    [Error]: ./map-server(run_func+0x13a) [0x5bbd5a]
    [Error]: ./map-server(run_script_main+0x310) [0x5bcff0]
    [Error]: ./map-server(npc_event_sub+0xd2) [0x53aa12]
    [Error]: ./map-server(npc_script_event+0x62) [0x53cfb2]
    [Error]: ./map-server(clif_parse_LoadEndAck+0xabb) [0x4c79eb]
    [Error]: plugins/HPMHooking_map.so(HP_clif_pLoadEndAck+0x91) [0x7f44c77af721]
    [Error]: --- end nullpo info ----------------------------------------

    after login.


  4. Spoiler
    15 hours ago, Axl said:

    After @joinbg any case

    [Debug]: mapindex_name2id: Map "ebg_rush" not found in index list!

    [Debug]: mapindex_name2id: Map "ebg_conques"

    Make sure you put all the maps required in db/map_index.txt, conf/map/maps.conf.
     

    Quote

    AFTER BG RUSH BREAKS THE EMPERIUM

    [Error]: buildin_warp: moving player 'MauroM' to "02",146,46 failed.

    Tried breaking the Emperium in BG Rush cant reproduce this error.

    Quote

    AFTER BG ROTATION

    [Debug]: script debug : 0 110109533 : BG Changing End: 2
    [Error]: script_rid2sd: fatal error ! player not attached!
    [Debug]: Source (NPC): eBG_Conquest (invisible/not on a map)
    [Warning]: script_get_val: cannot access player variable '@i', defaulting to 0

    Can't reproduce this also. 

    Quote

    AFTER ENDS RUSH MATCH

    [Debug]: bg_team_rewards: Cannot give x19 7773 to BG_ID: 0
    [Debug]: bg_team_rewards: Cannot give x17 7773 to BG_ID: 0

    The time for ends a BG MATCH is not called, all time 0 - 1, 

    This too.

    Using the latest stable git: 7f7b8060cba8f0aba60f43cf343bdf3f773f3438
    Client: 2014-10-22bRagexe


  5. Is it safe to change MAX_GUILD on live server? Example on our server now it has 30 max guild member. If I change it to 24, I know there will be map-console errors.. Also ThyroDee mention that 

    Quote

    if its possible to reduce the Guild capacity on Live Server..

     


  6. 12 hours ago, Rytech said:

    If I remember correctly, it checks for 2nd jobs and higher. But since Gunslinger is a 1st job, the check will fail and make the skill fail. Thats likely why your seeing no animation. Can you show the entire code your using?

    There's no much changes in the code.

    On skill.c >
    I just added `case SL_GUNSLINGER:` after `case SL_WIZARD:`

    On skill.h >
    I added `SL_GUNSLINGER = 931,` after `RL_GLITTERING_GREED_ATK,` (so my custom SL Gunslinger is Skill ID 931)

    On status.c >
    I added `status->dbs->Skill2SCTable[SL_GUNSLINGER]  = (sc_type)MAPID_GUNSLINGER,` after
    `status->dbs->Skill2SCTable[SL_SOULLINKER]  = (sc_type)MAPID_SOUL_LINKER,`

    skill_db.conf >

    Spoiler

    {
        Id: 931
        Name: "SL_GUNSLINGER"
        Description: "Spirit of the Gunslinger"
        MaxLevel: 5
        Range: 9
        Hit: "BDT_SKILL"
        SkillType: {
            Friend: true
        }
        SkillInfo: {
            NoCastSelf: true
        }
        AttackType: "Magic"
        DamageType: {
            NoDamage: true
        }
        InterruptCast: true
        CastTime: 1000
        AfterCastActDelay: 500
        SkillData1: {
            Lv1: 150000
            Lv2: 200000
            Lv3: 250000
            Lv4: 300000
            Lv5: 350000
            Lv6: 400000
            Lv7: 450000
            Lv8: 500000
            Lv9: 550000
            Lv10: 600000
        }
        CoolDown: 0
        Requirements: {
            SPCost: {
                Lv1: 460
                Lv2: 360
                Lv3: 260
                Lv4: 160
                Lv5: 60
                Lv6: 1
                Lv7: 1
                Lv8: 1
                Lv9: 1
                Lv10: 1
            }
        }
    },

    The skill works perfect. Its just the animation is not showing.


  7. Emergency Call can be cast repeatedly..
    BG Type (Announce) is not working.. should rotate the bg type in configure time using OnTimer10000: // Rotation if BG don't start (10 seconds or?)...?

    Also is NPC Telma supported in this Extended BG? Like the mapflag for BG Items that can be used only BG Maps or WoE Exclusive Items.


  8. This is what im using ..

    Spoiler

    {
        Id: 8016
        AegisName: "Job_Costume_Suit"
        Name: "Job Costume Suit"
        Type: "IT_ARMOR"
        Weight: 100
        Delay: 1000
        Loc: "EQP_SHADOW_ARMOR"
        Upper: "ITEMUPPER_UPPER"
        OnEquipScript: <"
            if ( Class == Job_Lord_Knight && checkmount() ) {
                setoption Option_Dragon1;
            }
            changebase roclass(eaclass()|EAJL_THIRD);
        ">
        OnUnequipScript: <" changebase Class; ">
    },

     


  9. I would like to ask about this crash log. I dont really get why players are always crashing inside the woe castle.. Hoping that somebody can enlighten me on why is this happening.. Thanks!
     

    Spoiler

    Ragnarok has been crashed!

    UTC Time:       03/08/2018 12:55:12
    Local Time:     03/08/2018 21:55:12
    EXE version:    2013-08-06
    Gepard version: 2018070901

    OS version: Windows 10

    0x0085eedb Rage.exe
    0x0085f880 Rage.exe
    0x005c357e Rage.exe
    0x007ee096 Rage.exe
    0x007c8c7a Rage.exe
    0x008bdf2e Rage.exe
    0x008d0dca Rage.exe
    0x744b38f4 KERNEL32.DLL
    0x771b5e13 ntdll.dll
    0x771b5dde ntdll.dll

    EAX: 0x00000000 | 0000000000
    ECX: 0x135083f8 | 0324043768
    EDX: 0x00000000 | 0000000000
    EBX: 0x066a3e58 | 0107626072
    ESI: 0x00000003 | 0000000003
    EDI: 0x00000001 | 0000000001
    ESP: 0x0019fa04 | 0001702404
    EBP: 0x0019fb14 | 0001702676
    EIP: 0x0085eedb | 0008777435
    DR0: 0x00000000 | 0000000000
    DR1: 0x00000000 | 0000000000
    DR2: 0x00000000 | 0000000000
    DR3: 0x00000000 | 0000000000
    DR6: 0x00000000 | 0000000000
    DR7: 0x00000000 | 0000000000

    =============================================================================

    INIT: 20 : 20 : 0

    VSYNC: 1=================================== Stack ===================================
    0019fa04:  33 93 a9 00 50 0d 63 0e 58 3e 6a 06 40 ea e3 12   3   P c X>j @   
    0019fa14:  3e 21 9d 43 1b c9 19 44 ec 90 ab 43 9a 34 1f 44   >! C   D   C 4 D
    0019fa24:  b3 44 37 3b 75 72 39 3b e0 e6 f6 ff 00 00 00 00    D7;ur9;        
    0019fa34:  94 fa 19 00 c3 de 7a 00 30 39 ff 0d a0 dd 30 27         z 09    0'
    0019fa44:  30 dd ec 04 e0 e6 f6 ff a6 00 00 00 00 00 00 00   0               
    0019fa54:  50 0d 63 0e 00 a1 73 c0 00 4a 23 40 98 07 b5 43   P c   s  J#@   C
    0019fa64:  60 04 aa 15 00 00 00 00 00 00 00 00 75 72 39 3b   `           ur9;
    0019fa74:  b3 44 37 3b 01 00 00 00 30 3d a4 00 00 00 00 00    D7;    0=      
    0019fa84:  00 00 00 00 03 00 00 00 03 00 00 00 9c fa 19 00                   
    0019fa94:  4c 52 a2 00 4e 02 35 3b 00 00 00 00 18 90 d2 12   LR  N 5;        
    0019faa4:  a6 02 1a 44 4b 2c 66 3f 6a 07 9e 43 03 00 00 00      DK,f?j  C    
    0019fab4:  40 ea e3 00 fe ff ff ff ff ff ff ff f8 83 50 13   @             P
    0019fac4:  67 02 00 00 3a 01 00 00 7c 02 00 00 57 01 00 00   g   :   |   W   
    0019fad4:  ff ff ff 80 00 00 00 00 70 fb 19 00 b9 c9 93 00           p       
    0019fae4:  ff ff ff ff 28 b5 d6 0e 00 a1 73 c0 a6 02 1a 44       (     s    D
    0019faf4:  6a 07 9e 43 d6 06 23 44 13 25 c1 43 4e 02 35 3b   j  C  #D % CN 5;
    0019fb04:  33 93 a9 00 70 fb 19 00 7e 4b 93 00 ff ff ff ff   3   p   ~K      
    0019fb14:  30 fb 19 00 80 f8 85 00 50 0d 63 0e 00 00 00 00   0       P c     
    0019fb24:  00 00 00 00 50 0d 63 0e 48 f7 3b 13 58 fb 19 00       P c H ; X   
    0019fb34:  7e 35 5c 00 50 0d 63 0e 00 00 00 00 b8 7b d0 15   ~5\ P c      {  
    0019fb44:  01 00 00 00 a8 0a fc 26 00 00 00 00 b8 0c 63 0e          &      c
    0019fb54:  50 0d 63 0e 7c fb 19 00 96 e0 7e 00 5b 93 a9 00   P c |     ~ [   
    0019fb64:  00 00 00 00 b8 7b d0 15 90 79 4b 74 a4 fb 19 00        {   yKt    
    0019fb74:  2e c9 92 00 ff ff ff ff b0 fb 19 00 7a 8c 7c 00   .           z |
    0019fb84:  00 00 00 00 40 aa a2 00 10 aa a2 00 3c b9 5b 00       @       < [
    =============================================================================

    Loaded GRFs:

    [0] rage.grf
    [1] palletes.grf
    [2] data.grf

    =============================================================================

    Network packet's statistic:

    s_bytes: 7 Kbytes
    r_bytes: 1 Mbytes

    s_packets ->: 584
    r_packets <-: 68519

    00# -> 9c00ac841e00000006 [172 ms]
    01# -> d208ac841e002600c900 [172 ms]
    02# -> 83092e00ac841e0001ea000000ea000000000000000000000000000000 [172 ms]
    03# -> d001ac841e000400 [172 ms]
    04# -> fb07ac841e00000000002600c9000801000000000000000000 [172 ms]
    05# -> 29020b981e00020000000000000000 [188 ms]
    06# -> 88000b981e002300d500 [188 ms]
    07# -> de0159005c500c000b981e00f9255a0f000000006c020000671b00000a00010006 [188 ms]
    08# -> 8d00260035851e004e206920672067203a20436861726765204172726f777e2057686f6f7e00 [188 ms]
    09# -> 9c00ab921e00000002 [188 ms]
    10# -> de01ea01ab921e00bf8f1e00f2255a0faf00000090010000ae5400000a000a0008 [188 ms]
    11# -> 83092e00ab921e0001af000000af000000000000000000000000000000 [188 ms]
    12# -> fb07ab921e00bf8f1e0000000000ea01000000000000000000 [188 ms]
    13# -> d7010b981e0007e6000000 [203 ms]
    14# -> 14095000000b981e004b000000000000000000b40f4d006e070000be0bed255a0fbd136c0c0900e60000000000750000000100000000800000000108cd508cda880505ff000000ffffffffffffffff00 [203 ms]
    15# -> 1a013e01050035851e0035851e0001 [203 ms]
    16# -> 83092e0035851e00016400000064000000000000000000000000000000 [203 ms]
    17# -> fb0735851e0035851e00000000003e01000000000000000000 [203 ms]
    18# -> c8010d005f0268881e00880001 [203 ms]
    19# -> 9c0025851e00000001 [203 ms]
    20# -> 83092e0025851e00016400000064000000000000000000000000000000 [203 ms]
    21# -> 9c0025851e00000001 [219 ms]
    22# -> fb0725851e00ec971e0000000000e901000000000500000000 [219 ms]
    23# -> c8011900f801a0861e002b0901 [219 ms]
    24# -> 6a09ab921e00 [266 ms]
    25# -> 9c005f8b1e00000001 [266 ms]
    26# -> de01ea015f8b1e00a0861e00b0255a0f2800000090010000566700000a000a0008 [266 ms]
    27# -> 83092e005f8b1e00016400000064000000000000000000000000000000 [266 ms]
    28# -> fb075f8b1e00a0861e0000000000ea01000000000000000000 [266 ms]
    29# -> 9c00e7931e00000003 [282 ms]
    30# -> cf01e7931e008b8f1e00a48f1e00ac841e0025851e006b8a1e000b00 [282 ms]

    =============================================================================

    00# [ OK ] wav\_stone_explosion.wav [657 ms]
    01# [ OK ] palette\¸Ó¸®\¸Ó¸®6_³²_259.pal [6953 ms]
    02# [ OK ] palette\¸ö\ÆäÄÚÆȶó_³²_371.pal [6953 ms]
    03# [ OK ] sprite\Àΰ£Á·\¹Ùµå\¹Ùµå_³²_´Ü°Ë_°Ë±¤.spr [8750 ms]
    04# [ OK ] sprite\Àΰ£Á·\¹Ùµå\¹Ùµå_³²_´Ü°Ë_°Ë±¤.act [8750 ms]
    05# [ OK ] sprite\Àΰ£Á·\¹Ùµå\¹Ùµå_³²_´Ü°Ë.spr [8750 ms]
    06# [ OK ] sprite\Àΰ£Á·\¹Ùµå\¹Ùµå_³²_´Ü°Ë.act [8750 ms]
    07# [ OK ] sprite\¾ÆÀÌÅÛ\Ç÷¹ÀÌÆ®.act [11516 ms]
    08# [ OK ] sprite\¾ÆÀÌÅÛ\Ç÷¹ÀÌÆ®.spr [11516 ms]
    09# [ OK ] wav\_curse.wav [11985 ms]
    10# [ OK ] sprite\ÀÌÆÑÆ®\status-curse.act [11985 ms]
    11# [ OK ] sprite\ÀÌÆÑÆ®\status-curse.spr [11985 ms]
    12# [ OK ] palette\¸ö\ÇÁ·ÎÆä¼­_³²_230.pal [13875 ms]
    13# [ OK ] palette\¸ö\±Ç¼º_³²_407.pal [14344 ms]
    14# [ OK ] palette\¸Ó¸®\¸Ó¸®21_³²_13.pal [14407 ms]
    15# [ OK ] palette\¸ö\¾î¼¼½ÅÅ©·Î½º_³²_143.pal [14453 ms]
    16# [ OK ] sprite\¾Ç¼¼»ç¸®\³²\³²_°»½ºÄ«ÇÁ.spr [14547 ms]
    17# [ OK ] sprite\¾Ç¼¼»ç¸®\³²\³²_°»½ºÄ«ÇÁ.act [14547 ms]
    18# [ OK ] palette\¸Ó¸®\¸Ó¸®2_³²_17.pal [14782 ms]
    19# [ OK ] wav\effect\´ç½ÅÀ» À§ÇÑ ¼­ºñ½º.wav [18750 ms]
    20# [ OK ] palette\¸ö\¾î¼¼½ÅÅ©·Î½º_³²_325.pal [20219 ms]
    21# [ OK ] wav\effect\Èï¾ó°Å¸².wav [21188 ms]
    22# [ OK ] wav\effect\¼®¾çÀÇ ¾î½Ø½Å.wav [21453 ms]
    23# [ OK ] sprite\¸ó½ºÅÍ\skel_archer_arrow.act [22594 ms]
    24# [ OK ] sprite\¸ó½ºÅÍ\skel_archer_arrow.spr [22594 ms]
    25# [ OK ] wav\effect\ef_firewall.wav [23547 ms]
    26# [ OK ] texture\À¯ÀúÀÎÅÍÆäÀ̽º\chat_open.bmp [26235 ms]
    27# [ OK ] texture\À¯ÀúÀÎÅÍÆäÀ̽º\sysbox_arr_l.bmp [26235 ms]
    28# [ OK ] texture\À¯ÀúÀÎÅÍÆäÀ̽º\sysbox_md.bmp [26235 ms]
    29# [ OK ] texture\À¯ÀúÀÎÅÍÆäÀ̽º\sysbox_rd.bmp [26235 ms]
    30# [ OK ] texture\À¯ÀúÀÎÅÍÆäÀ̽º\sysbox_ld.bmp [26235 ms]

    =============================================================================

    0x00400000   0x00a75000   C:\Users\PIDO\Desktop\RageRO\Rage.exe
    0x77150000   0x0017b000   C:\Windows\SYSTEM32\ntdll.dll
    0x744a0000   0x000e0000   C:\Windows\SYSTEM32\KERNEL32.DLL
    0x76df0000   0x0017e000   C:\Windows\SYSTEM32\KERNELBASE.dll
    0x73c70000   0x00092000   C:\Windows\system32\apphelp.dll
    0x76200000   0x0007b000   C:\Windows\SYSTEM32\advapi32.dll
    0x73f20000   0x000be000   C:\Windows\SYSTEM32\msvcrt.dll
    0x74580000   0x00044000   C:\Windows\SYSTEM32\sechost.dll
    0x74840000   0x000ad000   C:\Windows\SYSTEM32\RPCRT4.dll
    0x73e80000   0x0001e000   C:\Windows\SYSTEM32\SspiCli.dll
    0x73e70000   0x0000a000   C:\Windows\SYSTEM32\CRYPTBASE.dll
    0x74be0000   0x00058000   C:\Windows\SYSTEM32\bcryptPrimitives.dll
    0x74190000   0x0014e000   C:\Windows\SYSTEM32\gdi32.dll
    0x74a90000   0x00147000   C:\Windows\SYSTEM32\USER32.dll
    0x74940000   0x0002b000   C:\Windows\SYSTEM32\imm32.dll
    0x72ab0000   0x000ee000   C:\Windows\SYSTEM32\ddraw.dll
    0x00030000   0x00007000   C:\Users\PIDO\Desktop\RageRO\dinput.dll
    0x766f0000   0x00013000   C:\Windows\SYSTEM32\netapi32.dll
    0x76160000   0x00095000   C:\Windows\SYSTEM32\oleaut32.dll
    0x742e0000   0x001ba000   C:\Windows\SYSTEM32\combase.dll
    0x74c40000   0x013fe000   C:\Windows\SYSTEM32\shell32.dll
    0x72ef0000   0x00069000   C:\Users\PIDO\Desktop\RageRO\msvcp100.dll
    0x73e00000   0x0002f000   C:\Windows\SYSTEM32\iphlpapi.dll
    0x76f70000   0x00037000   C:\Windows\SYSTEM32\cfgmgr32.dll
    0x76770000   0x004fa000   C:\Windows\SYSTEM32\windows.storage.dll
    0x700f0000   0x000bf000   C:\Users\PIDO\Desktop\RageRO\msvcr100.dll
    0x74a30000   0x00045000   C:\Windows\SYSTEM32\shlwapi.dll
    0x73620000   0x00007000   C:\Windows\SYSTEM32\DCIMAN32.dll
    0x73fe0000   0x0000c000   C:\Windows\SYSTEM32\kernel.appcore.dll
    0x73ff0000   0x0008d000   C:\Windows\SYSTEM32\shcore.dll
    0x748f0000   0x00044000   C:\Windows\SYSTEM32\powrprof.dll
    0x74080000   0x0000f000   C:\Windows\SYSTEM32\profapi.dll
    0x74970000   0x0005f000   C:\Windows\SYSTEM32\ws2_32.dll
    0x74750000   0x000eb000   C:\Windows\SYSTEM32\ole32.dll
    0x72fd0000   0x002c6000   C:\Windows\SYSTEM32\wininet.dll
    0x73e60000   0x00008000   C:\Windows\SYSTEM32\version.dll
    0x73c40000   0x00024000   C:\Windows\SYSTEM32\winmm.dll
    0x30000000   0x0006d000   C:\Users\PIDO\Desktop\RageRO\binkw32.dll
    0x735c0000   0x00017000   C:\Users\PIDO\Desktop\RageRO\cps.dll
    0x10000000   0x0005d000   C:\Users\PIDO\Desktop\RageRO\granny2.dll
    0x60000000   0x0005d000   C:\Users\PIDO\Desktop\RageRO\ijl15.dll
    0x21100000   0x0005e000   C:\Users\PIDO\Desktop\RageRO\mss32.dll
    0x73c10000   0x00023000   C:\Windows\SYSTEM32\WINMMBASE.dll
    0x6f8d0000   0x00815000   C:\Users\PIDO\Desktop\RageRO\gepard.dll
    0x76fb0000   0x00006000   C:\Windows\SYSTEM32\PSAPI.DLL
    0x735b0000   0x0000f000   C:\Windows\SYSTEM32\WTSAPI32.dll
    0x6f680000   0x00092000   C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.10586.0_none_811bc0006c44242b\COMCTL32.dll
    0x6f790000   0x0013f000   C:\Windows\SYSTEM32\dbghelp.dll
    0x72590000   0x00044000   C:\Windows\SYSTEM32\WINSTA.dll
    0x73660000   0x00075000   C:\Windows\system32\uxtheme.dll
    0x76040000   0x0011f000   C:\Windows\SYSTEM32\MSCTF.dll
    0x770f0000   0x00007000   C:\Windows\SYSTEM32\NSI.dll
    0x73550000   0x00014000   C:\Windows\SYSTEM32\dhcpcsvc.DLL
    0x73a20000   0x0004f000   C:\Windows\system32\mswsock.dll
    0x72ed0000   0x00012000   C:\Windows\system32\napinsp.dll
    0x72a90000   0x00016000   C:\Windows\system32\pnrpnsp.dll
    0x72a70000   0x00014000   C:\Windows\system32\NLAapi.dll
    0x734c0000   0x00084000   C:\Windows\SYSTEM32\DNSAPI.dll
    0x72a60000   0x0000b000   C:\Windows\System32\winrnr.dll
    0x73980000   0x00047000   C:\Windows\System32\fwpuclnt.dll
    0x73d10000   0x0001b000   C:\Windows\SYSTEM32\bcrypt.dll
    0x734b0000   0x00008000   C:\Windows\System32\rasadhlp.dll
    0x702c0000   0x00023000   C:\Windows\SYSTEM32\t2embed.dll
    0x72600000   0x0001d000   C:\Windows\system32\dwmapi.dll
    0x26f00000   0x0002a000   C:\Users\PIDO\Desktop\RageRO\mp3dec.asi
    0x22600000   0x00016000   C:\Users\PIDO\Desktop\RageRO\mssfast.m3d
    0x6f5f0000   0x00086000   C:\Windows\SYSTEM32\DSOUND.DLL
    0x77060000   0x00084000   C:\Windows\SYSTEM32\clbcatq.dll
    0x6cf20000   0x00055000   C:\Windows\System32\MMDevApi.dll
    0x73be0000   0x00022000   C:\Windows\System32\DEVOBJ.dll
    0x727a0000   0x0014b000   C:\Windows\System32\PROPSYS.dll
    0x70250000   0x00068000   C:\Windows\SYSTEM32\AUDIOSES.DLL
    0x723d0000   0x000c8000   C:\Windows\SYSTEM32\wintypes.dll
    0x72a50000   0x00009000   C:\Windows\SYSTEM32\avrt.dll
    0x6a9b0000   0x02454000   C:\Windows\SYSTEM32\igdumdim32.dll
    0x762e0000   0x0040b000   C:\Windows\SYSTEM32\SETUPAPI.dll
    0x6e950000   0x00c95000   C:\Windows\SYSTEM32\igc32.dll
    0x699c0000   0x000df000   C:\Windows\SYSTEM32\D3DIM700.DLL

     

     


  10. im needing help.. here is the crash gdb bt full

    Spoiler

    gdb) bt full
    #0  0x00007ffff62dbed7 in ____strtoll_l_internal () from /lib64/libc.so.6
    No symbol table info available.
    #1  0x000000000043852b in atoi (__nptr=<optimized out>)
        at /usr/include/stdlib.h:280
    No locals.
    #2  inter_guild_fromsql (guild_id=14) at int_guild.c:445
            g = 0x7ffff30dc064
            data = 0x0
            len = 8
            p = 0x7ffff6665f20 <_nl_C_LC_NUMERIC> "\022\227B\366\377\177"
            g = 0x7ffff30dc21c
    #3  0x0000000000436438 in inter_guild_CharOnline (char_id=150146,
        guild_id=14) at int_guild.c:654
            g = 0x7ffff6665f20 <_nl_C_LC_NUMERIC>
            i = 10
    #4  0x00000000004142f4 in char_set_char_online (map_id=4516640,
        char_id=150146, account_id=2000177) at char.c:569
            character = 0x44da80 <db_data2ptr>
            cp = 0x7ffff6665f20 <_nl_C_LC_NUMERIC>
    #5  0x000000000041faf4 in char_parse_char_select (fd=11, sd=0x7ffff47b42cc,
        ipl=10) at char.c:4867
            char_dat = {char_id = 20252, account_id = 468, partner_id = 468,
              father = 0, mother = 4512384, child = 0, base_exp = 4516640,
              job_exp = 8593263191808060, zeny = 0, bank_vault = 0, class = 0,
              status_point = 0, skill_point = 156257180, hp = 0,
              max_hp = 8497405, sp = 0, max_sp = 7399931, option = 0,
              manner = 4047, karma = 0 '\000', hair = 31, hair_color = 0,
              clothes_color = 0, body = 0, party_id = 133056,
    ---Type <return> to continue, or q <return> to quit---
              guild_id = 123268, clan_id = 1138, pet_id = 1054, hom_id = 0,
              mer_id = 0, ele_id = 1, fame = 27, arch_faith = 233,
              arch_calls = 0, spear_faith = 0, spear_calls = 0,
              sword_faith = 0, sword_calls = 0, look = {weapon = 0, shield = 0,
                head_top = 0, head_mid = 0, head_bottom = 0, robe = 0},
              name = '\000' <repeats 20 times>, "\017\000\003",
              base_level = 12258232, job_level = 68750502, str = 28233,
              agi = 26995, vit = 28263, int_ = 24937, dex = 0, luk = 0,
              slot = 0 '\000', sex = 0 '\000', mapip = 0, mapport = 0,
              last_login = 429496729855, last_point = {map = 255, x = 175,
                y = 129}, save_point = {map = 1, x = 110, y = 1}, memo_point = {
                {map = 2, x = 0, y = 0}, {map = 0, x = 0, y = 0}, {map = 38238,
                  x = 23392, y = 0}}, inventory = {{id = 10158267,
                  nameid = 187, amount = 187, equip = 12255387,
                  identify = 0 '\000', refine = 0 '\000', attribute = 0 '\000',
                  card = {0, 0, 0, 0}, expire_time = 0, favorite = 0 '\000',
                  bound = 0 '\000', unique_id = 294535972598901, option = {{
                      index = 64, value = 0, param = 1 '\001'}, {index = 0,
                      value = 4131, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 14, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 347905678259850466, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 17454059896513891, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294402828602520, option = {{index = 1, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 770, value = 0,
                      param = 165 '\245'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 333018879667899, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 292702021556498, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 4321,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 16, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 292702021556495, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 4321,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 15, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 313472483065856, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285696929562624, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294527382655508, option = {{index = 4, value = 0,
                      param = 1 '\001'}, {index = 0, value = 4303,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 9, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 25909042321101556, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
    ---Type <return> to continue, or q <return> to quit---
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294531677623154, option = {{index = 32,
                      value = 0, param = 1 '\001'}, {index = 0, value = 4253,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 11, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 2304262839544517, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294523087692430, option = {{index = 16,
                      value = 0, param = 1 '\001'}, {index = 0, value = 4105,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 8, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 2304267134511814, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284563058196480, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 3944944641683996, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
    ---Type <return> to continue, or q <return> to quit---
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 108969333254173375, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 3391018414547335, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 256,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294523087794755, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 4302,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 7, value = 0,
                      param = 191 '\277'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  unique_id = 4787724599432437, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 295382081342375, option = {{index = 4096,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 310, value = 0,
                      param = 189 '\275'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 315834715604950, option = {{index = 128,
                      value = 0, param = 1 '\001'}, {index = 0, value = 4238,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 500, value = 0,
                      param = 189 '\275'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 315834715604953, option = {{index = 8, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 1 '\001'}, {index = 0, value = 4237,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 499, value = 0,
                      param = 189 '\275'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294359879124952, option = {{index = 256,
                      value = 0, param = 1 '\001'}, {index = 0, value = 4411,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 359, value = 0,
                      param = 189 '\275'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 294948289644503, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 4403,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 131, value = 0,
                      param = 189 '\275'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 286766376419328, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 533, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 1128068865856754, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 303396490303011, option = {{index = 512,
                      value = 0, param = 1 '\001'}, {index = 0, value = 4411,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 48, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 316294277108472, option = {{index = 2, value = 0,
                      param = 1 '\001'}, {index = 0, value = 4140,
                      param = 44 ','}, {index = 4172, value = 4172,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 475, value = 0,
                      param = 189 '\275'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284094907290332, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284455684541993, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 1410518799613952, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 287560945369088, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 534, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 286757786484736, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 535, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284700497149952, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 286757786484736, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 536, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 4837056593402271, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 567279280455680, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
    ---Type <return> to continue, or q <return> to quit---
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285439231524864, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 287560945369088, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 537, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 286757786484736, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 538, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 312445985882112, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285752764137472, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 299174536937472, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
    ---Type <return> to continue, or q <return> to quit---
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285744174202880, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285898793025536, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284610302836736, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  unique_id = 567369474768896, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 1691014523781120, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 1691109013061632, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 4787664469360640, option = {{index = 0,
    ---Type <return> to continue, or q <return> to quit---
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285705519497216, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284575943098368, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 566171178893312, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 299784422293504, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284601712902144, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 284584533032960, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 291808668024832, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 539, value = 0,
                      param = 60 '<'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 299269026217984, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 285765649039360, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 614897582866432, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 283656820097024, option = {{index = 0, value = 0,
                      param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
    ---Type <return> to continue, or q <return> to quit---
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 1409616856481792, option = {{index = 0,
                      value = 0, param = 1 '\001'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}}} <repeats 30 times>}, cart = {{id = 0,
                  nameid = 0, amount = 0, equip = 0, identify = 0 '\000',
                  refine = 0 '\000', attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 0, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}} <repeats 72 times>, {id = 0,
                  nameid = 0, amount = 0, equip = 0, identify = 0 '\000',
                  refine = 0 '\000', attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 0, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 213 '\325'}, {index = -2511, value = 32767,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {-9616, 71, 0, 0},
                  expire_time = 4294951952, favorite = -1 '\377',
                  bound = 127 '\177', unique_id = 140737327285152, option = {{
                      index = -13192, value = -1, param = 255 '\377'}, {
                      index = 0, value = -9618, param = 71 'G'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = -2458,
                      value = 32767, param = 0 '\000'}, {index = -26847,
                      value = -2514, param = 255 '\377'}}}, {id = 0,
    ---Type <return> to continue, or q <return> to quit---
                  nameid = 0, amount = 0, equip = 0, identify = 0 '\000',
                  refine = 0 '\000', attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 4130934009, favorite = -1 '\377',
                  bound = 127 '\177', unique_id = 0, option = {{index = -20285,
                      value = -2511, param = 255 '\377'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -2458, value = 32767,
                      param = 0 '\000'}, {index = 76, value = 0,
                      param = 0 '\000'}}}, {id = -134250496, nameid = 32767,
                  amount = 0, equip = 4133897120, identify = -1 '\377',
                  refine = 127 '\177', attribute = 0 '\000', card = {-14114,
                    -2511, 32767, 0}, expire_time = 4133913600,
                  favorite = -1 '\377', bound = 127 '\177', unique_id = 2,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = -20645, param = 71 'G'}, {index = 0,
                      value = 0, param = 112 'p'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -18400, value = -2511,
                      param = 255 '\377'}}}, {id = 32, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 4697945, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 140737488340208, option = {{index = -18475,
                      value = -2511, param = 255 '\377'}, {index = 0,
                      value = -12968, param = 255 '\377'}, {index = 32767,
                      value = 0, param = 40 '('}, {index = 71, value = 0,
                      param = 0 '\000'}, {index = -31744, value = -2458,
                      param = 255 '\377'}}}, {id = 4708976, nameid = 0,
                  amount = 0, equip = 4294952224, identify = -1 '\377',
    ---Type <return> to continue, or q <return> to quit---
                  refine = 127 '\177', attribute = 0 '\000', card = {17312,
                    -2458, 32767, 0}, expire_time = 4294954376,
                  favorite = -1 '\377', bound = 127 '\177',
                  unique_id = 4708974, option = {{index = -31744,
                      value = -2458, param = 255 '\377'}, {index = 0,
                      value = -26847, param = 46 '.'}, {index = 32767,
                      value = 0, param = 110 'n'}, {index = 71, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 1 '\001'}}}, {id = 19, nameid = 0, amount = 0,
                  equip = 4130934009, identify = -1 '\377',
                  refine = 127 '\177', attribute = 0 '\000', card = {0, 0, 0,
                    0}, expire_time = 4130451651, favorite = -1 '\377',
                  bound = 127 '\177', unique_id = 0, option = {{index = -31744,
                      value = -2458, param = 255 '\377'}, {index = 0,
                      value = 67, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -2049, value = 32767,
                      param = 0 '\000'}, {index = 17312, value = -2458,
                      param = 255 '\377'}}}, {id = -164509474, nameid = 32767,
                  amount = 0, equip = 4133913600, identify = -1 '\377',
                  refine = 127 '\177', attribute = 0 '\000', card = {2, 0, 0,
                    0}, expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 4697643, option = {{index = 3440, value = 0,
                      param = 0 '\000'}, {index = 0, value = -18400,
                      param = 49 '1'}, {index = 32767, value = 0,
                      param = 32 ' '}, {index = 0, value = 32767,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 4697641, identify = 0 '\000', refine = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  attribute = 0 '\000', card = {-14848, -1, 32767, 0},
                  expire_time = 4133897120, favorite = -1 '\377',
                  bound = 127 '\177', unique_id = 140737488342632, option = {{
                      index = -20992, value = 71, param = 0 '\000'}, {
                      index = 0, value = -31744, param = 102 'f'}, {
                      index = 32767, value = 0, param = 33 '!'}, {
                      index = -2514, value = 32767, param = 0 '\000'}, {
                      index = -7827, value = -2514, param = 255 '\377'}}}, {
                  id = 0, nameid = 1, amount = 0, equip = 57,
                  identify = 0 '\000', refine = 0 '\000', attribute = 0 '\000',
                  card = {3440, 0, 0, 0}, expire_time = 4697947,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = -9618, value = 71, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 1,
                      value = 0, param = 19 '\023'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 3440, value = 0,
                      param = 0 '\000'}}}, {id = -16000, nameid = 32767,
                  amount = 0, equip = 4130267501, identify = -1 '\377',
                  refine = 127 '\177', attribute = 0 '\000', card = {0, 0, 0,
                    0}, expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 0, option = {{index = -2, value = -1,
                      param = 255 '\377'}, {index = -1, value = 0,
                      param = 0 '\000'}, {index = 10, value = 0,
                      param = 59 ';'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -12768, value = -1,
                      param = 255 '\377'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = -1 '\377', refine = 127 '\177',
                  attribute = 0 '\000', card = {0, 0, 32767, 0},
    ---Type <return> to continue, or q <return> to quit---
                  expire_time = 4294952390, favorite = -1 '\377',
                  bound = 127 '\177', unique_id = 0, option = {{index = 0,
                      value = 0, param = 255 '\377'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -1, value = -1,
                      param = 255 '\377'}}}, {id = -164699795, nameid = 32767,
                  amount = 0, equip = 1, identify = 0 '\000',
                  refine = 0 '\000', attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 0, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = -20964,
                      param = 71 'G'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 1,
                      param = 0 '\000'}, {index = 48, value = 0,
                      param = 0 '\000'}}}, {id = 3440, nameid = 0, amount = 0,
                  equip = 4697643, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 206158430216, option = {{index = -12128,
    ---Type <return> to continue, or q <return> to quit---
                      value = -1, param = 255 '\377'}, {index = 0,
                      value = -12320, param = 255 '\377'}, {index = 32767,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -14720, value = -2154,
                      param = 255 '\377'}}}, {id = -161053696, nameid = 32767,
                  amount = 0, equip = 0, identify = 0 '\000',
                  refine = 0 '\000', attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 0, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
    ---Type <return> to continue, or q <return> to quit---
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000', unique_id = 0,
                  option = {{index = 0, value = 0, param = 0 '\000'}, {
                      index = 0, value = 0, param = 0 '\000'}, {index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0},
    ---Type <return> to continue, or q <return> to quit---
                  expire_time = 1280, favorite = 5 '\005', bound = 0 '\000',
                  unique_id = 151986007703743, option = {{index = 768,
                      value = 32540, param = 21 '\025'}, {index = 256,
                      value = 4352, param = 19 '\023'}, {index = 4608,
                      value = 5903, param = 22 '\026'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 4130939612, identify = -1 '\377',
                  refine = 127 '\177', attribute = 0 '\000', card = {1280, 0,
                    5, 0}, expire_time = 191, favorite = 59 ';',
                  bound = 138 '\212', unique_id = 72062084411294464, option = {{
                      index = -9618, value = 71, param = 0 '\000'}, {index = 0,
                      value = -31744, param = 102 'f'}, {index = 32767,
                      value = 0, param = 120 'x'}, {index = -1, value = 32767,
                      param = 0 '\000'}, {index = -12944, value = -1,
                      param = 255 '\377'}}}, {id = 24, nameid = 0, amount = 0,
                  equip = 4294954080, identify = -1 '\377',
                  refine = 127 '\177', attribute = 0 '\000', card = {24768, 69,
                    0, 0}, expire_time = 0, favorite = 0 '\000',
                  bound = 0 '\000', unique_id = 0, option = {{index = 0,
                      value = 0, param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 0, identify = 0 '\000', refine = 0 '\000',
                  attribute = 0 '\000', card = {0, 0, 0, 0}, expire_time = 0,
                  favorite = 0 '\000', bound = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  unique_id = 21474837760, option = {{index = 191, value = 0,
                      param = 59 ';'}, {index = 0, value = 768,
                      param = 28 '\034'}, {index = 1045, value = 256,
                      param = 0 '\000'}, {index = 6675, value = 4608,
                      param = 15 '\017'}, {index = 22, value = 0,
                      param = 0 '\000'}}}, {id = 0, nameid = 0, amount = 0,
                  equip = 1280, identify = 5 '\005', refine = 0 '\000',
                  attribute = 0 '\000', card = {191, 0, -30149, 0},
                  expire_time = 2132542208, favorite = 21 '\025',
                  bound = 4 '\004', unique_id = 1661566579169759488, option = {{
                      index = 22, value = 0, param = 21 '\025'}, {index = 256,
                      value = -20696, param = 71 'G'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -2458, value = 32767,
                      param = 0 '\000'}, {index = 8924, value = -2503,
                      param = 255 '\377'}}}, {id = 1280, nameid = 5,
                  amount = 0, equip = 191, identify = 59 ';',
                  refine = -118 '\212', attribute = 0 '\000', card = {768,
                    32540, 1045, 256}, expire_time = 4708974,
                  favorite = 0 '\000', bound = 0 '\000',
                  unique_id = 140737327301632, option = {{index = -12920,
                      value = -1, param = 255 '\377'}, {index = 0,
                      value = -12672, param = 255 '\377'}, {index = 32767,
                      value = 0, param = 30 '\036'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = -12944, value = -1,
                      param = 255 '\377'}}}, {id = 4546752, nameid = 0,
                  amount = 0, equip = 0, identify = 0 '\000',
                  refine = 0 '\000', attribute = 0 '\000', card = {0, 0, 0, 0},
                  expire_time = 0, favorite = 0 '\000', bound = 0 '\000',
    ---Type <return> to continue, or q <return> to quit---
                  unique_id = 0, option = {{index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}, {index = 0, value = 0,
                      param = 0 '\000'}}}}, skill = {{id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 1280, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 5, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 191, lv = 0 '\000', flag = 0 '\000'}, {id = 35387,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 768, lv = 28 '\034',
                  flag = 127 '\177'}, {id = 1045, lv = 0 '\000',
                  flag = 1 '\001'}, {id = 4352, lv = 19 '\023',
                  flag = 26 '\032'}, {id = 4608, lv = 15 '\017',
                  flag = 23 '\027'}, {id = 22, lv = 0 '\000', flag = 0 '\000'},
                {id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 8924,
                  lv = 57 '9', flag = 246 '\366'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 12800, lv = 48 '0', flag = 48 '0'}, {
                  id = 14128, lv = 53 '5', flag = 57 '9'}, {id = 191,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 35387, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 768, lv = 28 '\034',
                  flag = 127 '\177'}, {id = 1045, lv = 0 '\000',
                  flag = 1 '\001'}, {id = 44544, lv = 71 'G', flag = 0 '\000'},
                {id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 33792,
    ---Type <return> to continue, or q <return> to quit---
                  lv = 102 'f', flag = 246 '\366'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 52840, lv = 255 '\377',
                  flag = 255 '\377'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 52864, lv = 255 '\377',
                  flag = 255 '\377'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 30, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 52816,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 24768, lv = 69 'E',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'} <repeats 519 times>, {id = 33792,
                  lv = 102 'f', flag = 246 '\366'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 17312, lv = 102 'f',
                  flag = 246 '\366'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 62787, lv = 48 '0',
                  flag = 246 '\366'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 44544, lv = 71 'G', flag = 0 '\000'},
                {id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 3,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 53168, lv = 255 '\377',
                  flag = 255 '\377'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 26119, lv = 69 'E', flag = 0 '\000'},
                {id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 24, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 48, lv = 0 '\000', flag = 0 '\000'}, {id = 53408,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53216,
    ---Type <return> to continue, or q <return> to quit---
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 23323, lv = 49 '1',
                  flag = 59 ';'}, {id = 14131, lv = 109 'm', flag = 91 '['}, {
                  id = 28233, lv = 102 'f', flag = 111 'o'}, {id = 7005,
                  lv = 91 '[', flag = 48 '0'}, {id = 14957, lv = 0 '\000',
                  flag = 255 '\377'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 47040, lv = 107 'k',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 4, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 45255, lv = 111 'o',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 52960, lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 60389,
                  lv = 216 '\330', flag = 246 '\366'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 50, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 26128, lv = 107 'k', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 50, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 4, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53040,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 11530,
                  lv = 215 '\327', flag = 246 '\366'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53072,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 58880, lv = 52 '4',
                  flag = 157 '\235'}, {id = 2, lv = 0 '\000', flag = 0 '\000'},
    ---Type <return> to continue, or q <return> to quit---
                {id = 1037, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 28076,
                  lv = 176 '\260', flag = 244 '\364'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 28076,
                  lv = 176 '\260', flag = 244 '\364'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53072,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 58176,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 30, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 53136, lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 15228,
                  lv = 215 '\327', flag = 246 '\366'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 58880, lv = 52 '4', flag = 157 '\235'}, {id = 18793,
                  lv = 209 '\321', flag = 180 '\264'}, {id = 60456,
                  lv = 70 'F', flag = 0 '\000'}, {id = 0, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 0, lv = 0 '\000', flag = 0 '\000'}, {id = 28076,
                  lv = 176 '\260', flag = 244 '\364'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 3418, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 58176, lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
    ---Type <return> to continue, or q <return> to quit---
                  lv = 0 '\000', flag = 0 '\000'}, {id = 59, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 359, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 25848, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 58176, lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 30, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 53392, lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 27763, lv = 69 'E',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 51948, lv = 165 '\245', flag = 244 '\364'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 8, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 48, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 53408, lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53216,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53248,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 34695, lv = 30 '\036',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 59, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 7328, lv = 107 'k',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 29535, lv = 107 'k', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 29540, lv = 58 ':',
                  flag = 32 ' '}, {id = 12850, lv = 32 ' ', flag = 32 ' '}, {
                  id = 26139, lv = 107 'k', flag = 0 '\000'}, {id = 0,
    ---Type <return> to continue, or q <return> to quit---
                  lv = 0 '\000', flag = 0 '\000'}, {id = 58880, lv = 52 '4',
                  flag = 157 '\235'}, {id = 18793, lv = 209 '\321',
                  flag = 180 '\264'}, {id = 28076, lv = 176 '\260',
                  flag = 244 '\364'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 28076, lv = 176 '\260',
                  flag = 244 '\364'}, {id = 32767, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 3418, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 62806, lv = 69 'E', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53344,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 53568,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 359, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 62806, lv = 69 'E', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 58176,
                  lv = 255 '\377', flag = 255 '\377'}, {id = 32767,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 34352, lv = 70 'F',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 359, lv = 0 '\000', flag = 0 '\000'}, {id = 0,
                  lv = 0 '\000', flag = 0 '\000'}, {id = 25848, lv = 0 '\000',
                  flag = 0 '\000'}, {id = 0, lv = 0 '\000', flag = 0 '\000'}, {
                  id = 58176, lv = 255 '\377', flag = 255 '\377'}...},
              friends = {{account_id = 0, char_id = 0,
                  name = "@:i\000\000\000\000\000\252\205\036\000\000\000\000\000\060\342\377\377\377\177\000"}, {account_id = 0, char_id = 0,
                  name = '\000' <repeats 23 times>}, {account_id = 0,
    ---Type <return> to continue, or q <return> to quit---
                  char_id = 0, name = '\000' <repeats 23 times>}, {
                  account_id = 0, char_id = 0,
                  name = '\000' <repeats 23 times>}, {account_id = 0,
                  char_id = 0, name = '\000' <repeats 23 times>}, {
                  account_id = 0, char_id = 0,
                  name = "\000\342\377\377\377\177\000\000\344\000C\000\000\000\000\000\277t\000\000\000\000\000"}, {account_id = 0, char_id = 0,
                  name = '\000' <repeats 23 times>} <repeats 29 times>, {
                  account_id = 0, char_id = 0,
                  name = '\000' <repeats 16 times>, "\260\341\377\377\377\177\000"}, {account_id = 4591181, char_id = 0,
                  name = "\260\341\377\377\377\177\000\000\210DF\000\000\000\000\000\016\000\000\000\000\000\000"}, {account_id = -189393252,
                  char_id = 32767,
                  name = "\000\342\377\377\377\177\000\000~FF", '\000' <repeats 12 times>}, {account_id = 0, char_id = 0,
                  name = '\000' <repeats 16 times>, "P\000\000\000\000\000\000"}, {account_id = 1, char_id = 0,
                  name = "P\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\220\343\377\377\377\177\000"}}, hotkeys = {{id = 4398573, lv = 0,
                  type = 0 '\000'}, {id = 0, lv = 0, type = 0 '\000'}, {id = 0,
                  lv = 0, type = 0 '\000'}, {id = 0, lv = 27, type = 0 '\000'},
                {id = 150218, lv = 34218, type = 30 '\036'}, {id = 1819232035,
                  lv = 20580, type = 111 'o'}, {id = 7566446, lv = 0,
                  type = 0 '\000'}, {id = 4294959728, lv = 32767,
                  type = 0 '\000'}, {id = 4591181, lv = 0, type = 0 '\000'}, {
                  id = 4294959728, lv = 32767, type = 0 '\000'}, {id = 4605064,
                  lv = 0, type = 0 '\000'}, {id = 19, lv = 0, type = 0 '\000'},
    ---Type <return> to continue, or q <return> to quit---
                {id = 4105575020, lv = 32767, type = 0 '\000'}, {
                  id = 4294959808, lv = 32767, type = 0 '\000'}, {id = 4605566,
                  lv = 0, type = 0 '\000'}, {id = 508, lv = 0,
                  type = 0 '\000'}, {id = 1, lv = 0, type = 0 '\000'}, {
                  id = 4294959808, lv = 32767, type = 0 '\000'}, {id = 4516910,
                  lv = 0, type = 0 '\000'}, {id = 0, lv = 0, type = 0 '\000'}, {
                  id = 10, lv = 0, type = 0 '\000'}, {id = 4294959872,
                  lv = 32767, type = 0 '\000'}, {id = 19, lv = 0,
                  type = 0 '\000'}, {id = 4294959856, lv = 32767,
                  type = 0 '\000'}, {id = 4369369, lv = 0, type = 0 '\000'}, {
                  id = 5, lv = 0, type = 0 '\000'}, {id = 5, lv = 0,
                  type = 0 '\000'}, {id = 4105169932, lv = 32767,
                  type = 0 '\000'}, {id = 508, lv = 0, type = 0 '\000'}, {
                  id = 4294959904, lv = 32767, type = 0 '\000'}, {id = 4467210,
                  lv = 0, type = 0 '\000'}, {id = 30160933, lv = 0,
                  type = 20 '\024'}, {id = 1611857950, lv = 2,
                  type = 252 '\374'}, {id = 65281, lv = 0, type = 0 '\000'}, {
                  id = 1, lv = 0, type = 0 '\000'}, {id = 4294959984,
                  lv = 32767, type = 0 '\000'}, {id = 4470040, lv = 0,
                  type = 0 '\000'}, {id = 4294960000, lv = 34068,
                  type = 30 '\036'}}, show_equip = 196, allow_party = 106,
              rename = 62610, slotchange = 24595,
              delete_date = 140737488348000, mod_exp = 1819, mod_drop = 70,
              mod_death = 0, font = 0 '\000', uniqueitem_counter = 37,
              attendance_timer = 140737347239181, attendance_count = -7280,
              hotkey_rowshift = 255 '\377'}
            cd = 0x24a82
            node = 0x7ffff6665f20 <_nl_C_LC_NUMERIC>
    ---Type <return> to continue, or q <return> to quit---
            data = 0x730230 "\237\002s"
            i = 2
            map_fd = 0
            subnet_map_ip = 4133904160
            slot = 2
            __func__ = "char_parse_char_select"
    #6  0x000000000042229a in char_parse_char (fd=11) at char.c:5398
            cmd = 102
            sd = 0x7ffff47b42cc
    #7  0x0000000000464b7e in do_sockets (next=88) at socket.c:1409
            rfd = {fds_bits = {2048, 0 <repeats 15 times>}}
            timeout = {tv_sec = 0, tv_usec = 376783}
            ret = 0
    #8  0x0000000000413c72 in main (argc=1, argv=0x7fffffffe5c8) at core.c:557
            next = -161063136
            retval = 4565536

     

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.