[Include] Easy To Create Sign (TextDraw) v1.0 By ШTACШN - 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: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (
https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] Easy To Create Sign (TextDraw) v1.0 By ШTACШN (
/showthread.php?tid=353049)
Easy To Create Sign (TextDraw) v1.0 By ШTACШN -
OTACON - 22.06.2012
Easy To Create Sign (TextDraw) v1.0
By ШTACШN

їWhat is it?:
* Is A Simple Function To Create More Signs In TextDraw Easy.
NOTE: See the Include Before Use!.
Code Funcion:
pawn Код:
TextDrawShowToLetrero(playerid, numeroid, texto[], bool:opcion); //True = Activate/ false = Deactivate
Test Example:
pawn Код:
#include <a_samp>
#include <Letrero_O>
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/Show", cmdtext, true, 10) == 0)
{
TextDrawShowToLetrero(playerid, 1, "~y~Otacon is Capo!!: ~w~Press ~r~Enter ~w~to affirm xDD.", true);
return 1;
}
if (strcmp("/Hide", cmdtext, true, 10) == 0)
{
TextDrawShowToLetrero(playerid, 1, "_", false);
return 1;
}
return 0;
}
Download:
Password:
Otacon
Credits:
<ШTACШN>
Accepted tips and Criticism , The Criticism The I use as toilet paper.
Re: Easy To Create Sign (TextDraw) v1.0 By ШTACШN -
toxiic - 22.06.2012
Nice ;]
Respuesta: Easy To Create Sign (TextDraw) v1.0 By ШTACШN -
[DOG]irinel1996 - 22.06.2012
I saw many scripts as this. And I have one in my GM, better design to say the truth.
Anyway, thank you.
Re: Easy To Create Sign (TextDraw) v1.0 By ШTACШN -
Niko_boy - 22.06.2012
nice saving some time in making message boxes
Re: Easy To Create Sign (TextDraw) v1.0 By ШTACШN -
Littlehelper - 22.06.2012
Saved my time.
Thanks.