SA-MP Forums Archive
---------------HELP-------------- - 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: ---------------HELP-------------- (/showthread.php?tid=83522)



---------------HELP-------------- - Joe2009 - 25.06.2009

//On top of script:
Код:
new Text:Textdraw0;
Код:
//In OnGameModeInit or any other place, we procced to create our textdraw:
Textdraw0 = TextDrawCreate(90.000000,433.000000,"ESTONIAN RPG "2009"");
TextDrawAlignment(Textdraw0,2);
TextDrawBackgroundColor(Textdraw0,0x0000ff33);
TextDrawFont(Textdraw0,2);
TextDrawLetterSize(Textdraw0,0.299999,0.699999);
TextDrawColor(Textdraw0,0x00ffff99);
TextDrawSetOutline(Textdraw0,1);
TextDrawSetProportional(Textdraw0,1);
TextDrawSetShadow(Textdraw0,4);
If I But That in my gamemode pwn file i get error plz help


Re: ---------------HELP-------------- - zallomallo - 25.06.2009

(90.000000,433.000000,"ESTONIAN RPG "2009"");

should be

(90.000000,433.000000,"ESTONIAN RPG 2009");


Re: ---------------HELP-------------- - StrickenKid - 25.06.2009

this is the same as http://forum.sa-mp.com/index.php?topic=108321.0
you should not make double posts.


Re: ---------------HELP-------------- - shady91 - 25.06.2009

why make 2 topics about this? one is enough.


Re: ---------------HELP-------------- - radi - 25.06.2009

if your are a new scripter
you can use a easy way to make it
like this one
CLICK


Re: ---------------HELP-------------- - BMUK - 25.06.2009

You can also backslash before the " to show them as he wanted

pawn Код:
Textdraw0 = TextDrawCreate(90.000000,433.000000,"ESTONIAN RPG \"2009\"");