Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Linux Servers

Support::Linux Servers Support forum for Linux EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 09-14-2016, 08:26 PM
WIGGMPk
Fire Beetle
 
Join Date: Apr 2011
Posts: 8
Default Zone - Seg Fault

If anyone is will to take a look at this and lend their expertise it would be greatly appreciated.

Launching a specific zone....

Code:
sysadmin@luggs-emu:~/server$ ./zone felwithea peq
[Zone Server] Loading server configuration..
[Zone Server] Connecting to MySQL...
[Status] Starting File Log 'logs/zone_13826.log'
[Zone Server] CURRENT_VERSION: 1.1.3
[Zone Server] Mapping Incoming Opcodes
[Zone Server] Loading Variables
[Zone Server] Loading zone names
[Zone Server] Loading items
[Zone Server] Loading npc faction lists
[Zone Server] Loading loot tables
[Zone Server] Loading skill caps
[Zone Server] Loading spells
[Zone Server] Loading base data
[Zone Server] Loading guilds
[Zone Server] Loading factions
[Zone Server] Loading titles
[Zone Server] Loading tributes
[Zone Server] Loading corpse timers
[Zone Server] Loading commands
[Zone Server] 254 commands loaded
[Zone Server] Loaded default rule set 'default'
[Zone Server] Loading Perl Event Export Settings...
[Zone Server] Loading quests
[Quests] Tying perl output to eqemu logs
[Quests] Creating EQEmuIO=HASH(0x8efb38)
[Quests] Creating EQEmuIO=HASH(0x8fd7e8)
[Quests] Loading perlemb plugins.
[Quests] Unquoted string "false" may clash with future reserved word at plugins//Expeditions.pl line 375.
[Quests] "my" variable $Item1 masks earlier declaration in same scope at plugins//quest_handin.pl line 19.
[Quests] "my" variable $Item2 masks earlier declaration in same scope at plugins//quest_handin.pl line 21.
[Quests] "my" variable $Item3 masks earlier declaration in same scope at plugins//quest_handin.pl line 23.
[Quests] "my" variable $Item4 masks earlier declaration in same scope at plugins//quest_handin.pl line 25.
[Quests] Subroutine CalcDestFromHeading redefined at plugins//path_tools.pl line 221.
[Quests] Subroutine GetReverseHeading redefined at plugins//spawn_utils.pl line 456.
[Quests] Subroutine ConvertHeadingToDegrees redefined at plugins//spawn_utils.pl line 477.
[Quests] Subroutine MakeTempPet redefined at (eval 54) line 1.
[Quests] Subroutine MakeTempPet redefined at (eval 54) line 1.
[Quests] Subroutine GetSkill redefined at (eval 54) line 1.
[Quests] Subroutine SignalClient redefined at (eval 54) line 1.
[Quests] Subroutine MakeTempPet redefined at (eval 54) line 1.
[Quests] Subroutine MakeTempPet redefined at (eval 54) line 1.
Segmentation fault (core dumped)
And the dump file...

