Categories
Tutorial Advanced

Rich Text

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 […]

Categories
Tutorial Advanced

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 […]

Categories
Tutorial Advanced

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 […]

Categories
Tutorial Advanced

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. […]

Categories
Tutorial Advanced

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 […]