27.01.2010, 16:48
I need team chat! like this:
i'm writin' "!" than message!
help plz
tnx
i'm writin' "!" than message!
help plz
tnx
|
Originally Posted by Cry_Wolf
Script Request Thread #4.
|
//------------------------------------------------------------------------------------------------------
public OnPlayerText(playerid, text[])
{
new string[256];
new playername[MAX_PLAYER_NAME];
if(text[0] == '!' && text[1] != 0)
{
GetPlayerName( playerid, playername, MAX_PLAYER_NAME );
format( string, 128, "[Team] %s: %s", playername, text[1] );
for(new i = 0; i < MAX_PLAYERS; i++ )
{
if( IsPlayerConnected(i) && gTeam[playerid] == gTeam[i] )
SendClientMessage( i, UrColor, string );
}
return 0;
}
return 1;
}
//------------------------------------------------------------------------------------------------------