12.08.2011, 18:43
Well, so far no errors, I can't test it yet 'cause nobody else is online!
What about the chat, why the hell is there every person who speaks green?
I have this, but this does not work!
What about the chat, why the hell is there every person who speaks green?
I have this, but this does not work!
PHP код:
public OnPlayerText(playerid, text[])
{
new sendername[MAX_PLAYER_NAME], string[128];
if(chatmode)
{
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "%s: %s", sendername, text);
if(gTeam[playerid] == GROVE)
{
SendLocalChat(playerid,0x00FF00AA,string,20.0);
return 0;
}
if(gTeam[playerid] == BALLA)
{
SendLocalChat(playerid,0xFF00FFAA,string,20.0);
return 0;
}
if(gTeam[playerid] == VAGOS)
{
SendLocalChat(playerid,0xFFFF00AA,string,20.0);
return 0;
}
}
return 0;
}