Singleplayer TextDraws - 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: Singleplayer TextDraws (
/showthread.php?tid=156612)
Singleplayer TextDraws -
Ironboy500 - 23.06.2010
Hello. I am looking for singleplayer textdraws such as black box in missions. Anyone got any ideas?
Re: Singleplayer TextDraws -
Sergei - 23.06.2010
Use textdraw creator and make one yourself.
Re: Singleplayer TextDraws -
Ironboy500 - 23.06.2010
Tried, but not good as SA got.
Re: Singleplayer TextDraws -
Jeffry - 23.06.2010
TextDrawUseBox
I think you want the little message boxes of MM.
At TOP: new Text:Message;
Message = TextDrawCreate(20, 185.0, "Reach the laboratory and place the bombs!"); // 20, 185: The place at screen
TextDrawTextSize(Message, 140.000000, 110.000000);
TextDrawAlignment(Message, 0);
TextDrawFont(Message, 1);
TextDrawLetterSize(Message, 0.4, 1.2); // This is 1x3
TextDrawUseBox(Message, 1);
TextDrawBoxColor(Message, 0x000000FF);
TextDrawColor(Message, 0xFFFFFFFF);
TextDrawSetOutline(Message, 1);
TextDrawSetProportional(Message, 1);
TextDrawSetShadow(Message, 1);
Where you want it to show: TextDrawShowForPlayer(playerid, Message);
This is what you wanted eh?
Jeffry
Re: Singleplayer TextDraws -
Ironboy500 - 23.06.2010
Already got that Jeffry :P
Just want to make my system more professional.
Re: Singleplayer TextDraws -
Jeffry - 23.06.2010
So these are the black boxes. or you ment something else?
Re: Singleplayer TextDraws -
Ironboy500 - 24.06.2010
Yeh, anyway thanks.