13.07.2012, 03:42
04/10
Mб identado.
Pouco explicativo.
Nгo й nessesбrio 2 strings.
OnPlayerText manda duas mensagens.
Que contem nas strings o mesmo texto, "%s {FFFF00}[%i] diz: {FFFFFF}%s".
Mб identado.
Pouco explicativo.
Nгo й nessesбrio 2 strings.
OnPlayerText manda duas mensagens.
Que contem nas strings o mesmo texto, "%s {FFFF00}[%i] diz: {FFFFFF}%s".
pawn Код:
public OnPlayerText(playerid, text[])
{
new string[128],
Nome[MAX_PLAYER_NAME+1],
Color = GetPlayerColor(playerid);
GetPlayerName(playerid,Nome,sizeof Nome);
for(new i; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i))
{
if(idioma[i]==1)
{
format(string,sizeof string,"%s {FFFF00}[%i] diz: {FFFFFF}%s",Nome,playerid,text);
SendClientMessage(i,Color,string); // Envia a mensagem em portuguкs
}
if(idioma[i]==2)
{
format(string,sizeof string,"%s {FFFF00}[%i] says: {FFFFFF}%s",Nome,playerid,text);
SendClientMessage(i,Color,string); // Envia a mensagem em inglкs
}
}
return true;
}