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
Can I get your permission to include this mod in our server's modpack.
Check out this mod for programmable text panels.
https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=1847883564
The multiscreen setup works and doesn't, depending on what you are trying to do.
Could you make something for the timer blocks too so they fit in with those?
BUT
Would you take a request? I would love to have the current selection of LCDs in the game be available as programming blocks.
Other then that, this is a reskin of the Programmable Block in the vanilla version. You can do anything you can with the Programmable Block.
Like a big databank full of computers.
actually curious as to what you
can do with this. How does it
work?
the Death Star secret plans?
public Program()
{
Runtime.UpdateFrequency = UpdateFrequency.Update10; // Update every 10 ticks
// Some other code
}
Runtime.UpdateFrequency = UpdateFrequency.Update1;
You add that line to the Program section and you have a script that runs every tick.
For 10 ticks you'll add
Runtime.UpdateFrequency = UpdateFrequency.Update10;
For 100 ticks you'll add
Runtime.UpdateFrequency = UpdateFrequency.Update100;
So it's very easy to take a script that does not run by itself and force it to do so with that line of code. That's why the timer functionality in the pb block isn't needed anymore.
VERY happy to this updated and working again!