27.07.2014, 16:11
olб pessoal, esses comandos estгo mostrando o texto todo preto, to caзando alguma pista em GetPlayerColor
no Wiki mas tб brabo!!! onde й que eu mexo pra editar a cor?
vlw obrigado!!!
no Wiki mas tб brabo!!! onde й que eu mexo pra editar a cor?
vlw obrigado!!!
PHP код:
command(me, playerid, params[])
{
new string[128];
if(strlen(params) < 2) return SendClientMessage(playerid, 0xFFFF000, "Mнnimo 2 caracteres.");
format(string, sizeof(string), "* %s %d %s ", GetName(playerid), playerid, params);
SendClientMessageToAll(GetPlayerColor(playerid), string);
return 1;
}
command(do, playerid, params[])
{
new string[128], Float: Pos[3];
if(strlen(params) < 2) return SendClientMessage(playerid, 0xFFFF000, "Mнnimo 2 caracteres.");
format(string, sizeof(string),"%s (%d) ((%s))", GetName(playerid), playerid, params);
for(new i; i < MAX_PLAYERS; i++)
{
if(i != playerid && IsPlayerConnected(i) && IsPlayerInRange(i, DO_RANGE, DO_RANGE, Pos[0], Pos[1], Pos[2]))
{
SendClientMessage(i, GetPlayerColor(playerid), string);
}
}
SendClientMessage(playerid, GetPlayerColor(playerid), string);
return 1;
}