Skip to content
Permalink
main
Switch branches/tags
Go to file
…-59-025605.zip

Adapt parsing info panels to the scenario shared by Breazy at https://forum.botlab.org/t/error-with-anom-bot/4195

Here is the summary of the findings from session-2021-10-26T06-47-59-025605.zip

I extracted the memory reading from your game client in bot step 107, using the standard export function in devtools.
That memory reading showed that your setup differs from others that went into generating the bot you used.
The novelty is how your setup represents the info panel container. While others used only one node with the type `InfoPanelContainer`, yours used two such nodes, at least in step 107.
One of these two seems to work as well as with previously seen setups, but so far, there was no ranking in place to select the better one if there are more than one.
The new bot program generated for your scenario adds a ranking to select the more populous node in such a case.
1 contributor

Users who have contributed to this file

Loading

EVE Online Warp-To-0 Autopilot Bot

When playing EVE Online, you might spend significant time traveling between solar systems. This activity is so common that there is even an in-game autopilot to automate this process. But that autopilot has a critical flaw: It is quite inefficient and will cause long travel times. You can travel faster by manually commanding your ship.

Fortunately, this process can be automated using a bot. The bot we are using here follows the route set in the in-game autopilot and uses the context menu to initiate warp and dock commands.

Starting the Autopilot Bot

To start the bot, download the script from https://catalog.botlab.org/57cf0202e69b6fe2b71b0cf31c02015632318001ab0f6c8f34b8bdb7ba8febae and then run it.

In case the BotLab client program is not yet installed on your system, the script will redirect you to the installation guide at https://to.botlab.org/guide/how-to-install-the-botlab-client-and-register-the-botlab-command

After completing the installation, run the script again to start the bot.

The bot needs a few seconds to start and find the EVE Online client process. It also shows status messages to inform what it is doing at the moment and when the startup is complete.

EVE Online Warp-To-0 Autopilot Starting

When the startup sequence has completed, the bot might display this message:

I see no route in the info panel. I will start when a route is set.

We need to set the destination in the in-game autopilot so that the route is visible in the Route info panel. But we do not start the in-game autopilot because it would interfere with our bot. Also, this bot does not undock, so we need to undock our ship manually for the bot to start piloting. As long as the ship is docked, the bot displays the following message:

I cannot see if the ship is warping or jumping. I wait for the ship UI to appear on the screen.

As soon as we undock, the bot will start to send mouse clicks to the game client to initiate warp and jump maneuvers.

The bot only works when the UI language is set to English. The bot reads the text in menu entries to decide where to click, and it only knows the English translations.

Alright, I think that is all there is to know about the basic autopilot bot. If you have questions about this bot or are searching for other bots, don't hesitate to ask on the BotLab forum.