Quote:
Originally Posted by joligario
First, you should use EVENT_DEATH_COMPLETE. After that sub runs, the system destroys the NPC, so the timer won't run anyways. Looking at what you have, maybe you want a controller NPC to use the timer or set the respawn timer instead.
|
Thanks for the tip. So I tried doing it this way and I've got some weird stuff going on. Here's my two .pl files:
a_ghoul_executioner.pl
Code:
sub EVENT_DEATH_COMPLETE {
quest::enable_spawn2(9968);
quest::signalwith(66179,1);
}
controller.pl
Code:
sub EVENT_SIGNAL {
if($signal==1) {
quest::settimer("exec",60);
}
}
sub EVENT_TIMER {
if($timer eq "exec") {
quest::disable_spawn2(9968);
quest::spawn2(66092,0,0,-890,622,-203,53.5);
}
}
What happens is this:
-kill ghoul_executioner when it spawns naturally (timer starts)
-spawncycle continues normally
-once timer finishes, whatever was spawned depops and replaced by a ghoul_executioner
-kill executioner (timer started)
-spawncycle doesn't continue as normal, enable_spawn doesn't seem to have worked
-timer finishes, executioner spawns, zone crashes
So the zone crashes for some crazy reason, with the logs showing this:
Code:
---------------------------------------------
[09.11. - 15:21:58] Starting Log: logs/crash_zone_6556.log
[09.11. - 15:21:58] EXCEPTION_ACCESS_VIOLATION
[09.11. - 15:21:58] SymInit: Symbol-SearchPath: '.;C:\EQ\EQEmuServer;C:\EQ\EQEmuServer;C:\WINDOWS;C:\WINDOWS\system32;SRV*C:\websymbols*http://msdl.microsoft.com/download/symbols;', symOptions: 530, UserName: '----'
[09.11. - 15:21:58] OS-Version: 6.2.9200 () 0x100-0x1
[09.11. - 15:21:58] C:\EQ\EQEmuServer\zone.exe:zone.exe (00E50000), size: 28884992 (result: 0), SymType: 'PDB', PDB: 'C:\EQ\EQEmuServer\zone.exe'
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (77380000), size: 1404928 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ntdll.dll', fileVersion: 6.2.9200.16912
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\KERNEL32.DLL:KERNEL32.DLL (74BC0000), size: 1245184 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\KERNEL32.DLL', fileVersion: 6.2.9200.16859
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\KERNELBASE.dll:KERNELBASE.dll (76930000), size: 684032 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\KERNELBASE.dll', fileVersion: 6.2.9200.16864
[09.11. - 15:21:58] C:\WINDOWS\system32\apphelp.dll:apphelp.dll (66990000), size: 684032 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\apphelp.dll', fileVersion: 6.2.9200.16420
[09.11. - 15:21:58] C:\WINDOWS\AppPatch\AcLayers.DLL:AcLayers.DLL (726B0000), size: 2555904 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\AppPatch\AcLayers.DLL', fileVersion: 6.2.9200.16420
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\msvcrt.dll:msvcrt.dll (76850000), size: 724992 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\msvcrt.dll', fileVersion: 7.0.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\USER32.dll:USER32.dll (74AA0000), size: 1138688 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\USER32.dll', fileVersion: 6.2.9200.16420
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\GDI32.dll:GDI32.dll (76DD0000), size: 1036288 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\GDI32.dll', fileVersion: 6.2.9200.17053
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\SHELL32.dll:SHELL32.dll (75780000), size: 17588224 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SHELL32.dll', fileVersion: 6.2.9200.16882
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\SHLWAPI.dll:SHLWAPI.dll (770F0000), size: 262144 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SHLWAPI.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\OLEAUT32.dll:OLEAUT32.dll (77130000), size: 569344 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\OLEAUT32.dll', fileVersion: 6.2.9200.16726
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\MPR.dll:MPR.dll (72940000), size: 77824 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MPR.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\SETUPAPI.dll:SETUPAPI.dll (75440000), size: 1765376 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SETUPAPI.dll', fileVersion: 6.2.9200.16496
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\sfc.dll:sfc.dll (72690000), size: 12288 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\sfc.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\WINSPOOL.DRV:WINSPOOL.DRV (74890000), size: 393216 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINSPOOL.DRV', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\RPCRT4.dll:RPCRT4.dll (77210000), size: 704512 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\RPCRT4.dll', fileVersion: 6.2.9200.17037
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\combase.dll:combase.dll (76C70000), size: 1269760 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\combase.dll', fileVersion: 6.2.9200.16420
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\CFGMGR32.dll:CFGMGR32.dll (74A30000), size: 286720 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\CFGMGR32.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\DEVOBJ.dll:DEVOBJ.dll (74FA0000), size: 122880 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DEVOBJ.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\SspiCli.dll:SspiCli.dll (74970000), size: 118784 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SspiCli.dll', fileVersion: 6.2.9200.16864
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\sfc_os.DLL:sfc_os.DLL (726A0000), size: 57344 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\sfc_os.DLL', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\CRYPTBASE.dll:CRYPTBASE.dll (74960000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\CRYPTBASE.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\sechost.dll:sechost.dll (74990000), size: 212992 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\sechost.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\bcryptPrimitives.dll:bcryptPrimitives.dll (74900000), size: 331776 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\bcryptPrimitives.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\system32\IMM32.DLL:IMM32.DLL (74FC0000), size: 131072 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\IMM32.DLL', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\MSCTF.dll:MSCTF.dll (75100000), size: 909312 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSCTF.dll', fileVersion: 6.2.9200.16578
[09.11. - 15:21:58] C:\Perl\bin\perl512.dll:perl512.dll (28000000), size: 1273856 (result: 0), SymType: '-exported-', PDB: 'C:\Perl\bin\perl512.dll', fileVersion: 5.12.3.1204
[09.11. - 15:21:58] C:\Program Files (x86)\Lua\5.1\lua51.dll:lua51.dll (10000000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\Lua\5.1\lua51.dll', fileVersion: 5.1.4.0
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\WS2_32.dll:WS2_32.dll (771C0000), size: 327680 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WS2_32.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (748F0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\VERSION.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\ADVAPI32.dll:ADVAPI32.dll (751E0000), size: 712704 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ADVAPI32.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.9200.16658_none_bf1359a245f1cd12\COMCTL32.dll:COMCTL32.dll (730C0000), size: 552960 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.9200.16658_none_bf1359a245f1cd12\COMCTL32.dll', fileVersion: 5.82.9200.16657
[09.11. - 15:21:58] C:\EQ\EQEmuServer\lua5.1.dll:lua5.1.dll (00D40000), size: 167936 (result: 0), SymType: '-exported-', PDB: 'C:\EQ\EQEmuServer\lua5.1.dll', fileVersion: 5.1.4.0
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\NSI.dll:NSI.dll (75290000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\NSI.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6910_none_d089c358442de345\MSVCR80.dll:MSVCR80.dll (744A0000), size: 634880 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.6910_none_d089c358442de345\MSVCR80.dll', fileVersion: 8.0.50727.6910
[09.11. - 15:21:58] C:\WINDOWS\system32\napinsp.dll:napinsp.dll (73230000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\napinsp.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\system32\pnrpnsp.dll:pnrpnsp.dll (731F0000), size: 81920 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\pnrpnsp.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\WINDOWS\system32\NLAapi.dll:NLAapi.dll (731D0000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\NLAapi.dll', fileVersion: 6.2.9200.16518
[09.11. - 15:21:58] C:\WINDOWS\System32\mswsock.dll:mswsock.dll (74650000), size: 303104 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\mswsock.dll', fileVersion: 6.2.9200.16433
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (73910000), size: 479232 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DNSAPI.dll', fileVersion: 6.2.9200.16420
[09.11. - 15:21:58] C:\WINDOWS\System32\winrnr.dll:winrnr.dll (73190000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\winrnr.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\Program Files (x86)\Bonjour\mdnsNSP.dll:mdnsNSP.dll (73290000), size: 135168 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\Bonjour\mdnsNSP.dll', fileVersion: 3.0.0.10
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\Iphlpapi.DLL:Iphlpapi.DLL (735B0000), size: 131072 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\Iphlpapi.DLL', fileVersion: 6.2.9200.16420
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\WINNSI.DLL:WINNSI.DLL (733F0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINNSI.DLL', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (73280000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\rasadhlp.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] C:\Perl\lib\auto\Cwd\Cwd.dll:Cwd.dll (02A90000), size: 20480 (result: 0), SymType: '-exported-', PDB: 'C:\Perl\lib\auto\Cwd\Cwd.dll'
[09.11. - 15:21:58] C:\Perl\lib\auto\DBI\DBI.dll:DBI.dll (02AA0000), size: 98304 (result: 0), SymType: '-exported-', PDB: 'C:\Perl\lib\auto\DBI\DBI.dll'
[09.11. - 15:21:58] C:\Perl\lib\auto\List\Util\Util.dll:Util.dll (02AC0000), size: 28672 (result: 0), SymType: '-exported-', PDB: 'C:\Perl\lib\auto\List\Util\Util.dll'
[09.11. - 15:21:58] C:\Perl\lib\auto\Filter\Util\Call\Call.dll:Call.dll (04500000), size: 20480 (result: 0), SymType: '-exported-', PDB: 'C:\Perl\lib\auto\Filter\Util\Call\Call.dll'
[09.11. - 15:21:58] C:\Perl\lib\auto\IO\IO.dll:IO.dll (04510000), size: 24576 (result: 0), SymType: '-exported-', PDB: 'C:\Perl\lib\auto\IO\IO.dll'
[09.11. - 15:21:58] C:\WINDOWS\System32\fwpuclnt.dll:fwpuclnt.dll (73240000), size: 258048 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\fwpuclnt.dll', fileVersion: 6.2.9200.16634
[09.11. - 15:21:58] C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (71640000), size: 1216512 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dbghelp.dll', fileVersion: 6.2.9200.16384
[09.11. - 15:21:58] c:\eq\source\zone\spawn2.cpp (248): Spawn2::Disable
[09.11. - 15:21:58] c:\eq\source\zone\worldserver.cpp (1530): WorldServer::Process
[09.11. - 15:21:58] c:\eq\source\zone\net.cpp (350): main
[09.11. - 15:21:58] f:\dd\vctools\crt_bld\self_x86\crt\src\crt0.c (278): __tmainCRTStartup
[09.11. - 15:21:58] f:\dd\vctools\crt_bld\self_x86\crt\src\crt0.c (189): mainCRTStartup
[09.11. - 15:21:58] ERROR: SymGetLineFromAddr64, GetLastError: 487 (Address: 74BE86E3)
[09.11. - 15:21:58] 74BE86E3 (KERNEL32): (filename not available): BaseThreadInitThunk
[09.11. - 15:21:58] ERROR: SymGetLineFromAddr64, GetLastError: 487 (Address: 773DBE99)
[09.11. - 15:21:58] 773DBE99 (ntdll): (filename not available): RtlInitializeExceptionChain
[09.11. - 15:21:58] ERROR: SymGetLineFromAddr64, GetLastError: 487 (Address: 773DBE6C)
[09.11. - 15:21:58] 773DBE6C (ntdll): (filename not available): RtlInitializeExceptionChain
Any idea what could be going on here??? 
|