hi never regonized this error befor look yesterday in logs
and saw this error !!! somthin with array wrong ??
this is the error line
PHP Code:
if(!is_plr_alive[id])
PHP Code:
new is_plr_alive[33]
public fw_UseButton(iEnt, id)
{
if(!iEnt || id > 32)
return FMRES_IGNORED
if(!is_plr_alive[id])
return FMRES_IGNORED
}
can it be that i must use it like this
PHP Code:
if(!is_plr_alive[id-1])
__________________