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



CreateDynamic3DTextLabel Problem - Razwan - 03.09.2011

I reached the limit of the normal Create3DTextLabel, and i put some with CreateDynamic.. all works ok, but my houses and business not show the Dynamic3DTextLabel.
Where is the problem ?


Re: CreateDynamic3DTextLabel Problem - BlackWolf120 - 03.09.2011

so u are using incognitos streamer plugin to stream ur 3d texts?

//edit:

pawn Код:
native Text3D: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:distance = 100.0);
u have to increase the distance float so the 3dtext can be seen from bigger distances cause by deafault u have to be pretty close to make them visible.


Re: CreateDynamic3DTextLabel Problem - Razwan - 03.09.2011

But im close to the house/biz textdraw and not works?
Код:
hhh[h] = CreateDynamic3DTextLabel(strstr,COLOR_YELLOW,HouseInfo[h][hEntrancex],HouseInfo[h][hEntrancey],HouseInfo[h][hEntrancez],35.0);
PS. All 3dtextdraws with "CreateDynamic3DTextLabel and Create3DTextLabel" works, only that from the houses and business.


Re: CreateDynamic3DTextLabel Problem - BlackWolf120 - 03.09.2011

try this:

pawn Код:
hhh[h] = CreateDynamic3DTextLabel(strstr,COLOR_YELLOW,HouseInfo[h][hEntrancex],HouseInfo[h][hEntrancey],HouseInfo[h][hEntrancez],35.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0);
are u sure the cords are right?


Re: CreateDynamic3DTextLabel Problem - Razwan - 03.09.2011

yes, all cords are right. thanks, im gonna try what you post.


Re: CreateDynamic3DTextLabel Problem - Razwan - 03.09.2011

not works, other solutions .. ?


Re: CreateDynamic3DTextLabel Problem - [LHT]Bally - 03.09.2011

i had same problem so you need to remove the last digit in the createdynamic3dtext code and replace from there with this ,INVALID_PLAYER_ID,INVALID_VEHICLE_ID); <<-- it definatly works i use it same way


Re: CreateDynamic3DTextLabel Problem - Razwan - 03.09.2011

works only for static coords, but to house/business not work.


Re: CreateDynamic3DTextLabel Problem - [LHT]Bally - 03.09.2011

well im sorry i cant help you


Re: CreateDynamic3DTextLabel Problem - Razwan - 03.09.2011

so.. not works, only that from houses/business.
other solutions?