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=414894)
textdraw -
cluckintucker - 10.02.2013
hi how do you make text draws like ngrp when you login sorta like this
http://www.******.com/imgres?q=next+...1&tx=133&ty=89
Re: textdraw -
|Xenon|Mapper| - 10.02.2013
Well, first.. Learn to script.
Quote:
// Tutorial (Title Box)
TutTxtdraw[0] = TextDrawCreate(167.000000, 121.000000, "Title Box");
TextDrawBackgroundColor(TutTxtdraw[0], 0);
TextDrawFont(TutTxtdraw[0], 2);
TextDrawLetterSize(TutTxtdraw[0], 0.139999, 0.899999);
TextDrawColor(TutTxtdraw[0], 0);
TextDrawSetOutline(TutTxtdraw[0], 0);
TextDrawSetProportional(TutTxtdraw[0], 1);
TextDrawSetShadow(TutTxtdraw[0], 1);
TextDrawUseBox(TutTxtdraw[0], 1);
TextDrawBoxColor(TutTxtdraw[0], 6730751);
TextDrawTextSize(TutTxtdraw[0], 468.000000, 30.000000);
|
That's the text Draw, they use. I think.
Re: textdraw -
|Xenon|Mapper| - 10.02.2013
Oh, forgot this.
Quote:
// Tutorial (Next Page)
TutTxtdraw[114] = TextDrawCreate(427.000000, 120.000000, "Type ~r~/next");
TextDrawBackgroundColor(TutTxtdraw[114], 255);
TextDrawFont(TutTxtdraw[114], 2);
TextDrawLetterSize(TutTxtdraw[114], 0.159998, 0.899999);
TextDrawColor(TutTxtdraw[114], -1);
TextDrawSetOutline(TutTxtdraw[114], 1);
TextDrawSetProportional(TutTxtdraw[114], 1);
textdrawscount++;
|
That's that, then your do what you want then.
Re: textdraw -
cluckintucker - 10.02.2013
well first read my question carefully and i was just wondering how
Re: textdraw -
|Xenon|Mapper| - 10.02.2013
Well, still Textdraw are really easy to do. There are your first two done for you.