Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Especially if it could trigger automatically on certain events.
Yes
Maybe
Looking into it, though you know you likely dont need one block per LCD. The same script could be commanded to update diffrent data displays with diffrent commands.
Generaly speaking I dont modify other peoples work (mostly because reading it can often be a mind bending experiance), especialy if it still works as is.
Setup:
1: You need to stop the scrolling of the LCD using this text in the name: !NOSCROLL
2: If you have more than one screen you need two timer blocks to run a script.
3: First you need to set up the first timer to scroll up the Text using the text below:
scrollUp {name of LCD} 17
There are 17 lines on a full block LCD screen so setting it to 17 will scroll one page up or down.
4: You will need to run the LCD programmable block with the LCD script with the line above.
When you select RUN it will open a sub-window with a text box where you input the text.
5: do that for every LCD Screen to scroll up
6: Repeat the process but rather than scrollUp have scrollDown instead on the second timer.
7: So now you have one timer to scroll up and one to scroll down.
All you need to do is link the timer blocks to your cockpit and it should scroll pages however it's still not the best way as it is a pain for several reasons I will get into that in a sec.
Pros:
1: Scrolling more than one LCD Screen at a time.
2: Only requires two extra blocks there for saves space.
Cons:
1: Screens take a few seconds to update which could be a problem in a battle.
2: You have to use the Echo command to add empty space to fill pages which is a lot of work.
Each line used by one command on the page will still count as a line so if you have something that takes up 16 lines you need one echo before you add your next page.
3: The custom data is long and hard to find things that may need to be updated as you are using one data table.
Like I said its a workaround I think it would be better to use a script to update custom data even though it may not be able to do all the screen at a time or maybe it can with timers it will depend on how you set it up in game.
Thanks for your replays so far.