SA-MP Forums Archive
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: 3D Text (/showthread.php?tid=145870)



3D Text - MaTrIx4057 - 04.05.2010

Ive tried to create timer which creates 3d text labels with +1 z coordinates, but it only creates one 3d label and nothing else. What could be wrong? Here is the code

Код:
new Text3D:Ad;
forward PTMAD();
public PTMAD()
{
     Ad = Create3DTextLabel("ptm.ubercrue.com",0x871C30FF,-1985.1876,261.8300,35.1719+1,100000000000.0,0,0);
     Update3DTextLabelText(Ad,0x871C30FF,"ptm.ubercrue.com");
     //Delete3DTextLabel(Ad);
	 return 1;
}

COMMAND:ad(playerid, params[])
{
    SetTimer("PTMAD",1000,true);
	return true;
}
EDIT:SOLVED lock this.