How to do, 3d text? - 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: How to do, 3d text? (
/showthread.php?tid=139435)
How to do, 3d text? -
campkz - 05.04.2010
Just for instance, atm i wanna make a command called '3dtext' just for Learning Reasons.
How can i do this? (i know how to create a command just not 3d text -.-)
Re: How to do, 3d text? -
aircombat - 05.04.2010
here is an example for 3dtext for rcon admins :
Under OnPlayerSpawn :
Код:
new Text3D:label1[MAX_PLAYERS];
if(IsPlayerAdmin(playerid)) {
label1[playerid] = Create3DTextLabel("Rcon Admin",0x008080FF,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(label1[playerid], playerid, 0.0, 0.0, 0.7);
}
Re: How to do, 3d text? -
campkz - 05.04.2010
is the '0x008080FF' the color?
Re: How to do, 3d text? -
aircombat - 05.04.2010
yes
Re: How to do, 3d text? -
campkz - 05.04.2010
Is this HTML Color? or what?
Re: How to do, 3d text? -
Steven82 - 05.04.2010
http://bfxtylez.bf.funpic.de/PawnoColors.htm
Those are just some of the color's.
Re: How to do, 3d text? -
campkz - 05.04.2010
https://sampwiki.blast.hk/wiki/Hex_colours
^^ are colors anyway done now, Thanks!