SA-MP Forums Archive
How to do this ? - 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: How to do this ? (/showthread.php?tid=349907)



How to do this ? - Michael_Cruise - 10.06.2012

I want to know make that [BackDoor : /obd] Textdraw




Re: How to do this ? - RPG-Zone - 10.06.2012

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


Re: How to do this ? - Neil. - 10.06.2012

It isn't a textdraw, and make use of
PHP код:
Create3DTextLabel("Your text here",Color here,X,Y,Z,draw distanceVirtual world); 



Re: How to do this ? - Rg-Gaming.Info - 10.06.2012

This is simple 3D Text Label.
An example(taken from the wiki):
Quote:

public OnGameModeInit()
{
Create3DTextLabel("I'm at the coordinates:\n30.0, 40.0, 50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, 0);
return 1;
}

Check the whole explanation at the wiki here.