Honestly I do not know how to react at this " put them together"
to jump from nothing at "put together " a script for salvage is too much for you.
better start a little lesson from here, with something more easy:
a general lesson:
a script ( or any program) need variables, and methods to do something.
for example:
you declare a variable:
var hello =" hello AgentGG";
after that you tell to sanderling like that: while this is true, print variable hello
in language is like that:
while ( true)
{
Host.log(hello );
}
and to avoid spaming with hello, you put an delay:
Host.Delay(4000);
so all will be:
var hello =" hello AgentGG";
while ( true)
{
Host.log(hello);
Host.Delay(4000);
}
and if you want to change what you print, for example “Hello kaboonus” you can do like that:
- you change the variable hello like that:
var hello = “Hello kaboonus”;
and in the rest sanderling know what to do ( after you stop him, make the changes and start him fromF5)
print directly
Host.log( “Hello kaboonus”);
Now, this was a basic from basic example.
going back to scripts, these are more complex. after you learn a little on travel script, take my marvel script, look on his structure, how i declared variables, what logic I follow, and you modify him to your needs