Separate names with a comma.
Just saw this but on my way to sleep. The save game script runs on all grids and looks for an LCD called DaveSortLcd (can't look to confirm the...
I have been struggling with this for 2 days now, turns out I made one typo! the lcd screen that i use to turn the script on and off... the one i...
Since my last post looks like a wall of text and mistyping due to how tired i was. Here is the question:...
I put my old script into a file called daves.cs in the correct folder. I then named a lcd daves The lcd got the following error in its text...
I havent had the time to re-learn how to setup the developer environment yet, the github for this mod is a wall of text that will take me some...
This is going to sound odd, please bear with me. This is a script I wrote and shared last year, me and a mate have just come back to empyrion and...
I dont know if this will help but when sorting out my script I found Ids seemed to simplify the response, so for example instead of returning...
Very Tired but here is my now working script (its a savegame script): var infoOutLcds = CsRoot.GetDevices<ILcd>(CsRoot.Devices(E.S,...
At work so I can not load up the game at mo but will take a look at that later, thank you. I am using the EmpyrionScripting.Examples.csproj on my...
Here is the question I just asked on the github repo, it may get a response here lol and describes better what I am trying to suss out: Looking...
For HBS it seems to be @root.Ids.*listName* https://github.com/GitHub-TC/EmpyrionScripting#predefined-id-lists The github is very unhelpful when...
Hi, I currently have this as my sorting script: var infoOutLcds = CsRoot.GetDevices<ILcd>(CsRoot.Devices(E.S, "DaveSort")); if (infoOutLcds.Length...
For some reason it didnt show me this post originally, will read through it properly once at work/ Just wanted to thank you for the help and...
Ok current sorting script: var infoOutLcds = CsRoot.GetDevices<ILcd>(CsRoot.Devices(E.S, "DaveSort")); if...
These two checks? if (!(rootObject is IScriptSaveGameRootData root)) return; if (root.E.Faction.Id == 0) return; I get what the second is...