SA-MP Forums Archive
Create3DTextLabel help please... - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Create3DTextLabel help please... (/showthread.php?tid=116479)



Create3DTextLabel help please... - introzen - 29.12.2009

I need some help...

I got this:

pawn Код:
#define House1 -604.5995,2716.6575,72.7231
Create3DTextLabel("ID: 1",COLOR_LIGHTBLUE,House1,10.0,0);
But it won't show a 3d label at the cordinates for House1...

Can anyone help me please?


Re: Create3DTextLabel help please... - [HiC]TheKiller - 29.12.2009

You need to split up the X, Y, And Z of the house Co-ordonates.
pawn Код:
#define House1X -604.5995
#define House1Y 2716.6575
#define House1Z 72.7231
Create3DTextLabel("ID: 1",COLOR_LIGHTBLUE,House1X, House1Y, House1Z,10.0,0);
Your one would have given errors.


Re: Create3DTextLabel help please... - introzen - 29.12.2009

Mine didn't give errors and your didn't work... =/