[Plugin] FCNPC - Fully Controllable NPC (Russian Thread)
#8

Позволю себе задать свой вопрос в этой теме.

У меня есть сервер на 0.3z, переход на 0.3.7 не планируется (из-за всем известной вкладки). На сервер нужно добавить NPC на плагине FCNPC (другие совершенно не подходят!). Поскольку текущую версию FCNPC под 0.3z скомпилировать нереально, остаётся два выхода: либо построить всё на 0.1 B15 (или ниже), либо скомпилировать более раннюю версию 1.0.0 ветки. С версией 0.1 B15 под Linux возникла проблема - плагин крашит при создании NPC. Полная информация об этой ошибке - ниже.

Code:
[02:09:05] init_npc_zombies() start
[02:09:05] [debug] Server crashed while executing menu.amx
[02:09:05] [debug] AMX backtrace:
[02:09:05] [debug] #0 native FCNPC_Create () from FCNPC.so
[02:09:05] [debug] #1 000c83b0 in public init_npc_zombies () from menu.amx
[02:09:05] [debug] #2 0006d43c in public OnFilterScriptInit () from menu.amx
[02:09:05] [debug] Native backtrace:
[02:09:05] [debug] #0 b737250b in _ZN10StackTraceC1EPv () from plugins/crashdetect.so
[02:09:05] [debug] #1 b736b20f in _ZN11CrashDetect20PrintNativeBacktraceERSoPv () from plugins/crashdetect.so
[02:09:05] [debug] #2 b736c3fc in _ZN11CrashDetect20PrintNativeBacktraceEPv () from plugins/crashdetect.so
[02:09:05] [debug] #3 b736c866 in _ZN11CrashDetect11OnExceptionEPv () from plugins/crashdetect.so
[02:09:05] [debug] #4 b737215c in ?? () from plugins/crashdetect.so
[02:09:05] [debug] #5 b776cbd0 in ?? ()
[02:09:05] [debug] #6 b534bd2e in _ZN14CSAMPFunctions9NewPlayerEPc () from plugins/FCNPC.so
[02:09:05] [debug] #7 b534b649 in _ZN14CPlayerManager9AddPlayerEPc () from plugins/FCNPC.so
[02:09:05] [debug] #8 b5344b38 in _ZN8CNatives12FCNPC_CreateEP6tagAMXPi () from plugins/FCNPC.so
[02:09:05] [debug] #9 08093d84 in ?? () from ./samp03test
[02:09:05] [debug] #10 b736df7b in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so
[02:09:05] [debug] #11 b7370f78 in ?? () from plugins/crashdetect.so
[02:09:05] [debug] #12 b7374f96 in amx_Exec () from plugins/crashdetect.so
[02:09:05] [debug] #13 b736d226 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so
[02:09:05] [debug] #14 b7370cd9 in ?? () from plugins/crashdetect.so
[02:09:05] [debug] #15 b72ded36 in ?? () from plugins/streamer.so
[02:09:05] [debug] #16 0809ff66 in ?? () from ./samp03test
[02:09:05] [debug] #17 0809df8d in ?? () from ./samp03test
[02:09:05] [debug] #18 0809e927 in ?? () from ./samp03test
[02:09:05] [debug] #19 080da68a in ?? () from ./samp03test
[02:09:05] [debug] #20 08093d84 in ?? () from ./samp03test
[02:09:05] [debug] #21 b736df7b in _ZN11CrashDetect13DoAmxCallbackEiPiS0_ () from plugins/crashdetect.so
[02:09:05] [debug] #22 b7370f78 in ?? () from plugins/crashdetect.so
[02:09:05] [debug] #23 b7374f96 in amx_Exec () from plugins/crashdetect.so
[02:09:05] [debug] #24 b736d226 in _ZN11CrashDetect9DoAmxExecEPii () from plugins/crashdetect.so
[02:09:05] [debug] #25 b7370cd9 in ?? () from plugins/crashdetect.so
[02:09:05] [debug] #26 b72ded36 in ?? () from plugins/streamer.so
[02:09:05] [debug] #27 080a36bb in ?? () from ./samp03test
[02:09:05] [debug] #28 080a98bd in ?? () from ./samp03test
[02:09:05] [debug] #29 080a8162 in ?? () from ./samp03test
[02:09:05] [debug] #30 b73ad73e in __libc_start_main () from /lib/i386-linux-gnu/libc.so.6
В функции FCNPC_Create() ошибка. Более детально:

