SA-MP Forums Archive
x,y,z 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: x,y,z 3d text (/showthread.php?tid=127873)



x,y,z 3d text - gedux123775 - 15.02.2010

how to make 3d caption text command /text
bad not work:
Quote:

if (strcmp("/test", cmdtext, true) == 0)
{
new Floata,Float:ya,Float:za;
new string[128];
new name[MAX_PLAYER_NAME];
format(string, sizeof(string), "test:%i",name);
housesale = Create3DTextLabel(string,0x006400FF,xa,ya,za);
return 1;
}

ir įraљytų jį į scriptfiles


Re: x,y,z 3d text - notime - 15.02.2010

Код:
if (strcmp("/test", cmdtext, true) == 0)
{
new Float:xa,Float:ya,Float:za;
new string[128];
new name[MAX_PLAYER_NAME];
format(string, sizeof(string), "test:%i",name);
GetPlayerPos(playerid, xa, ya, za);
housesale = Create3DTextLabel(string,0x006400FF,xa,ya,za);
return 1;
}



Re: x,y,z 3d text - gedux123775 - 15.02.2010

and entered it into the scriptfiles


Re: x,y,z 3d text - gedux123775 - 15.02.2010

help