You can use rich text tags to alter the appearance and layout of your text. These tags work like HTML or XML tags but have less strict syntax. A tag looks like <tag>. Many tags operate on a scope, which you can end with </tag>. Such scopes can be nested, and you don’t have to close them […]
Category: Tutorial Advanced
The posts under “Tutorial Advanced” label show how to use EVE Master – EVE Online bot and automation tool for creating custom bots for all type of activity in EVE Online. These tutorials for advanced users. You will learn how to use UI Request language for reading any data from the game. How to use patterns and create efficient bots using Visual Scripting.
UI Request
EVE Online UI (User Interface) is a complex structure that exists from many dedicated objects, each of them is a child of another one. This is a tree oriented data structure. For getting data from the game, and make any actions or calculations you should get the right data first. For this purpose UI Request […]
Loop

Loop node provides the ability to repeat execution on dedicated nodes group multiple times. Let’s imagine a scenario where you need to jump to 6 different asteroid belts and make a bookmark on each one. In general, you should create many equals nodes in long construction like this. But with the Loop node, you can […]
EVE UI Hierarchy Viewer
When you want to customize or create your own bot, UI Hierarchy Viewer will help you a lot. App works with data from EVE Online client, that data are similar to folders and files on your PC. But just called “UI Element”, each UI Element can contain other UI Elements, this creates a hierarchical structure. […]
BOT Architecture Patterns

This post is related to people who want to make his own bots for EVE Online. I made many nodes and completed bots in EVE Master and understand important architecture patterns, which help to make canvas of nodes more readable, ease to scale and change. Linear Pattern The most simple and intuitive pattern. Execution flow […]