01.02.2010, 07:35
Hey all, ive tried searching SO many Times
and found a Team chat, but it doesnt work :/
im using gTeam btw and Everytime i do ! It shows People From other Teams Chat as well
Example:
[Grove] ! Hi
[Balla] ! Hello
So They Both Can hear the Chat, here is Code
Thanks in Advance
and found a Team chat, but it doesnt work :/
im using gTeam btw and Everytime i do ! It shows People From other Teams Chat as well
Example:
[Grove] ! Hi
[Balla] ! Hello
So They Both Can hear the Chat, here is Code
pawn Код:
{
if(text[0] == '!')
{
new name[24], string[256];
GetPlayerName(playerid, name, 24);
format(string, sizeof(string), "[Team Chat]%s: %s", name, text[1]);
printf("%s", string);
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(gTeam[i] == gTeam[playerid])
SendClientMessage(i, GetPlayerColor(playerid), string);
}
}
return 0;
}
return 1;
}