You should open all plugins sources you use, and find those that are using strip_user_weapon() native.
When this native is used, you should add this line after the native :
set_pdata_int(id, 116, 0)
for example :
PHP Code:
strip_user_weapons(id)
->
PHP Code:
strip_user_weapons(id)
set_pdata_int(id, 116, 0)
__________________