[Pedido] Como criar 3D Text Label no jogo?
#3

Код:
#include <a_samp>
#include <zcmd>

#define VERMELHO 0xE60000FF

CMD:criarlabel(playerid,params[])
{
new Label = strval(params), string[128];
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,VERMELHO, "ERRO: Vocк nгo tem autorizaзгo para utilizar esse comando.");
if(isnull(params))return SendClientMessage(playerid,VERMELHO,"Uso: /criarlabel [seu texto]");
new Float:POS[3], world;
GetPlayerPos(playerid,POS[0],POS[1],POS[2]);
world = GetPlayerVirtualWorld(playerid);
format(string, sizeof(string), "%s", Label);
Create3DTextLabel(string,0xFFFFFFFF,POS[0],POS[1],POS[2],100,world,0);
return 1;}
Reply


Messages In This Thread
Como criar 3D Text Label no jogo? - by Infiniteplay - 17.02.2015, 01:20
Re: Como criar 3D Text Label no jogo? - by Whoo - 17.02.2015, 01:24
Re: Como criar 3D Text Label no jogo? - by FellypeR - 17.02.2015, 01:34
Re: Como criar 3D Text Label no jogo? - by Infiniteplay - 17.02.2015, 02:21
Re: Como criar 3D Text Label no jogo? - by pWesley - 17.02.2015, 02:36
Re: Como criar 3D Text Label no jogo? - by Infiniteplay - 17.02.2015, 03:09

Forum Jump:


Users browsing this thread: 1 Guest(s)