Code:
sysadmin@luggs-emu:~/server$ gdb zone ./core 
GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.04) 7.11.1
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-linux-gnueabihf".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from zone...done.
[New LWP 13826]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/arm-linux-gnueabihf/libthread_db.so.1".
Core was generated by `./zone felwithea peq'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x0034ca34 in Embperl::dosub (this=this@entry=0x83bd98, subname=0x68a360 "main::my_eval", args=args@entry=0xbee28e80, mode=mode@entry=42) at /home/sysadmin/server_source/Server/zone/embperl.cpp:292
292		if(SvTRUE(ERRSV))
Failing at ...

Code:
int Embperl::dosub(const char * subname, const std::vector<std::string> * args, int mode)
{
        dSP;
        int ret_value = 0;
        int count;
        std::string error;

        ENTER;
        SAVETMPS;
        PUSHMARK(SP);
        if(args && !args->empty())
        {
                for (auto i = args->begin(); i != args->end(); ++i) {
                        XPUSHs(sv_2mortal(newSVpv(i->c_str(), i->length())));
                }
        }
        PUTBACK;

        count = call_pv(subname, mode);
        SPAGAIN;

        if(SvTRUE(ERRSV))     <-----<-----<-----<-----<-----<-----<-----<-----< Fail!
        {
                error = SvPV_nolen(ERRSV);
                POPs;
        }
        else
        {
                if(count == 1) {
                        SV *ret = POPs;
                        if(SvTYPE(ret) == SVt_IV) {
                                IV v = SvIV(ret);
                                ret_value = v;
                        }
                        PUTBACK;
                }
        }

        FREETMPS;
        LEAVE;

        if(error.length() > 0)
        {
                std::string errmsg = "Perl runtime error: ";
                errmsg += SvPVX(ERRSV);
                throw errmsg.c_str();
        }

        return ret_value;
}

Thank you in advance


EDIT
Kernel: 4.6.3-sunxi
Distro: Ubuntu Xenial (headless)
Arch: Cortex-A7 ARM

Last edited by WIGGMPk; 09-14-2016 at 08:37 PM.. Reason: Additional Info
Reply With Quote
  #2  
Old 09-14-2016, 08:59 PM
DanCanDo's Avatar
DanCanDo
Discordant
 
Join Date: May 2016
Location: Above Hell
Posts: 400
Default

What Perl version are you using ?
__________________
Project Insect Completed
Reply With Quote
  #3  
Old 09-14-2016, 09:00 PM
WIGGMPk
Fire Beetle
 
Join Date: Apr 2011
Posts: 8
Default

Code:
sysadmin@luggs-emu:~/server$ perl --version

This is perl 5, version 22, subversion 1 (v5.22.1) built for arm-linux-gnueabihf-thread-multi-64int
(with 58 registered patches, see perl -V for more detail)
Reply With Quote
  #4  
Old 09-14-2016, 11:33 PM
demonstar55
Demi-God
 
Join Date: Apr 2008
Location: MA
Posts: 1,165
Default

backtrace?
Reply With Quote
  #5  
Old 09-15-2016, 12:27 PM
WIGGMPk
Fire Beetle
 
Join Date: Apr 2011
Posts: 8
Default

Code:
(gdb) bt
#0  0x0034ca34 in Embperl::dosub (this=this@entry=0x83bd98, subname=0x68a3e0 "main::my_eval", args=args@entry=0xbeb0ff80, mode=mode@entry=42) at /home/sysadmin/server_source/Server/zone/embperl.cpp:292
#1  0x0034db86 in Embperl::eval (this=0x83bd98, 
    code=0x686578 "{package quest;&boot_quest;package Mob;&boot_Mob;package Client;our @ISA = qw(Mob);&boot_Mob;&boot_Client;package NPC;our @ISA = qw(Mob);&boot_Mob;&boot_NPC;package Corpse;our @ISA = qw(Mob);&boot_Mob"...)
    at /home/sysadmin/server_source/Server/zone/embperl.cpp:327
#2  0x003320e6 in PerlembParser::MapFunctions (this=this@entry=0x7f9ef0) at /home/sysadmin/server_source/Server/zone/embparser.cpp:839
#3  0x00334fd4 in PerlembParser::ReloadQuests (this=0x7f9ef0) at /home/sysadmin/server_source/Server/zone/embparser.cpp:139
#4  0x00539e24 in QuestParserCollection::ReloadQuests (this=0x7f95d8, reset_timers=reset_timers@entry=true) at /home/sysadmin/server_source/Server/zone/quest_parser_collection.cpp:86
#5  0x0022e466 in main (argc=<optimized out>, argv=<optimized out>) at /home/sysadmin/server_source/Server/zone/net.cpp:397
(gdb)
Code:
(gdb) bt full
#0  0x0034ca34 in Embperl::dosub (this=this@entry=0x83bd98, subname=0x68a3e0 "main::my_eval", args=args@entry=0xbeb0ff80, mode=mode@entry=42) at /home/sysadmin/server_source/Server/zone/embperl.cpp:292
        sp = 0x905a7c
        ret_value = 0
        count = 1
        error = ""
#1  0x0034db86 in Embperl::eval (this=0x83bd98, 
    code=0x686578 "{package quest;&boot_quest;package Mob;&boot_Mob;package Client;our @ISA = qw(Mob);&boot_Mob;&boot_Client;package NPC;our @ISA = qw(Mob);&boot_Mob;&boot_NPC;package Corpse;our @ISA = qw(Mob);&boot_Mob"...)
    at /home/sysadmin/server_source/Server/zone/embperl.cpp:327
        arg = std::vector of length 1, capacity 1 = {
          "{package quest;&boot_quest;package Mob;&boot_Mob;package Client;our @ISA = qw(Mob);&boot_Mob;&boot_Client;package NPC;our @ISA = qw(Mob);&boot_Mob;&boot_NPC;package Corpse;our @ISA = qw(Mob);&boot_Mob"...}
#2  0x003320e6 in PerlembParser::MapFunctions (this=this@entry=0x7f9ef0) at /home/sysadmin/server_source/Server/zone/embparser.cpp:839
No locals.
#3  0x00334fd4 in PerlembParser::ReloadQuests (this=0x7f9ef0) at /home/sysadmin/server_source/Server/zone/embparser.cpp:139
No locals.
#4  0x00539e24 in QuestParserCollection::ReloadQuests (this=0x7f95d8, reset_timers=reset_timers@entry=true) at /home/sysadmin/server_source/Server/zone/quest_parser_collection.cpp:86
        iter = 
#5  0x0022e466 in main (argc=<optimized out>, argv=<optimized out>) at /home/sysadmin/server_source/Server/zone/net.cpp:397
        zone_name = 0xbeb10134 "felwithea"
        instance_id = 0
        z_name = "felwithea"
        hotfix_name = ""
        retval = <optimized out>
        lua_parser = 0x7f9828
        perl_parser = 0x7f9ef0
        InterserverTimer = {start_time = 3199271548, timer_time = 3199271552, enabled = 123, set_at_trigger = 3069523789, pUseAcurateTiming = 131}
        stream_identifier = {m_patches = std::vector of length 6, capacity 6 = {0x6c007269, 0x6500736f, 0x0, 0x31, 0x0, 0x7a9640}, m_streams = std::vector of length 4909219, capacity -109350502 = {{
              stream = <error reading variable: Cannot access memory at address 0x502c006c>, expire = {start_time = 2085373392, timer_time = 3531285060, enabled = 185, set_at_trigger = 3174501446, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0xcaf76d24>, expire = {start_time = 6299885, timer_time = 3234883624, enabled = 248, set_at_trigger = 1399333411, pUseAcurateTiming = 96}}, {
              stream = <error reading variable: Cannot access memory at address 0x872c0065>, expire = {start_time = 4293939153, timer_time = 1088915248, enabled = 70, set_at_trigger = 888895735, pUseAcurateTiming = 74}}, {
              stream = std::shared_ptr (expired, weak 12599076) 0x92447a46, expire = {start_time = 269357809, timer_time = 133181032, enabled = 2, set_at_trigger = 150015245, pUseAcurateTiming = 8}}, {
              stream = <error reading variable: Cannot access memory at address 0xadc00cfc>, expire = {start_time = 720956151, timer_time = 1097366346, enabled = 70, set_at_trigger = 2456293446, pUseAcurateTiming = 136}}, {
              stream = <error reading variable: Cannot access memory at address 0xe685824>, expire = {start_time = 50207472, timer_time = 598812742, enabled = 75, set_at_trigger = 1483217752, pUseAcurateTiming = 64}}, {
              stream = <error reading variable: Cannot access memory at address 0x1721026c>, expire = {start_time = 115903778, timer_time = 1214807552, enabled = 70, set_at_trigger = 2386852422, pUseAcurateTiming = 247}}, {
              stream = <error reading variable: Cannot access memory at address 0xe605c6d>, expire = {start_time = 4293939018, timer_time = 996170033, enabled = 104, set_at_trigger = 49826408, pUseAcurateTiming = 48}}, {
              stream = <error reading variable: Cannot access memory at address 0xc821014a>, expire = {start_time = 2885746930, timer_time = 3488616041, enabled = 253, set_at_trigger = 6838880, pUseAcurateTiming = 42}}, {
              stream = <error reading variable: Cannot access memory at address 0xc2bf00eb>, expire = {start_time = 2717910013, timer_time = 1845494780, enabled = 253, set_at_trigger = 3187672106, pUseAcurateTiming = 117}}, 
            {stream = <error reading variable: Cannot access memory at address 0x24000216>, expire = {start_time = 973079594, timer_time = 369099381, enabled = 117, set_at_trigger = 3187671040, pUseAcurateTiming = 116}}, {
              stream = <error reading variable: Cannot access memory at address 0xb8447e52>, expire = {start_time = 1818786993, timer_time = 191488945, enabled = 74, set_at_trigger = 3914903985, pUseAcurateTiming = 247}}, {
              stream = <error reading variable: Cannot access memory at address 0x2ced56fb>, expire = {start_time = 4046258246, timer_time = 946355409, enabled = 70, set_at_trigger = 665914605, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x5c0003ff>, expire = {start_time = 754974721, timer_time = 105902313, enabled = 70, set_at_trigger = 2286296496, pUseAcurateTiming = 70}}, {
              stream = std::shared_ptr (count 268499160, weak -172014049) 0x18f10423, expire = {start_time = 1351747874, timer_time = 3080424, enabled = 42, set_at_trigger = 3211496, pUseAcurateTiming = 41}}, {
              stream = <error reading variable: Cannot access memory at address 0xfb682bd5>, expire = {start_time = 4757681, timer_time = 1542700835, enabled = 143, set_at_trigger = 15224880, pUseAcurateTiming = 47}}, {
              stream = <error reading variable: Cannot access memory at address 0xd82a01d5>, expire = {start_time = 105257151, timer_time = 18973149, enabled = 34, set_at_trigger = 3958861324, pUseAcurateTiming = 250}}, {
              stream = <error reading variable: Cannot access memory at address 0xf3920993>, expire = {start_time = 737914615, timer_time = 3744137320, enabled = 209, set_at_trigger = 6855748, pUseAcurateTiming = 44}}, {
              stream = <error reading variable: Cannot access memory at address 0x300108f5>, expire = {start_time = 2784472134, timer_time = 2075724030, enabled = 104, set_at_trigger = 4096721000, pUseAcurateTiming = 209}}, 
            {stream = std::shared_ptr (count 16777472, weak 16777471) 0x18682b02, expire = {start_time = 12523563, timer_time = 615606818, enabled = 104, set_at_trigger = 1073809649, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x24602b6c>, expire = {start_time = 4096524392, timer_time = 3681037265, enabled = 177, set_at_trigger = 1542700835, pUseAcurateTiming = 143}}, 
            {stream = std::shared_ptr (expired, weak 0) 0xe85030, expire = {start_time = 4180213809, timer_time = 86639057, enabled = 221, set_at_trigger = 4042280738, pUseAcurateTiming = 12}}, {
              stream = <error reading variable: Cannot access memory at address 0x5bf383fe>, expire = {start_time = 188897289, timer_time = 4041784752, enabled = 143, set_at_trigger = 983281, pUseAcurateTiming = 240}}, {
              stream = std::shared_ptr (count 1943729415, weak 1968841216) 0x4fd08f7, expire = {start_time = 164681768, timer_time = 2465688864, enabled = 236, set_at_trigger = 4939984, pUseAcurateTiming = 34}}, {
              stream = <error reading variable: Cannot access memory at address 0x261586d>, expire = {start_time = 1558694496, timer_time = 2034785609, enabled = 68, set_at_trigger = 2197696247, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x4320086c>, expire = {start_time = 3393388788, timer_time = 1831862520, enabled = 247, set_at_trigger = 2015887504, pUseAcurateTiming = 208}}, 
            {stream = <error reading variable: Cannot access memory at address 0x19af0884>, expire = {start_time = 1894653254, timer_time = 194183743, enabled = 70, set_at_trigger = 122069837, pUseAcurateTiming = 149}}, {
              stream = <error reading variable: Cannot access memory at address 0x4940864>, expire = {start_time = 418958742, timer_time = 3672114064, enabled = 248, set_at_trigger = 1389651462, pUseAcurateTiming = 70}}, {
---Type <return> to continue, or q <return> to quit--- 
              stream = <error reading variable: Cannot access memory at address 0x5f1e0403>, expire = {start_time = 26740955, timer_time = 3256951611, enabled = 92, set_at_trigger = 66584767, pUseAcurateTiming = 176}}, {
              stream = <error reading variable: Cannot access memory at address 0xddb000fc>, expire = {start_time = 2576359672, timer_time = 3145976, enabled = 43, set_at_trigger = 2056847946, pUseAcurateTiming = 68}}, {
              stream = <error reading variable: Cannot access memory at address 0x7048004>, expire = {start_time = 33036757, timer_time = 335032895, enabled = 16, set_at_trigger = 3492479188, pUseAcurateTiming = 208}}, {
              stream = <error reading variable: Cannot access memory at address 0xb11f01fc>, expire = {start_time = 402668273, timer_time = 2097599, enabled = 41, set_at_trigger = 2200965624, pUseAcurateTiming = 244}}, {
              stream = <error reading variable: Cannot access memory at address 0x1c454ed5>, expire = {start_time = 886094662, timer_time = 2907064432, enabled = 247, set_at_trigger = 155583030, pUseAcurateTiming = 48}}, {
              stream = std::shared_ptr (count 1177086156, weak -313985592) 0xcf76d92, expire = {start_time = 30453032, timer_time = 138824090, enabled = 48, set_at_trigger = 820785399, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0xdd605864>, expire = {start_time = 492841905, timer_time = 1357356358, enabled = 70, set_at_trigger = 4855545, pUseAcurateTiming = 33}}, {
              stream = <error reading variable: Cannot access memory at address 0x8ae04eb>, expire = {start_time = 2527003544, timer_time = 117653736, enabled = 157, set_at_trigger = 1011241196, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0xfe609f48>, expire = {start_time = 496632806, timer_time = 2153780038, enabled = 231, set_at_trigger = 4108795204, pUseAcurateTiming = 249}}, {
              stream = <error reading variable: Cannot access memory at address 0x4000042c>, expire = {start_time = 3858760744, timer_time = 2415920167, enabled = 39, set_at_trigger = 167772687, pUseAcurateTiming = 115}}, {
              stream = <error reading variable: Cannot access memory at address 0x9c00042a>, expire = {start_time = 268436081, timer_time = 45122229, enabled = 171, set_at_trigger = 1128669510, pUseAcurateTiming = 248}}, {
              stream = <error reading variable: Cannot access memory at address 0x309801bd>, expire = {start_time = 2012741553, timer_time = 412811773, enabled = 104, set_at_trigger = 47314984, pUseAcurateTiming = 176}}, {
              stream = <error reading variable: Cannot access memory at address 0x834d314a>, expire = {start_time = 3304644528, timer_time = 2101774720, enabled = 68, set_at_trigger = 809904452, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x4d01022>, expire = {start_time = 17039857, timer_time = 4079750875, enabled = 209, set_at_trigger = 371159278, pUseAcurateTiming = 35}}, {
              stream = <error reading variable: Cannot access memory at address 0x3508b6c>, expire = {start_time = 4041784752, timer_time = 2068521859, enabled = 68, set_at_trigger = 3043548435, pUseAcurateTiming = 179}}, {
              stream = <error reading variable: Cannot access memory at address 0xe728004a>, expire = {start_time = 21503696, timer_time = 2023162147, enabled = 68, set_at_trigger = 3080424, pUseAcurateTiming = 42}}, {
              stream = <error reading variable: Cannot access memory at address 0xbfd1f72d>, expire = {start_time = 479157235, timer_time = 4790225, enabled = 35, set_at_trigger = 2019569186, pUseAcurateTiming = 68}}, {
              stream = <error reading variable: Cannot access memory at address 0x5bf3bf59>, expire = {start_time = 15224975, timer_time = 15220767, enabled = 52, set_at_trigger = 205689297, pUseAcurateTiming = 221}}, {
              stream = <error reading variable: Cannot access memory at address 0x18f950fb>, expire = {start_time = 3182428998, timer_time = 25424104, enabled = 146, set_at_trigger = 15195898, pUseAcurateTiming = 32}}, {
              stream = <error reading variable: Cannot access memory at address 0x7c0003fc>, expire = {start_time = 1207960566, timer_time = 1140851704, enabled = 246, set_at_trigger = 3355444261, 
                pUseAcurateTiming = false}}, {stream = <error reading variable: Cannot access memory at address 0x2d22004f>, expire = {start_time = 2236608745, timer_time = 4488112, enabled = 175, 
                set_at_trigger = 418448198, pUseAcurateTiming = false}}, {stream = std::shared_ptr (expired, weak 0) 0xfa607944, expire = {start_time = 86638639, timer_time = 15220945, enabled = 49, 
                set_at_trigger = 1542701009, pUseAcurateTiming = 143}}, {stream = <error reading variable: Cannot access memory at address 0x494a4221>, expire = {start_time = 2051418182, timer_time = 435677252, 
                enabled = 255, set_at_trigger = 2858943153, pUseAcurateTiming = 66}}, {stream = <error reading variable: Cannot access memory at address 0x54681c5c>, expire = {start_time = 4734016, timer_time = 1542700835, 
                enabled = 143, set_at_trigger = 15224880, pUseAcurateTiming = 47}}, {stream = <error reading variable: Cannot access memory at address 0x52a01d5>, expire = {start_time = 18973149, timer_time = 4042280738, 
                enabled = 12, set_at_trigger = 340140280, pUseAcurateTiming = 55}}, {stream = <error reading variable: Cannot access memory at address 0xb7f7f364>, expire = {start_time = 149409785, timer_time = 4009192736, 
                enabled = 234, set_at_trigger = 550519080, pUseAcurateTiming = 96}}, {stream = <error reading variable: Cannot access memory at address 0xa7f7ff34>, expire = {start_time = 942145788, timer_time = 418961617, 
                enabled = 80, set_at_trigger = 79628339, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0xad46404a>, expire = {start_time = 3623393527, timer_time = 78644472, 
                enabled = 70, set_at_trigger = 502829815, pUseAcurateTiming = 74}}, {stream = <error reading variable: Cannot access memory at address 0x101823e4>, expire = {start_time = 590548584, timer_time = 2902657008, 
                enabled = 235, set_at_trigger = 14681336, pUseAcurateTiming = 144}}, {stream = <error reading variable: Cannot access memory at address 0x59236002>, expire = {start_time = 33030214, timer_time = 167226427, 
                enabled = 254, set_at_trigger = 1005588072, pUseAcurateTiming = 251}}, {stream = <error reading variable: Cannot access memory at address 0x58681b5c>, expire = {start_time = 83413568, timer_time = 199727616, 
                enabled = 74, set_at_trigger = 2049179718, pUseAcurateTiming = 68}}, {stream = <error reading variable: Cannot access memory at address 0x8feac4fb>, expire = {start_time = 3804168423, 
                timer_time = 1610613796, enabled = 247, set_at_trigger = 3103784951, pUseAcurateTiming = false}}, {stream = <error reading variable: Cannot access memory at address 0x15000273>, expire = {
                start_time = 771751926, timer_time = 306311401, enabled = 241, set_at_trigger = 493355078, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0xff460f4a>, expire = {
                start_time = 16729847, timer_time = 12522536, enabled = 35, set_at_trigger = 593504259, pUseAcurateTiming = 177}}, {stream = <error reading variable: Cannot access memory at address 0x39602903>, expire = {
                start_time = 599375942, timer_time = 459840104, enabled = 104, set_at_trigger = 598860614, pUseAcurateTiming = 96}}, {
              stream = std::shared_ptr (count 12522568, weak 12503247) 0x4631ff <LuaParser::ReloadQuests()+1946>, expire = {start_time = 32507939, timer_time = 6301699, enabled = 43, set_at_trigger = 603455336, 
                pUseAcurateTiming = 255}}, {stream = <error reading variable: Cannot access memory at address 0xbd2000d4>, expire = {start_time = 8515816, timer_time = 1337922603, enabled = 240, set_at_trigger = 4041784608, 
                pUseAcurateTiming = 129}}, {stream = <error reading variable: Cannot access memory at address 0x441f0ed>, expire = {start_time = 245303110, timer_time = 491163718, enabled = 70, set_at_trigger = 23614312, 
                pUseAcurateTiming = 43}}, {stream = <error reading variable: Cannot access memory at address 0x180700f5>, expire = {start_time = 539427263, timer_time = 4282790240, enabled = 247, set_at_trigger = 12522536, 
                pUseAcurateTiming = 35}}, {stream = <error reading variable: Cannot access memory at address 0x204641b5>, expire = {start_time = 4059561832, timer_time = 2824874238, enabled = 185, 
                set_at_trigger = 414782056, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0xf0e8bd34>, expire = {start_time = 43714177, timer_time = 355140659, enabled = 216, 
                set_at_trigger = 1476625387, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0xbd200085>, expire = {start_time = 2474766568, timer_time = 3425370472, 
                enabled = 209, set_at_trigger = 282183979, pUseAcurateTiming = 105}}, {stream = <error reading variable: Cannot access memory at address 0x78480285>, expire = {start_time = 670540356, timer_time = 549388541, 
                enabled = 110, set_at_trigger = 2068454219, pUseAcurateTiming = 68}}, {stream = <error reading variable: Cannot access memory at address 0x1b4d1a50>, expire = {start_time = 2101640296, 
                timer_time = 406864708, enabled = 72, set_at_trigger = 776239201, pUseAcurateTiming = 115}}, {stream = <error reading variable: Cannot access memory at address 0x784d164a>, expire = {start_time = 4283176516, 
                timer_time = 368976631, enabled = 73, set_at_trigger = 2084862276, pUseAcurateTiming = 68}}, {stream = <error reading variable: Cannot access memory at address 0x7821004c>, expire = {start_time = 368574276, 
                timer_time = 306713342, enabled = 73, set_at_trigger = 2018120243, pUseAcurateTiming = 68}}, {stream = <error reading variable: Cannot access memory at address 0xb600364>, expire = {start_time = 1885344608, 
                timer_time = 4240375997, enabled = 244, set_at_trigger = 570425344, pUseAcurateTiming = 110}}, {stream = <error reading variable: Cannot access memory at address 0xb8000272>, expire = {
                start_time = 335544906, timer_time = 469763114, enabled = 42, set_at_trigger = 1979712083, pUseAcurateTiming = 83}}, {stream = <error reading variable: Cannot access memory at address 0x1a00042e>, expire = {
                start_time = 436208682, timer_time = 754975786, enabled = 233, set_at_trigger = 2271744070, pUseAcurateTiming = 176}}, {stream = <error reading variable: Cannot access memory at address 0x322800a1>, 
              expire = {start_time = 224928464, timer_time = 218698993, enabled = 224, set_at_trigger = 271778152, pUseAcurateTiming = 209}}, {stream = <error reading variable: Cannot access memory at address 0x8cf76d64>, 
              expire = {start_time = 1883636713, timer_time = 862462641, enabled = 96, set_at_trigger = 1078348693, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0x5b19b6c>, 
              expire = {start_time = 3182430104, timer_time = 260305128, enabled = 74, set_at_trigger = 2056454991, pUseAcurateTiming = 68}}, {stream = <error reading variable: Cannot access memory at address 0xbe99efb>, 
---Type <return> to continue, or q <return> to quit---
              expire = {start_time = 2056979274, timer_time = 2775061060, enabled = 80, set_at_trigger = 3182429984, pUseAcurateTiming = 232}}, {stream = <error reading variable: Cannot access memory at address 0x6af76d97>, 
              expire = {start_time = 6303977, timer_time = 64025384, enabled = 155, set_at_trigger = 3166634215, pUseAcurateTiming = 244}}, {stream = <error reading variable: Cannot access memory at address 0x1d41f0ed>, 
              expire = {start_time = 127796806, timer_time = 2489857179, enabled = 177, set_at_trigger = 749814736, pUseAcurateTiming = 96}}, {stream = <error reading variable: Cannot access memory at address 0xf0e8bd4a>, 
              expire = {start_time = 3187146561, timer_time = 6826942, enabled = 43, set_at_trigger = 3172991463, pUseAcurateTiming = 232}}, {stream = <error reading variable: Cannot access memory at address 0x2846014a>, 
              expire = {start_time = 1330100294, timer_time = 3407856, enabled = 185, set_at_trigger = 4041784672, pUseAcurateTiming = 129}}, {stream = <error reading variable: Cannot access memory at address 0xf4682b4>, 
              expire = {start_time = 345903430, timer_time = 3712391238, enabled = 248, set_at_trigger = 598824605, pUseAcurateTiming = 74}}, {stream = <error reading variable: Cannot access memory at address 0xb0681248>, 
              expire = {start_time = 3354918744, timer_time = 874267640, enabled = 208, set_at_trigger = 3441623307, pUseAcurateTiming = 248}}, {stream = <error reading variable: Cannot access memory at address 0x5046234a>, 
              expire = {start_time = 3052928838, timer_time = 2159741183, enabled = 70, set_at_trigger = 66642160, pUseAcurateTiming = 155}}, {stream = <error reading variable: Cannot access memory at address 0x4f8cd94>, 
              expire = {start_time = 1361182848, timer_time = 4282785862, enabled = 247, set_at_trigger = 599721026, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0xf8d96c>, 
              expire = {start_time = 9962336, timer_time = 248636717, enabled = 240, set_at_trigger = 2554734747, pUseAcurateTiming = 71}}, {stream = <error reading variable: Cannot access memory at address 0xbdb00564>, 
              expire = {start_time = 76542184, timer_time = 457472843, enabled = 104, set_at_trigger = 4041784752, pUseAcurateTiming = 143}}, {stream = <error reading variable: Cannot access memory at address 0x2d0003f7>, 
              expire = {start_time = 2236608745, timer_time = 239502000, enabled = 70, set_at_trigger = 3712360262, pUseAcurateTiming = 248}}, {stream = std::shared_ptr (count -198031848, weak 1761340561) 0x1d4a1db1, 
              expire = {start_time = 306477601, timer_time = 4284000360, enabled = 247, set_at_trigger = 231745564, pUseAcurateTiming = 241}}, {stream = <error reading variable: Cannot access memory at address 0x1465a4a>, 
              expire = {start_time = 1346773909, timer_time = 1610088262, enabled = 255, set_at_trigger = 71698246, pUseAcurateTiming = 224}}, {stream = <error reading variable: Cannot access memory at address 0x3b96902>, 
              expire = {start_time = 2213547672, timer_time = 2560295928, enabled = 71, set_at_trigger = 1531969784, pUseAcurateTiming = 70}}, {stream = std::shared_ptr (count 655360, weak 983039) 0x2042ae46, expire = {
                start_time = 3378520867, timer_time = 87032056, enabled = 176, set_at_trigger = 2068513935, pUseAcurateTiming = 68}}, {stream = <error reading variable: Cannot access memory at address 0x2e8ff0ec>, expire = {
                start_time = 4026532852, timer_time = 754975730, enabled = 233, set_at_trigger = 373719472, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0x1d4b57b5>, expire = {
                start_time = 86995182, timer_time = 2065760402, enabled = 68, set_at_trigger = 670564184, pUseAcurateTiming = 248}}, {stream = <error reading variable: Cannot access memory at address 0x18f10d9f>, expire = {
                start_time = 824442890, timer_time = 21385798, enabled = 148, set_at_trigger = 4282788678, pUseAcurateTiming = 247}}, {stream = <error reading variable: Cannot access memory at address 0x7468084>, expire = {
                start_time = 496174251, timer_time = 88043758, enabled = 147, set_at_trigger = 526921368, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0x7a98054f>, expire = {
                start_time = 2070417988, timer_time = 107486020, enabled = 156, set_at_trigger = 395444292, pUseAcurateTiming = 153}}, {stream = <error reading variable: Cannot access memory at address 0x830f02f5>, 
              expire = {start_time = 869285702, timer_time = 2605080134, enabled = 70, set_at_trigger = 83414306, pUseAcurateTiming = 128}}, {stream = <error reading variable: Cannot access memory at address 0xbbfdf8fb>, 
              expire = {start_time = 733938757, timer_time = 77206376, enabled = 70, set_at_trigger = 28397664, pUseAcurateTiming = 46}}, {stream = <error reading variable: Cannot access memory at address 0x16461a24>, 
              expire = {start_time = 157291419, timer_time = 4041784752, enabled = 143, set_at_trigger = 681116571, pUseAcurateTiming = 70}}, {stream = std::shared_ptr (count -1756755968, weak -1756762113) 0x14b968fd, 
              expire = {start_time = 231747883, timer_time = 352319216, enabled = 154, set_at_trigger = 105355368, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0x1b9a194a>, 
              expire = {start_time = 1326383857, timer_time = 318963952, enabled = 96, set_at_trigger = 3182430496, pUseAcurateTiming = 232}}, {stream = <error reading variable: Cannot access memory at address 0xba33016c>, 
              expire = {start_time = 88808145, timer_time = 457472922, enabled = 104, set_at_trigger = 433173291, pUseAcurateTiming = 154}}, {stream = <error reading variable: Cannot access memory at address 0x1681bb5>, 
              expire = {start_time = 197072947, timer_time = 315745824, enabled = 75, set_at_trigger = 3496483652, pUseAcurateTiming = 88}}, {stream = <error reading variable: Cannot access memory at address 0x9898149f>, 
              expire = {start_time = 3443918407, timer_time = 10033895, enabled = 34, set_at_trigger = 177805664, pUseAcurateTiming = 96}}, {stream = <error reading variable: Cannot access memory at address 0xbdb0095c>, 
              expire = {start_time = 428863720, timer_time = 471859867, enabled = 96, set_at_trigger = 1946158067, pUseAcurateTiming = 242}}, {stream = <error reading variable: Cannot access memory at address 0xb00003f5>, 
              expire = {start_time = 2382365681, timer_time = 754975729, enabled = 233, set_at_trigger = 2925490414, pUseAcurateTiming = 78}}, {stream = std::shared_ptr (count 46, weak 2020894066) 0x7e468846, expire = {
                start_time = 2454069025, timer_time = 324642886, enabled = 158, set_at_trigger = 1852415, pUseAcurateTiming = 240}}, {stream = <error reading variable: Cannot access memory at address 0x102b0907>, expire = {
                start_time = 2068555225, timer_time = 3949468484, enabled = 88, set_at_trigger = 15975216, pUseAcurateTiming = 51}}, {stream = std::shared_ptr (count 33554432, weak -1) 0x1f043bf, expire = {
                start_time = 3182429984, timer_time = 42987752, enabled = 46, set_at_trigger = 319358192, pUseAcurateTiming = 208}}, {stream = <error reading variable: Cannot access memory at address 0x98d00e0d>, expire = {
                start_time = 457472843, timer_time = 2606295912, enabled = 104, set_at_trigger = 187367507, pUseAcurateTiming = 191}}, {stream = <error reading variable: Cannot access memory at address 0xa26020d>, expire = {
                start_time = 2890276902, timer_time = 16600823, enabled = 241, set_at_trigger = 3404726319, pUseAcurateTiming = 128}}, {stream = <error reading variable: Cannot access memory at address 0xf8da84>, expire = {
                start_time = 4610560, timer_time = 3908545825, enabled = 238, set_at_trigger = 2728395000, pUseAcurateTiming = 241}}, {stream = <error reading variable: Cannot access memory at address 0x1cf10a07>, expire = {
                start_time = 177405963, timer_time = 16980209, enabled = 147, set_at_trigger = 163131974, pUseAcurateTiming = 224}}, {stream = <error reading variable: Cannot access memory at address 0x222909c3>, expire = {
                start_time = 33034456, timer_time = 4113236031, enabled = 209, set_at_trigger = 438906396, pUseAcurateTiming = 208}}, {stream = <error reading variable: Cannot access memory at address 0x48f04032>, expire = {
                start_time = 558256769, timer_time = 4249235526, enabled = 247, set_at_trigger = 3186819112, pUseAcurateTiming = 128}}, {stream = <error reading variable: Cannot access memory at address 0xb2f00033>, 
              expire = {start_time = 10097024, timer_time = 320864547, enabled = 96, set_at_trigger = 1804595432, pUseAcurateTiming = 73}}, {stream = <error reading variable: Cannot access memory at address 0x12f83994>, 
              expire = {start_time = 2163478800, timer_time = 986736467, enabled = 33, set_at_trigger = 2895250067, pUseAcurateTiming = 247}}, {stream = <error reading variable: Cannot access memory at address 0x2d05d2c>, 
              expire = {start_time = 181460014, timer_time = 1624245806, enabled = 73, set_at_trigger = 2304272744, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0x3a810ff4>, 
              expire = {start_time = 784275498, timer_time = 29299754, enabled = 34, set_at_trigger = 12522539, pUseAcurateTiming = 34}}, {stream = <error reading variable: Cannot access memory at address 0x20af66f8>, 
              expire = {start_time = 970984774, timer_time = 975180792, enabled = 43, set_at_trigger = 2163507755, pUseAcurateTiming = 82}}, {stream = <error reading variable: Cannot access memory at address 0x7f3312ee>, 
              expire = {start_time = 279926516, timer_time = 4129272, enabled = 43, set_at_trigger = 774636024, pUseAcurateTiming = 42}}, {stream = <error reading variable: Cannot access memory at address 0xfd200a4a>, 
              expire = {start_time = 16479479, timer_time = 568173096, enabled = 70, set_at_trigger = 33177847, pUseAcurateTiming = 155}}, {stream = <error reading variable: Cannot access memory at address 0xca0000fc>, 
              expire = {start_time = 3357546744, timer_time = 3147000, enabled = 155, set_at_trigger = 284740128, pUseAcurateTiming = 160}}, {stream = <error reading variable: Cannot access memory at address 0xc84008fc>, 
              expire = {start_time = 437259512, timer_time = 1613693024, enabled = 208, set_at_trigger = 16302880, pUseAcurateTiming = 128}}, {stream = <error reading variable: Cannot access memory at address 0x3f2e02b3>, 
              expire = {start_time = 179272692, timer_time = 2630919982, enabled = 231, set_at_trigger = 929044657, pUseAcurateTiming = 179}}, {stream = <error reading variable: Cannot access memory at address 0xf0e8bdb4>, 
              expire = {start_time = 1536888975, timer_time = 922009413, enabled = 175, set_at_trigger = 318964208, pUseAcurateTiming = 96}}, {stream = <error reading variable: Cannot access memory at address 0x1333fff4>, 
              expire = {start_time = 575349856, timer_time = 2065695010, enabled = 68, set_at_trigger = 3353803856, pUseAcurateTiming = 248}}, {stream = <error reading variable: Cannot access memory at address 0x98f76c04>, 
              expire = {start_time = 1932001518, timer_time = 16304848, enabled = false, set_at_trigger = 32534426, pUseAcurateTiming = 3}}, {stream = <error reading variable: Cannot access memory at address 0x13200127>, 
              expire = {start_time = 568780384, timer_time = 2890291270, enabled = 247, set_at_trigger = 3357671579, pUseAcurateTiming = 248}}, {stream = std::shared_ptr (count -1873571756, weak -1873702831) 0xc82018f8, 
---Type <return> to continue, or q <return> to quit---
              expire = {start_time = 351849115, timer_time = 284740128, enabled = 160, set_at_trigger = 150521904, pUseAcurateTiming = 96}}, {stream = std::shared_ptr (expired, weak 16777216) 0x139b1490, expire = {
                start_time = 6296355, timer_time = 315727407, enabled = 155, set_at_trigger = 551994464, pUseAcurateTiming = 242}}, {stream = <error reading variable: Cannot access memory at address 0xfe0003f5>, expire = {
                start_time = 3724542959, timer_time = 335545328, enabled = 239, set_at_trigger = 4249231430, pUseAcurateTiming = 247}}, {stream = <error reading variable: Cannot access memory at address 0x584621b3>, 
              expire = {start_time = 2885135430, timer_time = 10158585, enabled = 33, set_at_trigger = 3388997880, pUseAcurateTiming = 248}}, {stream = <error reading variable: Cannot access memory at address 0x14f8ca9f>, 
              expire = {start_time = 284740112, timer_time = 284739744, enabled = 48, set_at_trigger = 2455284328, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0xaf8544a>, 
              expire = {start_time = 42992907, timer_time = 2484797944, enabled = 66, set_at_trigger = 170065816, pUseAcurateTiming = 33}}, {stream = <error reading variable: Cannot access memory at address 0xca221024>, 
              expire = {start_time = 3355446520, timer_time = 3356494072, enabled = 248, set_at_trigger = 4854759, pUseAcurateTiming = 144}}, {stream = <error reading variable: Cannot access memory at address 0x6c58ac04>, 
              expire = {start_time = 15615735, timer_time = 3393851291, enabled = 248, set_at_trigger = 306477664, pUseAcurateTiming = 104}}, {stream = <error reading variable: Cannot access memory at address 0x14aecdf8>, 
              expire = {start_time = 4293939098, timer_time = 3344962355, enabled = 230, set_at_trigger = 2538276839, pUseAcurateTiming = 34}}, {stream = <error reading variable: Cannot access memory at address 0x76447848>, 
              expire = {start_time = 519805687, timer_time = 234882031, enabled = 238, set_at_trigger = 2650801133, pUseAcurateTiming = 102}}, {stream = <error reading variable: Cannot access memory at address 0x4000026a>, 
              expire = {start_time = 139003313, timer_time = 2890168757, enabled = 247, set_at_trigger = 1089503482, pUseAcurateTiming = 9}}, {stream = <error reading variable: Cannot access memory at address 0x90000239>, 
              expire = {start_time = 78985393, timer_time = 1617428550, enabled = 177, set_at_trigger = 1423966788, pUseAcurateTiming = 248}}, {stream = <error reading variable: Cannot access memory at address 0xfd42fb>, 
              expire = {start_time = 13694760, timer_time = 29177888, enabled = 32, set_at_trigger = 1883729952, pUseAcurateTiming = 102}}, {stream = <error reading variable: Cannot access memory at address 0xf0e92db7>, 
              expire = {start_time = 273026625, timer_time = 2101772365, enabled = 68, set_at_trigger = 83700983, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0x304607fe>, 
              expire = {start_time = 2763083872, timer_time = 536873195, enabled = 38, set_at_trigger = 33030214, pUseAcurateTiming = 107}}, {stream = <error reading variable: Cannot access memory at address 0xbd4638d5>, 
              expire = {start_time = 3179409640, timer_time = 42070248, enabled = 72, set_at_trigger = 213844039, pUseAcurateTiming = 53}}, {stream = <error reading variable: Cannot access memory at address 0x1741f0ed>, 
              expire = {start_time = 72159046, timer_time = 2554728006, enabled = 70, set_at_trigger = 582042216, pUseAcurateTiming = 96}}, {stream = <error reading variable: Cannot access memory at address 0xf0e8bd4a>, 
              expire = {start_time = 100138817, timer_time = 726141115, enabled = 70, set_at_trigger = 1844969284, pUseAcurateTiming = 248}}, {stream = <error reading variable: Cannot access memory at address 0xfff04feb>, 
              expire = {start_time = 4041784624, timer_time = 2864644225, enabled = 32, set_at_trigger = 754975333, pUseAcurateTiming = 233}}, {stream = <error reading variable: Cannot access memory at address 0x98460e4a>, 
              expire = {start_time = 709131590, timer_time = 582042216, enabled = 96, set_at_trigger = 541471046, pUseAcurateTiming = 70}}, {stream = <error reading variable: Cannot access memory at address 0x2b4808be>, 
              expire = {start_time = 2017857862, timer_time = 1207435076, enabled = 248, set_at_trigger = 3966249691, pUseAcurateTiming = 231}}, {
              stream = <error reading variable: Cannot access memory at address 0x62bf0085>, expire = {start_time = 872416288, timer_time = 754975333, enabled = 233, set_at_trigger = 72159046, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x21b1416c>, expire = {start_time = 977683296, timer_time = 541471046, enabled = 70, set_at_trigger = 3120037697, pUseAcurateTiming = 186}}, {
              stream = <error reading variable: Cannot access memory at address 0xff447848>, expire = {start_time = 16261367, timer_time = 702218536, enabled = 104, set_at_trigger = 3174105072, pUseAcurateTiming = 232}}, {
              stream = <error reading variable: Cannot access memory at address 0x3e00024e>, expire = {start_time = 754975306, timer_time = 239202537, enabled = 70, set_at_trigger = 2554730310, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x3a464364>, expire = {start_time = 541471046, timer_time = 4041784646, enabled = 65, set_at_trigger = 726272186, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0xfff8fb>, expire = {start_time = 702218536, timer_time = 1340599144, enabled = 240, set_at_trigger = 3464622312, pUseAcurateTiming = 31}}, {
              stream = <error reading variable: Cannot access memory at address 0x2d000268>, expire = {start_time = 239202537, timer_time = 72159046, enabled = 70, set_at_trigger = 692354374, pUseAcurateTiming = 104}}, {
              stream = <error reading variable: Cannot access memory at address 0x2046314a>, expire = {start_time = 4041784646, timer_time = 1777860417, enabled = 186, set_at_trigger = 2051541062, pUseAcurateTiming = 68}}, {
              stream = <error reading variable: Cannot access memory at address 0x29db012c>, expire = {start_time = 1340599144, timer_time = 3174105072, enabled = 232, set_at_trigger = 536871967, pUseAcurateTiming = 100}}, {
              stream = <error reading variable: Cannot access memory at address 0xe41f0ed>, expire = {start_time = 72159046, timer_time = 2554730310, enabled = 70, set_at_trigger = 565264744, pUseAcurateTiming = 96}}, {
              stream = <error reading variable: Cannot access memory at address 0xf0e8bd4a>, expire = {start_time = 1106771777, timer_time = 726272186, enabled = 70, set_at_trigger = 4265900100, pUseAcurateTiming = 247}}, {
              stream = <error reading variable: Cannot access memory at address 0x4fe7eb6c>, expire = {start_time = 3174105072, timer_time = 914485480, enabled = 31, set_at_trigger = 3992978019, pUseAcurateTiming = 99}}, {
              stream = <error reading variable: Cannot access memory at address 0x44d0f4a>, expire = {start_time = 2554728006, timer_time = 709131590, enabled = 104, set_at_trigger = 977683296, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x19f7ff45>, expire = {start_time = 726141114, timer_time = 2017857862, enabled = 68, set_at_trigger = 19398911, pUseAcurateTiming = 219}}, {
              stream = <error reading variable: Cannot access memory at address 0xf0e8bd34>, expire = {start_time = 3938386049, timer_time = 201327646, enabled = 100, set_at_trigger = 2554458345, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x2b447d4a>, expire = {start_time = 598819688, timer_time = 1128675936, enabled = 70, set_at_trigger = 4041784646, pUseAcurateTiming = 65}}, {
              stream = <error reading variable: Cannot access memory at address 0x949094a>, expire = {start_time = 2034530888, timer_time = 4265900100, enabled = 247, set_at_trigger = 735772968, pUseAcurateTiming = 104}}, {
              stream = <error reading variable: Cannot access memory at address 0xa281f0ec>, expire = {start_time = 838861854, timer_time = 1342177891, enabled = 99, set_at_trigger = 754975331, pUseAcurateTiming = 233}}, {
              stream = <error reading variable: Cannot access memory at address 0x98460e4a>, expire = {start_time = 709131590, timer_time = 582042216, enabled = 96, set_at_trigger = 541471046, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x2b4808bd>, expire = {start_time = 2017857862, timer_time = 804781636, enabled = 255, set_at_trigger = 3966249691, pUseAcurateTiming = 231}}, {
              stream = <error reading variable: Cannot access memory at address 0x4ebf0085>, expire = {start_time = 2013266974, timer_time = 754975331, enabled = 233, set_at_trigger = 72159046, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x22b1426c>, expire = {start_time = 977683296, timer_time = 541471046, enabled = 70, set_at_trigger = 2717384513, pUseAcurateTiming = 185}}, {
              stream = <error reading variable: Cannot access memory at address 0x9f7fe48>, expire = {start_time = 19398911, timer_time = 3966249691, enabled = 231, set_at_trigger = 4041784624, pUseAcurateTiming = 129}}, {
              stream = <error reading variable: Cannot access memory at address 0x2d000267>, expire = {start_time = 2554458345, timer_time = 72159302, enabled = 70, set_at_trigger = 725908806, pUseAcurateTiming = 104}}, {
              stream = <error reading variable: Cannot access memory at address 0x2046314a>, expire = {start_time = 4041784646, timer_time = 2079850305, enabled = 185, set_at_trigger = 155781446, pUseAcurateTiming = 72}}, {
              stream = <error reading variable: Cannot access memory at address 0xfee0fb>, expire = {start_time = 735772968, timer_time = 1340598632, enabled = 240, set_at_trigger = 3196186856, pUseAcurateTiming = 29}}, {
              stream = <error reading variable: Cannot access memory at address 0xf6000242>, expire = {start_time = 754975330, timer_time = 239202537, enabled = 70, set_at_trigger = 2554730310, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x3a464364>, expire = {start_time = 541471046, timer_time = 4041784646, enabled = 65, set_at_trigger = 726272185, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0xfeb6fb>, expire = {start_time = 702218536, timer_time = 1340599144, enabled = 240, set_at_trigger = 1786900712, pUseAcurateTiming = 29}}, {
              stream = <error reading variable: Cannot access memory at address 0x2d000266>, expire = {start_time = 390197481, timer_time = 72159046, enabled = 70, set_at_trigger = 709131590, pUseAcurateTiming = 104}}, {
              stream = <error reading variable: Cannot access memory at address 0x2046314a>, expire = {start_time = 4041784646, timer_time = 670564161, enabled = 185, set_at_trigger = 2017857862, pUseAcurateTiming = 68}}, {
              stream = <error reading variable: Cannot access memory at address 0xec682adf>, expire = {start_time = 4293939175, timer_time = 4041784624, enabled = 129, set_at_trigger = 1946158109, pUseAcurateTiming = 98}}, {
              stream = <error reading variable: Cannot access memory at address 0x8684c4a>, expire = {start_time = 57399878, timer_time = 3808504049, enabled = 104, set_at_trigger = 1883707467, pUseAcurateTiming = 71}}, {
---Type <return> to continue, or q <return> to quit---
              stream = <error reading variable: Cannot access memory at address 0x70477024>, expire = {start_time = 364838983, timer_time = 4028825674, enabled = 181, set_at_trigger = 129009484, pUseAcurateTiming = 202}}, {
              stream = <error reading variable: Cannot access memory at address 0x27447f53>, expire = {start_time = 132679010, timer_time = 132678656, enabled = false, set_at_trigger = 1744906481, pUseAcurateTiming = 70}}, {
              stream = <error reading variable: Cannot access memory at address 0x89f0014a>, expire = {start_time = 1749428729, timer_time = 2247098694, enabled = 249, set_at_trigger = 2557025094, pUseAcurateTiming = 71}}, {
              stream = <error reading variable: Cannot access memory at address 0x984668b5>, expire = {start_time = 4038068039, timer_time = 113180861, enabled = 22, set_at_trigger = 3523216405, pUseAcurateTiming = 220}}, {
              stream = <error reading variable: Cannot access memory at address 0x7b4a124f>, expire = {start_time = 457472580, timer_time = 1807028328, enabled = 185, set_at_trigger = 325854020, pUseAcurateTiming = 177}}, {
              stream = <error reading variable: Cannot access memory at address 0x23ffbcfb>, expire = {start_time = 49300332, timer_time = 4116980483, enabled = 231, set_at_trigger = 1414007883, pUseAcurateTiming = 88}}, {
              stream = <error reading variable: Cannot access memory at address 0x40209cfc>, expire = {start_time = 2036867888, timer_time = 2554352452, enabled = 71, set_at_trigger = 2986345499, pUseAcurateTiming = 231}}, {
              stream = <error reading variable: Cannot access memory at address 0xb8000419>, expire = {start_time = 2986344448, timer_time = 301990938, enabled = 21, set_at_trigger = 822083583, pUseAcurateTiming = 181}}, {
              stream = <error reading variable: Cannot access memory at address 0x10f8d2f4>, expire = {start_time = 52428985, timer_time = 4290588848, enabled = 34, set_at_trigger = 2247100486, pUseAcurateTiming = 250}}, {
              stream = <error reading variable: Cannot access memory at address 0x8462805>, expire = {start_time = 16310512, timer_time = 80801320, enabled = 241, set_at_trigger = 3656386630, pUseAcurateTiming = 248}}, {
              stream = std::shared_ptr (count 146669635, weak 143130690) 0x44908d0, expire = {start_time = 675576210, timer_time = 3801153862, enabled = 24, set_at_trigger = 3220178689, pUseAcurateTiming = 255}}, {
              stream = <error reading variable: Cannot access memory at address 0xa3bf00eb>, expire = {start_time = 3305111681, timer_time = 4041813323, enabled = 79, set_at_trigger = 474353328, 
                pUseAcurateTiming = 104}}...}, m_identified = std::queue wrapping: std::deque with -128 elements}
        quest_timers = {start_time = 3069523789, timer_time = 3199271548, enabled = 128, set_at_trigger = 3199271547, pUseAcurateTiming = 196}
        worldwasconnected = <optimized out>
        eqss = std::shared_ptr (count 93979801, weak 77070943) 0xbeb10518
        eqsi = <optimized out>
        IDLEZONEUPDATE = <optimized out>
        ZONEUPDATE = <optimized out>
        zoneupdate_timer = {start_time = 4273466052, timer_time = 4143181191, enabled = 200, set_at_trigger = 3199271704, pUseAcurateTiming = true}
Reply With Quote
  #6  
Old 09-21-2016, 06:24 PM
WIGGMPk
Fire Beetle
 
Join Date: Apr 2011
Posts: 8
Default

Any takers?

I know there is a guru out there, gimme some love
Reply With Quote
  #7  
Old 04-01-2018, 02:06 AM
iceflame
Fire Beetle
 
Join Date: Mar 2018
Location: Taiwan
Posts: 4
Default

Modify the code:
if(SvTRUE(ERRSV))
to:
if((count == 0) && (SvTRUE(ERRSV)))
Reply With Quote
  #8  
Old 04-04-2018, 03:20 PM
Shin Noir's Avatar
Shin Noir
Legendary Member
 
Join Date: Apr 2002
Location: Seattle, WA
Posts: 502
Default

Knee jerk reaction: Check if you have a maps/ dir filled with maps. Seg faults happen on zone bootup if you don't have any mapfiles for zones like gfaydark.

I normally use akka's: https://github.com/Akkadius/EQEmuMaps

But this is an old post ice flame, like 2 years ago. Lol
__________________

~Shin Noir
DungeonEQ.com
Reply With Quote
  #9  
Old 04-05-2018, 11:50 AM
iceflame
Fire Beetle
 
Join Date: Mar 2018
Location: Taiwan
Posts: 4
Default

I got the same error message by gdb.
I think the problem was happened in ARM environment or some versions of Perl.
The solution is from here:
https://stackoverflow.com/questions/...erl-in-c-win32
It worked after I modified the code.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 02:43 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3