SA-MP Forums Archive
3d Labels - 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: 3d Labels (/showthread.php?tid=262084)



3d Labels - Anzhelov - 16.06.2011

Is there a pawno command for adding 3D Label (not IG, in the script), I would like to add 3d Label on special place, using it's co-ordiantes, but I don't know if it's possible.


Re: 3d Labels - Gazmull - 16.06.2011

pawn Код:
Create3DTextLabel("text", color, x, y, z, 10.0, 0, 1)
Usage
pawn Код:
Create3DTextLabel(text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, virtualworld, testLOS=0);
use /save to save your current position(useful for adding spawns,creating labels, etc.)


Re: 3d Labels - Basicz - 16.06.2011

pawn Код:
// Top of script

new Text3D: Anzhelov3D;

// OnGameModeInit
Anzhelov3D = Create3DTextLabel( "Anzhelov", 0xFFFFFFFF, 0.0, 0.0, 0.0, 10.0, -1, 0 );
Use " /rs " in game to save the position, " /save " will save the position with using "AddPlayerClass" format...


Re: 3d Labels - Iphone1234g - 16.06.2011

can any one tell me how to add the pwn code in CODE!