hi guys, i have this ....
PHP Code:
public forward_kill( id )
{
if( bKill[ id ] > MAX_KILLS )
{
bKill[ id ] = MAX_KILLS;
return FMRES_IGNORED;
}
if( bKill[ id ] == MAX_KILLS )
{
get_user_name( id, szName, charsmax( szName ) );
color_print( 0, "^3%s^1 has reached the number %d!", name, MAX_KILLS );
bKill[ id ] = MAX_KILLS;
}
bKill[ id ] += 1;
return FMRES_IGNORED;
}
well i want the bKill[ id ] stops permanently when has reachedthe max kills number... because if i reach the maxkills number says in chat, but the count doesnt stop.
help
__________________