SA-MP Forums Archive
Create3DTextLabel - not working? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Create3DTextLabel - not working? (/showthread.php?tid=638928)



Create3DTextLabel - not working? - Oficer - 08.08.2017

Hello, I want used Create3DTextLabel into interrior - ammunation (7) but my script not working:

PHP код:
Create3DTextLabel("3DB1FF}SHOP\n{D1D1D1}use{FF0000}/command...",COLOR_RED,313.9908,-133.5924,999.601620); 



Re: Create3DTextLabel - not working? - FuNkYTheGreat - 08.08.2017

PHP код:
Create3DTextLabel("{3DB1FF}SHOP\n{D1D1D1}use{FF0000}/command..."COLOR_RED313.9908,-133.5924,999.601640.001); 
try this,


Re: Create3DTextLabel - not working? - Swarn - 08.08.2017

If the above does not work, try.
Код:
Create3DTextLabel("{3DB1FF}SHOP\n{D1D1D1}use{FF0000}/command...", COLOR_RED, 313.9908,-133.5924,999.6016, 40.0, -0, 1);



Re: Create3DTextLabel - not working? - GoldenLion - 08.08.2017

Код:
CreateDynamic3DTextLabel(const text[], color, Float:x, Float:y, Float:z, Float:drawdistance, attachedplayer = INVALID_PLAYER_ID, attachedvehicle = INVALID_VEHICLE_ID, testlos = 0, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = STREAMER_3D_TEXT_LABEL_SD, areaid = -1, priority = 0)
EDIT: Didn't notice you had the regular Create3DTextLabel, but using streamer is the only way to make it show up in a certain interior.


Re: Create3DTextLabel - not working? - Ghazal - 08.08.2017

Correct usage: https://sampwiki.blast.hk/wiki/Create3DTextLabel


Re: Create3DTextLabel - not working? - Oficer - 08.08.2017

Ok, thanks for help