30.08.2015, 00:48
Gente como eu posso adcionar cor no meu label?
Por exemplo eu digitar: /criarlabel3 {FFFF00}Alo
PHP код:
COMMAND:criarlabel3(playerid, params[])
{
SendAdminText(playerid, "/criarlabel3", params);
if (APlayerData[playerid][PlayerLevel] >= 3)
{
new Float:PosX,
Float:PosY,
Float:PosZ;
new texto[256];
new string[256];
{
if(sscanf(params, "s[256]", texto)) return SendClientMessage(playerid, 0xFF0000FF, "Use: /criarlabel3 [Texto]");
GetPlayerPos(playerid, PosX, PosY, PosZ);
format(string, sizeof(string), "%s", texto);
Create3DTextLabel(string, 0x00ff00ff, PosX, PosY, PosZ, 40,0);
format(string, sizeof(string), "Vocк criou um TextLabel com a mensagem: %s", texto);
SendClientMessage(playerid, 0x00FF00FF, string);
} }
return true;
}