Option 1: First comment out lines one by one to check which one creates the problem. Then you search for that function to double check you used it correctly. Then you start adding your debug messages checking the parameters you send to that function.
If these steps don't give you results, you create a thread.
Option 2: Share source.
This is from another thread:
Quote:
Originally Posted by ConnorMcLeod
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)
|
I don't know why set_pdata_in() is needed, but it seems important.
__________________