Just felt like sharing this, as this took two weeks of reading C# for complete middle aged morons and reading and rereading and googling yalls scripts to work out how to get something onto the lcd screen.
Frist codethingy
Code:
const string lcdpanel = "lcd";
IMyTextPanel output;
List<IMyTerminalBlock> panels = new List<IMyTerminalBlock>();
void Main()
{
{
if(output==null)
output=GridTerminalSystem.GetBlockWithName(lcdpanel) as IMyTextPanel;
}
string publictextstring = "Bacon";...