How i put colors in label
#2

give it a try:
pawn Код:
COMMAND:label(playerid,params[])
{
    if (APlayerData[playerid][PlayerLevel] >= 7)
    {
    new string[160],Float: X, Float: Y, Float: Z,text[100],distance,color;
    GetPlayerPos(playerid,  X,Y,Z);
    if(sscanf(params,"sxd",text,color,distance)) return SendClientMessage(playerid,0xFB9204FF,"USAGE: /label [text]   [color] [distance]");
    Create3DTextLabel(text,color,X,Y,Z,distance,GetPlayerVirtualWorld(playerid));
    format(string,sizeof(string),"Create3DTextLabel(\"%s\",color,%f, %f, %f,%d,%d);",text,X,Y,Z,distance,GetPlayerVirtualWorld(playerid));
    SaveToLog("labels",string);
    }
    return 1;
}
Reply


Messages In This Thread
How i put colors in label - by DerickClark - 06.03.2013, 22:26
Re: How i put colors in label - by Salim_Karaja - 07.03.2013, 03:59

Forum Jump:


Users browsing this thread: 1 Guest(s)