SA-MP Forums Archive
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=629563)



Textdraw - Loinal - 28.02.2017

How can i make 3 textdraws that echo what happen in server when 2 are full the textdraw remove and only 1 show?


Re: Textdraw - Loinal - 28.02.2017

Like that one:


Re: Textdraw - [WSF]ThA_Devil - 28.02.2017

You create 3 textdraws. The ones you don't use, set their string to: "_" which will make them invisible.


Re: Textdraw - Loinal - 28.02.2017

I know but i mean if the 3 are completed it start from beging that mean Textdraw number 2 be first and 3 be 2nd and 1 be 3rd

How?


Re: Textdraw - [WSF]ThA_Devil - 28.02.2017

Have an array like this:
new blah[3][128];

when new message appears, copy the contents from blah 2 to blah 3, from blah 1 to blah 2, and write the new message in the blah 0. Then update the textdraws.


Re: Textdraw - Loinal - 01.03.2017

I dont understand