SA-MP Forums Archive
CreateDynamic3DTextLabel Messes Up! - 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 Messes Up! (/showthread.php?tid=563054)



CreateDynamic3DTextLabel Messes Up! - Deniz1467 - 13.02.2015

Hey there people, I have a problem with CreateDynamic3DTextLabel.

When I use this;
Код:
	CreateDynamic3DTextLabel("/DHS\nTo open your locker",COLOR_YELLOW, 1538.5901, -1678.0883, 13.5469+0.6,4.0);
It works normally, see here:

But when I change 'COLOR_YELLOW' to 'TEAM_DHS', it disappears.

Code:
Код:
	CreateDynamic3DTextLabel("/DHS\nTo open your locker",TEAM_DHS, 1538.5901, -1678.0883, 13.5469+0.6,4.0);
Here are color defines:

Код:
#define						COLOR_YELLOW						0xFFFF00AA
#define						TEAM_DHS							0x8A76ED00
I am using Incognito's Streamer Plugin v2.7.5.1. Please help me.


Re: CreateDynamic3DTextLabel Messes Up! - Maximus0 - 13.02.2015

Try this, not sure away.
#define TEAM_DHS 0x8A76EDAA


Re: CreateDynamic3DTextLabel Messes Up! - Deniz1467 - 13.02.2015

Quote:
Originally Posted by Maximus0
Посмотреть сообщение
Try this, not sure away.
#define TEAM_DHS 0x8A76EDAA
Thank you mate, working!