07.09.2012, 17:44
isnt it easier to forward and then use the normal public
pawn Код:
forward SendVipMessage(color, const string[ ]);
public SendVipMessage(color, const string[ ])
{
foreach(Player, i )
if ( P_DATA[ i ][ Vip ] >= 1 )
SendClientMessage( i, color, string );
return 1;
}