Portal SAMP
[Ajuda] TextDrawSetPos - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] TextDrawSetPos (/showthread.php?tid=4501)



TextDrawSetPos - spongebob - 07/02/2024

to tentando mudar a posição de uma textdraw com YSF mais quando uso a textdraw some ou não funciona.

Código:
CMD:tmov( playerid, params[ ] )
{
    TextDrawSetPos(DCTD[playerid][0],316.000000,240.000000);
    return 1;
}
Huh


RE: TextDrawSetPos - pushline - 07/02/2024

https://github.com/IS4Code/YSF/blob/master/sampsvr_files/pawno/include/YSF.inc#L370

Código PHP:
CMD:tmovplayeridparams[ ] )
{
    
TextDrawSetPos(DCTD[playerid][0],316.000000,240.000000);
    
TextDrawShowForPlayer(DCTD[playerid][0]);
    return 
1;




RE: TextDrawSetPos - spongebob - 07/02/2024

resolvido faltava o plugin 
[Imagem: 560x95_FFFFFF_FF9900_000000_000000.png]


RE: TextDrawSetPos - xbruno1000x - 07/02/2024

Como dito na documentação do plugin, você precisa usar TextDrawShowForPlayer() depois de mover a textdraw.

Citar:// You can change textdraw pos with it, but you need to use TextDrawShowForPlayer() after that