Intro - 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: Intro (
/showthread.php?tid=121297)
Intro -
shoru93 - 16.01.2010
How to make frames like this?
Re: Intro -
armyoftwo - 16.01.2010
you can do it with textdraw boxes
Re: Intro -
shoru93 - 16.01.2010
How exactely?
Re: Intro -
MadeMan - 16.01.2010
pawn Код:
new Text:UpperFrame = TextDrawCreate(0.00, 0.00, " ~n~ ~n~ ~n~ ~n~ ~n~ ~n~ ");
TextDrawUseBox(UpperFrame, 1);
TextDrawBoxColor(UpperFrame, 0x000000FF);
new Text:LowerFrame = TextDrawCreate(0.00, 390.00, " ~n~ ~n~ ~n~ ~n~ ~n~ ~n~ ");
TextDrawUseBox(LowerFrame, 1);
TextDrawBoxColor(LowerFrame, 0x000000FF);
Re: Intro -
shoru93 - 17.01.2010
new Text:UpperFrame = TextDrawCreate(0.00, 0.00, " ~n~ ");
TextDrawUseBox(UpperFrame, 1);
TextDrawBoxColor(UpperFrame, 0x000000FF);
new Text:LowerFrame = TextDrawCreate(0.00, 390.00, " ~n~ ~n~ ~n~ ~n~ ~n~ ~n~ ");
TextDrawUseBox(LowerFrame, 1);
TextDrawBoxColor(LowerFrame, 0x000000FF);
When compile it, says send/dont send error
Re: Intro -
shoru93 - 17.01.2010
?