- Ошибка
-
0xecca29cd in _ZN11CBasePlayer14SelectLastItemEv
- ОС
- Linux
- Amx Mod X
-
AMX Mod X 1.10.0.5467
- Билд
-
Exe version 1.1.2.7/Stdio (cstrike)
ReHLDS version: 3.13.0.788-dev
Build date: 07:36:33 Jul 12 2023 (3378)
- ReGamedll
-
ReGameDLL version: 5.22.0.593-dev
Build date: 03:10:30 Jul 11 2023
- Версия Metamod
-
Metamod-r v1.3.0.131, API (5:13)
Metamod-r build: 18:51:02 Jul 11 2022
- Список метамодулей
-
[ 1] Reunion RUN - reunion_mm_i386.so v0.1.0.137 ini Start Never
[ 2] Revoice RUN - revoice_mm_i386.so v0.1.0.34 ini Start Never
[ 3] ReSemiclip RUN - resemiclip_mm_i386.so v2.3.9 ini Chlvl ANY
[ 4] AMX Mod X RUN - amxmodx_mm_i386.so v1.10.0.5467 ini Start ANY
[ 5] ReAPI RUN - reapi_amxx_i386.so v5.22.0.254-dev pl4 ANY Never
[ 6] Fun RUN - fun_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
[ 7] Engine RUN - engine_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
[ 8] FakeMeta RUN - fakemeta_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
[9] GeoIP RUN - geoip_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
[10] CStrike RUN - cstrike_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
[11] CSX RUN - csx_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
[12] Ham Sandwich RUN - hamsandwich_amxx_i386.so v1.10.0.5467 pl4 ANY ANY
- Список плагинов
-
100 plugins, 100 running etc...
My crash is:
0xecca29cd in _ZN11CBasePlayer14SelectLastItemEv. () from /home/ogp_agent/OGP_User_Files/1/cstrike/dlls/cs.so
I use this a lot in my plugin:
Could this cause this error? If yes, how to fix it?
and what else could cause this error?
0xecca29cd in _ZN11CBasePlayer14SelectLastItemEv. () from /home/ogp_agent/OGP_User_Files/1/cstrike/dlls/cs.so
I use this a lot in my plugin:
C++:
public bool:xDeployWeapon(id)
{
if(!is_user_connected(id))
return false
new ent = get_member(id, m_pActiveItem)
if(!is_nullent(ent) && is_user_alive(id))
{
ExecuteHamB(Ham_Item_Deploy, ent)
return true
}
return false
}
and what else could cause this error?