Quantcast
Channel: Programming (In-game)
Viewing all articles
Browse latest Browse all 903

Frist codethingy

$
0
0
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.

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";...
Frist codethingy

Viewing all articles
Browse latest Browse all 903

Trending Articles