08.04.2011, 12:57
I copied this stock from the usefull stocks thread:
But I haven't understood the last part of the script,what does expetionid means?
What do I need to put instead of it? Cause everytime I use this stock I get "number of arguments does not match definition" warning
PHP код:
stock SendClientMessageToAllEx( color, string[], exeptionid )
{
if ( !strlen( string ) ) return 0;
for ( new i = 0, j = GetMaxPlayers(); i < j; i ++ )
{
if ( !IsPlayerConnected( i ) || ( i == exeptionid ) ) continue;
SendClientMessage( i, color, string );
}
return 1;
}
What do I need to put instead of it? Cause everytime I use this stock I get "number of arguments does not match definition" warning