08.06.2011, 15:57
usa string tipo
ve se funfa e me fala =X
pawn Код:
ve se funfa e me fala =X
CMD:criarlabel(playerid, params[])
{
new Float:posX,
Float:posY,
Float:posZ;
new texto[256];
new string[256];
if(sscanf(params, "s[256]", texto)) return SendClientMessage(playerid, Branco, "Use: /criarlabel [Texto]");
GetPlayerPos(playerid, posX, posY, posZ );
format(string, sizeof(string), "%s",texto);
Create3DTextLabel(string, Amarelo, posX, posY, posZ, 40,0);
GetPlayerName(playerid, NomedoCara, sizeof(NomedoCara));
format(string, sizeof(string), "Vocк criou um TextLabel com a mensagem: %s",texto);
SendClientMessage(playerid, Verde_Folha, string);
return true;
}