Quote:
Originally Posted by vato loco [GE-S]
hi never regonized this error befor look yesterday in logs
and saw this error !!! somthin with array wrong ??
PHP Code:
new is_plr_alive[33]
this is the error
PHP Code:
if(!is_plr_alive[id])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])
|
First of all, don't make your own array for that.. use:
!is_player_alive(id)
__________________