Page 1 of 1

sombe basics

Posted: Sun Oct 02, 2011 12:26 am
by spawni
some basic questions - answers not found in board....

I searched arround a bit and didn“t found answer:

- how to activate log / debug?
- how to start a script from a specific waypoint
(for example: if i want to try a special part of the script without going through all of it from the start)
- shotcuts and basic function-keys while runnig the bot (pause, stop....)

Hope you can send me a link to manual - so i can read how to :geek:

thx
spawni

Re: sombe basics

Posted: Sun Oct 02, 2011 12:54 am
by spawni
:oops: maual on top of the board :oops:

But - no hint for my questions...

Re: sombe basics

Posted: Sun Oct 02, 2011 3:50 am
by rock5
If you follow your 'bot' command with 'debug' it should enable pretty much all the debug options eg.

Code: Select all

rom/bot path:waypointfilename debug
If you want to start a waypoint file from where you are standing, it should already automatically start from the nearest waypoint. If you still have trouble starting from the correct waypoint you will have to add this to the waypoint file onload section.

Code: Select all

__WPL:setWaypointIndex(num)
Where 'num' is the waypoint number.

Waypoint file functions can be found here
http://www.solarstrike.net/wiki/index.p ... _Functions

Basically the default controls for running scripts are
  • END - Pauses the script
    DELETE - Resumes the script.
    CTRL_L - Stops script execution.

Re: sombe basics

Posted: Sun Oct 02, 2011 6:14 am
by spawni
thank you very much