Kaboonus scripts guide ( wiki page so do not respond in this one)

First of all, you have to load from web the script from git, using the Saderling interface:
load
after the script is loaded, you open dev environement:
dev%20tools
you make all changes ( it follows in this wiki)

select the text:
unit1

make changes unit2
check if is green
green

you save

save

and at the end of filename you add .cs

cs
next time you load the script from file:
load

Now all changes are like that:

if a value is mentionned in thousands, keep the proportion ( the value is in meters)
if a value is of order of unites , tens, or hundreds, then somewhere the script transform that in metters

var shipRangerMax = 63; // in km, you orbit arround them
var maxDistanceToRats = 120;// in km, you forget about them
var MaxDronesRange = 60000; // <-- meters
int? DistanceCelestial = 30000;

for station name:

if your station name it is NEw Amsterdam snakes eyes

string StationHomeName = "Amsterdam"; 

but if you have in:
system 1: NEw Amsterdam snakes eyes
system 2: tokyo marauders
system 3: skyscrapers from honolulu
then

string StationHomeName = "Amsterdam|tokyo|skyscrapers";

if you bot in other region than my mentioned in script, then change:

region.Add("Delve", "blood");

with

region.Add("antarctica", "dinosaurs");

-The region have to be like in game. If you are not rue, add a hostlog after

string CharName = MyOwnChar?.NameLabel?.Text.ToLower();
 Host.Log(CurrentRegion);

string CharName = MyOwnChar?.NameLabel?.Text.ToLower();
Host.Log(CharName);
BE CAREFULL: same region cannot have 2 npc faction; so if you have in delve … lets say mordus, then you change blood with mordus. The same is for drones.

faction.Add("blood", "Praetor");

for naming your mtu:

NamingMtu.Add("mychar1", "1mtu");
//your name have to be in miniscule : not "MyChaR" but "mychar"

if you are not sure, add after line an host.log:

string CharName = MyOwnChar?.NameLabel?.Text.ToLower();
 Host.Log(CharName);

to see how you have to fill the name. and again, it matters your first name , is not necessary both.
for overview tab:

string salvagingTab = "colly|fighters"; //<-- is for collidables and salvage

string rattingTab = "combat|hostiles";// <-- is for rats, but the collidables have to be there ( look on photos)

is the same principle like for stations, you have more overviews on different chars then you change.
overview photo for players
reds

overview photo for wrecks in combat tab overview
wreck

Your home station must be visible on overview, likewise the celestial objects ( to orbit arround them and set default orbit at 30km for default scripts):
over%20order over%2033
in salvage tab you have to see all wrecks ( even empty ones)

be smart, and arrange the modules like here:
modules
be smart and put the repairshop over the inventory window, to be sure it is closed ( even if is not closed there is no problem)
repairshop
and a photo with entire screen
https://imgur.com/a/e4pVyZF

**** posting your troubles ( always into a new topic):
if you have to send to Viir ( in private) your session log, then this could help you:
session .
for the rest of the world, you can take some snapshots like here
track
if is bigger (or the photo is big), then you can copy paste into your account on pastebin, delete infos like name, system, station, etc and post a link into you new topic.
remember to mention in detail:
examples
I have warped, saved the bookmark, my armor is at 50%, without any reds in system a and then pouf: look at my log how my npc killed me
or
he go on site and the he keeps saving plenty of bookmarks. look the log

or:
he start orbit around celestials and then he align without any reason : look at my log

I know is difficult, you have to take photos, copy-paste, explain etc. A script have more than 2000 lines, without any infos, your question have a high risk to not find an answer and actually posting only your error message is not enough

do not forget to put your inventory in LIST mode:
list

The folders " heavy" and “salvagers” , you have to create them in game, in window drones ( and to avoid moving alot of drones one by one, is better to let only one out of folder, to test the snippet)
setting your orbit ingame:right click on orbit like in picture
orbit

3 Likes