SA-MP Forums Archive
[Pedido] Create 3D TextLabel - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] Create 3D TextLabel (/showthread.php?tid=464927)



Create 3D TextLabel - GHLEMES - 20.09.2013

Olб a Todos, eu queria um FS que tenha o comando "/criar3d [Mensagem]" Para criar "3D Text Label" In-Game.

Ou seja o Admin Logado na RCON digita "/criar3d [Mensagem]" e cria um 3DTextLabel No local, Com a mensagem digitada!!


Agradeзo desde Jб.

#EDIT

Se Possivel com Comando De Excluir Tambйm


Re: Create 3D TextLabel - PT - 20.09.2013

aqui tens

https://sampforum.blast.hk/showthread.php?tid=191820

e este tbm e

https://sampforum.blast.hk/showthread.php?tid=259368

ve os 2 e escolhe vc


Re: Create 3D TextLabel - iFucK - 20.09.2013

https://sampforum.blast.hk/showthread.php?tid=284419
Esse aqui й simples sу tem /Criar3D Mesmo feito por Macintosh


Re: Create 3D TextLabel - GHLEMES - 20.09.2013

Quote:
Originally Posted by PT
Посмотреть сообщение
Cara os dois estгo em Ingles


Re: Create 3D TextLabel - GHLEMES - 20.09.2013

Quote:
Originally Posted by iFucK
Посмотреть сообщение
https://sampforum.blast.hk/showthread.php?tid=284419
Esse aqui й simples sу tem /Criar3D Mesmo feito por Macintosh
Gostei desse Mas quando usa o Comando muda a senha do conta, e nгo й pra ADM logado na RCON


Re: Create 3D TextLabel - iFucK - 20.09.2013

Era sу seta pra admin uй..
Vк esse ae..
https://sampforum.blast.hk/showthread.php?tid=162860


Re: Create 3D TextLabel - Coe1 - 20.09.2013

Nгo testei mas acho que isso funciona:
pawn Код:
new
    Text3D: corey;
   
new Texto[ 20 ];
new Float:P[3];

CMD:texto3d(playerid, params[])
{
    if(sscanf ( params,"s[20]", Texto))
        return SendClientMessage(playerid, -1,"Uso: /texto3d mensagem");
       
    GetPlayerPos(playerid, P[0], P[1], P[2]);
    corey = Create3DTextLabel(Texto, 0xFFFFFFFF, P[0], P[1], P[2], 100.0, 0);
    Update3DTextLabelText(corey, 0xFFFFFFFF, Texto);
    return 1;
}