Is there a full list or documentation anywhere of the codes that can be used within an LCD screen? I've seen in game the tooltip that covers the basics (<b>, <i>, <color> etc) all of which make sense and I've used pretty much all of them combined with EmpyrionScriptingMod. Today I spotted in https://empyriononline.com/threads/what-did-you-do-in-empyrion-today.2826/page-1060#post-400536 an awesome looking projector by @Atomino that uses additonal tags that (unless I'm blind) I can't see documented anywhere, such as "<pos>". Possibly this is something added in A12 but having checked, I can't see it in the help file within the screen itself or used in any of the example screens in the default blueprints / prebuilt structures in creative. So the question is, is "<pos>" the only *new* tag that doesn't appear in the documentation, or are there others that anyone has found, and are there any plans to update the help files to include any missing tags? I'll try to keep this thread as a comprehensive list as/when any more options are discovered: <b> - bold <u> - underline <i> - italic <sub> - subscript <sup> - superscript <cspace> - character spacing <line-height> - vertical spacing between lines (whole screen) <size> - font size <color> - font colour, named or hex, supports alpha <indent> - pixel or %, absolute horizontal positioning <pos> - ?? possibly the same as <indent> I may be missing some already documented above until I can check in game so will update later
Thank you very much! Definitely some interesting looking options in there if they work, should be interesting to have a play with later
Working off the documentation that @ravien_ff so kindly dug up, I've tested through the list and most do work though not all are useful - uppercase,lowercase,noparse etc. The most useful ones I've found are: <mark> - highlighting text Code: This is some <mark=#AAFF0040>Highlighted</mark> text <voffset> - vertical alignment/text positioning, but doesnt allow overlap like <indent> does Code: ----------------- This is <voffset=5>one</voffset> line <voffset=-10>of</voffset> text ----------------- <line-indent> vs <indent> Code: <line-indent=15%>This is the first line of this text example. This is the second line of the same text.</line-indent> <indent=15%>This is the first line of this text example. This is the second line of the same text.</indent> <margin> - only left and right, no top/bottom margin Code: <margin=10>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis eleifend fringilla blandit. Curabitur pharetra eget sapien non bibendum. In malesuada blandit facilisis. Nulla interdum dui arcu.</margin> <sprite> - the spites selected from the popup menu can have a tint/color applied to them!! Code: Default: <size=12><sprite=56></size> Green: <size=12><sprite=56 color=#00FF00></size> Yellow: <size=12><sprite=56 color=#FFFF0020></size> Clear: <size=12><sprite=56 color=#FFFFFF10></size> Default: <size=12><sprite name="Engineering_Bar"></size> Red: <size=12><sprite name="Engineering_Bar" color=#AA222260></size>
You can do it using LCDs and Signal Logic Here, try the BP I posted in this other thread https://empyriononline.com/threads/signal-logic-confusion.98794/