SA-MP Forums Archive
Tag - 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: Tag (/showthread.php?tid=631502)



Tag - StrikerZ - 30.03.2017

Is there any way to show the dynamic3dtextlabel in every virtual world? for example for a roleplay server i used custom nametags so if he/she gets to another vw the tag wont be visible there.


Re: Tag - [eLg]elite - 30.03.2017

for(new vw = 0; vw > [Maximum amount of VWs you will be using]; vw++)

Then just use use the function in the loop with the vw variable.


Re: Tag - GoldenLion - 30.03.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, STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1, priority = 0);



Re: Tag - StrikerZ - 31.03.2017

Quote:
Originally Posted by GoldenLion
Посмотреть сообщение
Код:
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, STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1, priority = 0);
Thx for that