Portal SAMP
[Ajuda] Texto attachado - 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] Texto attachado (/showthread.php?tid=1753)



Texto attachado - WeebSide - 20/10/2021

Galera eu esqueci a funcao nativa para attachar um 3dtextlabel em um vehiculo alguem pode me lembra por favor eu ia pesquisar no wiki mas esqueci nome


RE: Texto attachado - Lightz/Conta nova - 20/10/2021

(20/10/2021 18:38)WeebSide Escreveu: Galera eu esqueci a funcao nativa para attachar um 3dtextlabel em um vehiculo alguem pode me lembra por favor eu ia pesquisar no wiki mas esqueci nome

Attach3DTextLabelToVehicle

Código:
new Text3D: VehicleText[MAX_VEHICLES];
new VehicleID;


public OnGameModeInit ( )
{

    CreateVehicle(510, 0.0, 0.0, 15.0, 5, 0, 120);
    VehicleText[VehicleID] = Create3DTextLabel("Coloque o seu texto aqui", Troque para a cor de sua preferência, 0.0, 0.0, 0.0, 50.0, 0, 1);
    Attach3DTextLabelToVehicle(VehicleText[VehicleID], vehicle_id, 0.0, 0.0, 2.0);
    return 1;
}