код самого плагина с отладочной информацией:
PHP Code:
class CSAMPRakPeer
{
        
// +0xA = wMaxPlayers
        
public:
                
CSAMPRemoteSystem *GetRemoteSystem(unsigned short usIndex)
                {
fprintf(stderr"ok:SAMPRakPeer.h GetRemoteSystem(), this=0x%x\n",this);
fprintf(stderr"ok:SAMPRakPeer.h GetRemoteSystem(), CAddress::OFFSET_RemoteSystemManager=0x%x\n",CAddress::OFFSET_RemoteSystemManager);
fprintf(stderr"ok:SAMPRakPeer.h GetRemoteSystem(), SYSTEM_MANAGER_OFFSET=0x%x\n",SYSTEM_MANAGER_OFFSET);
                        
// Get the remote system manager
                        
CSAMPRemoteSystemManager *pRemoteSystemManager = *(CSAMPRemoteSystemManager **)(this CAddress::OFFSET_RemoteSystemManager SYSTEM_MANAGER_OFFSET);
fprintf(stderr"ok1:SAMPRakPeer.h GetRemoteSystem()\n");
                        
// Get the remote system
                        
return (CSAMPRemoteSystem *)(pRemoteSystemManager CAddress::OFFSET_RemoteSystemSize usIndex);
                }
... 
результат:
Code:
ok:SAMPRakPeer.h SetConnectedPlayer()
ok:SAMPRakPeer.h GetRemoteSystem(), this=0x937a320
ok:SAMPRakPeer.h GetRemoteSystem(), CAddress::OFFSET_RemoteSystemManager=0xe6740003
ok:SAMPRakPeer.h GetRemoteSystem(), SYSTEM_MANAGER_OFFSET=0x4
Segmentation fault (core dumped)
ОС: Ubuntu 16.04

Как мне кажется, дело в этом адресе: CAddress::OFFSET_RemoteSystemManager, который, судя по всему, выше определяется направильно. Хотелось бы знать, что это за адрес, и как допилить плагин до рабочего состояния. Обращаюсь к знатокам FCNPC, в частности, к ZiGGi
Reply


Messages In This Thread
FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 16.03.2016, 12:17
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Stuntff - 16.03.2016, 13:01
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Romz - 16.03.2016, 13:15
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Untonyst - 16.03.2016, 13:23
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Bombo - 21.06.2016, 17:02
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Romz - 21.06.2016, 17:19
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 21.06.2016, 20:56
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Bombo - 22.06.2016, 22:13
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 22.06.2016, 23:32
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Bombo - 23.06.2016, 04:00
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 10.07.2016, 09:42
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 12.07.2016, 22:59
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Bombo - 12.07.2016, 23:16
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Romz - 13.07.2016, 01:01
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 13.07.2016, 09:37
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Romz - 13.07.2016, 14:36
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OmegaKiller72 - 20.07.2016, 12:00
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 20.07.2016, 14:38
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OmegaKiller72 - 20.07.2016, 16:15
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 20.07.2016, 20:01
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OmegaKiller72 - 22.07.2016, 11:47
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 27.07.2016, 17:58
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OKStyle - 27.07.2016, 20:37
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 27.07.2016, 21:37
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Imperealist - 29.07.2016, 12:11
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.07.2016, 13:41
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Imperealist - 01.08.2016, 00:50
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 01.08.2016, 16:13
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Imperealist - 01.08.2016, 23:36
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 03.08.2016, 07:04
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Bombo - 04.08.2016, 12:05
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 04.08.2016, 12:36
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 09.08.2016, 05:13
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Art4D - 20.08.2016, 04:09
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OKStyle - 20.08.2016, 08:40
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 20.08.2016, 15:20
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 26.08.2016, 15:42
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OKStyle - 28.08.2016, 12:57
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 28.08.2016, 14:48
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 28.08.2016, 17:24
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OKStyle - 29.08.2016, 15:26
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.08.2016, 21:50
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OKStyle - 30.08.2016, 14:49
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 02.09.2016, 06:35
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 18.01.2017, 13:05
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by DANGER1979 - 19.01.2017, 12:14
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by DANGER1979 - 20.01.2017, 11:52
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 22.01.2017, 09:34
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 26.03.2017, 14:51
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by DANGER1979 - 27.03.2017, 07:40
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 02.04.2017, 11:31
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 02.04.2017, 11:41
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 16.04.2017, 15:08
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Kolstin - 16.04.2017, 17:56
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 16.04.2017, 18:21
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 01.05.2017, 06:23
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 14.06.2017, 14:06
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 25.10.2017, 10:15
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Bombo - 25.10.2017, 15:56
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Romz - 19.11.2017, 19:08
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 20.11.2017, 14:50
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by OKStyle - 20.11.2017, 15:29
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Romz - 21.11.2017, 01:09
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 21.11.2017, 03:27
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 05.01.2018, 13:28
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by MrStead - 21.01.2018, 10:52
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 22.01.2018, 05:07
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by MrStead - 25.01.2018, 14:46
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 25.01.2018, 15:46
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 27.01.2018, 13:38
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 27.01.2018, 21:05
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Jasno - 29.01.2018, 09:01
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 09:20
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Jasno - 29.01.2018, 09:23
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.01.2018, 10:06
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.01.2018, 17:27
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 19:06
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.01.2018, 19:10
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 19:12
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.01.2018, 19:14
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 19:20
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 19:22
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.01.2018, 19:22
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 19:25
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 29.01.2018, 19:26
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 29.01.2018, 19:27
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 30.01.2018, 16:14
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by eakwarp - 31.01.2018, 11:36
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by MrStead - 02.02.2018, 14:40
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by MrStead - 03.02.2018, 05:41
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by MrStead - 06.02.2018, 14:07
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by Anomis - 20.06.2018, 09:35
Re: FCNPC - Fully Controllable NPC (Russian Thread) - by ZiGGi - 20.06.2018, 19:57

Forum Jump:


Users browsing this thread: 2 Guest(s)