25.06.2011, 03:57
Here is the entire "thingy madoodle" :3
Just refer to the pic for the line. 1389 is: if((strcmp(ReturnPlayerName(i),"Joseph_Stryker",tr ue) == 0)
Код:
forward MessageToSSChat(color,const string[]);
public MessageToSSChat(color,const string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i) == 1)
{
if((strcmp(ReturnPlayerName(i),"Joseph_Stryker",true) == 0)
|| (strcmp(ReturnPlayerName(i),"Josh_Rolen",true) == 0)
|| PlayerInfo[i][SSMember] >= 1)
{
SendClientMessage(i, color, string);
}
}
}
return 1;
}

