TextDraw - 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: TextDraw (
/showthread.php?tid=560213)
TextDraw -
nezo2001 - 27.01.2015
Hello, This is the first time to create TextDraw so i made this
PHP код:
CMD:text(playerid, params[])
{
new PlayerText:test[MAX_PLAYERS];
test[playerid] = CreatePlayerTextDraw(playerid, 240, 580, "This is test");
PlayerTextDrawShow(playerid, test[playerid]);
return 1;
}
But it didn't show anything....
Any Help ?!
Re: TextDraw -
Rabea - 27.01.2015
pawn Код:
CMD:text(playerid, params[])
{
new Text:test[MAX_PLAYERS];
test[playerid] = CreatePlayerTextDraw(playerid, 240, 580, "This is test");
PlayerTextDrawShow(playerid, test[playerid]);
return 1;
}
Re: TextDraw -
nezo2001 - 27.01.2015
It didn't work i got only 2 warnings
Re: TextDraw -
Vince - 27.01.2015
Your text is off the screen. Valid values for Y are between 0 and 480.
Re: TextDraw -
nezo2001 - 27.01.2015
lol i took it from SAMP WIKI
Re: TextDraw -
lanix - 27.01.2015
use this :
http://bsndesign.webs.com/tde.htm