SA-MP Forums Archive
[Question] Making LED Board - 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: [Question] Making LED Board (/showthread.php?tid=584166)



[Question] Making LED Board - javad - 02.08.2015

Hello,
How can i make something like the boards in picture? They are movable.





AW: [Question] Making LED Board - Kaliber - 02.08.2015

A Timer & https://sampwiki.blast.hk/wiki/SetObjectMaterialText_DE


Re: [Question] Making LED Board - Abagail - 02.08.2015

SetObjectMaterialText along with the moving objects(there are a few, not sure of their ID's). Additionally, you can use a static object along with MoveObject to make the object manually move.


AW: Re: [Question] Making LED Board - Kaliber - 02.08.2015

Quote:
Originally Posted by Abagail
Посмотреть сообщение
SetObjectMaterialText along with the moving objects(there are a few, not sure of their ID's). Additionally, you can use a static object along with MoveObject to make the object manually move.
I think only the text is moving...not the object


Re: [Question] Making LED Board - javad - 02.08.2015

I know how to make the Text and Move it but how it's only showen in the board?

Yes kaliber,only Text is moving.
What language is this?
https://sampwiki.blast.hk/wiki/SetObjectMaterialText_DE
Can't understand.


AW: Re: [Question] Making LED Board - Kaliber - 02.08.2015

Quote:
Originally Posted by javad
Посмотреть сообщение
Can't understand.
Hahaha, sry: https://sampwiki.blast.hk/wiki/SetObjectMaterialText

_DE = GERMAN


Re: AW: Re: [Question] Making LED Board - javad - 02.08.2015

Quote:
Originally Posted by Kaliber
Посмотреть сообщение
Thanks.
Reading...


Re: [Question] Making LED Board - javad - 02.08.2015

I used SetObjectMaterialText but i want to move the text(material).
How?


AW: [Question] Making LED Board - Kaliber - 02.08.2015

Well, as i wrote with a timer...

PHP код:
new text[] = "Hello...get out! ";
//Then with a timer you shuffle the array
new c[2];
c[0] = text[0];
strdel(text,0,1),strins(text,c,strlen(text));
SetObjectMaterialText(...); 



Re: [Question] Making LED Board - javad - 02.08.2015

Can you explain it please?