textdraw don't work - 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 don't work (
/showthread.php?tid=343428)
textdraw don't work -
TuTh - 17.05.2012
hi! i had made a textdraw but doesn't work

?
Код:
new Text:tutorial;
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, tutorial);
public OnGameModeInit()
{
// TextDraw for Tutorial
tutorial = TextDrawCreate(547 ,452 , "begamer");
TextDrawFont(tutorial , 0);
TextDrawLetterSize(tutorial , 0.5, 3.5);
TextDrawColor(tutorial , 0xaeff00FF);
TextDrawSetOutline(tutorial , true);
TextDrawSetProportional(tutorial , true);
TextDrawSetShadow(tutorial , 1);
Re: textdraw don't work -
JAMMIEISFTW - 17.05.2012
I hate bad grammar.
its doesn't not don't work...
Re: textdraw don't work -
HaZaRaS™ - 17.05.2012
Try to use this one !
pawn Код:
public OnGameModeInit()
{
// TextDraw for Tutorial
tutorial = TextDrawCreate(547.000000 ,452.000000 , "begamer");
TextDrawFont(tutorial , 0);
TextDrawLetterSize(tutorial , 0.500000, 3.500000);
TextDrawColor(tutorial , 0xaeff00FF);
TextDrawSetOutline(tutorial , true);
TextDrawSetProportional(tutorial , true);
TextDrawSetShadow(tutorial , 1);
return 1;
}
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, tutorial);
return 1;
}
Re: textdraw don't work -
TuTh - 17.05.2012
doesnt work
Re: textdraw don't work -
HaZaRaS™ - 17.05.2012
Quote:
Originally Posted by TuTh
doesnt work
|
was your script compiled with out any erros ? If any error so post it here and impossible ":
Re: textdraw don't work -
TuTh - 17.05.2012
no errors
Re: textdraw don't work -
HaZaRaS™ - 17.05.2012
make sure that you have named this filterscript in your "server.cfg" and then i dont think there might be any thing which we have missed up and we have forworded to show this textdraw on player conect :