Eenas

From World of Dread Database
Jump to: navigation, search

What is Eenas?

This program is one of the best macroing assistance for Ultima On-line. With Eenas we have not need to have the screen or the mouse quiet to use it, we can leave our character with a macro while we do other things with our computer.

Graphic Interface

Here we are going to explain how it works the Eenas graphic interface.

Entrenador wod cliente nuevo eenas.jpg

On the upper part we can see te coordinates X and Y of the screen position, they will change when we move the mouse.

The grey box, are the action buttons, they are used to clean the text, start, stop, save and open a macro.

The central box indicates the text of the macro that will execute.


To open the macroing programs, right click the W icon near to the system date and then choose "Open Macroing Programs"

Abrir programa de macreo.jpg

We can choose bewteen UOLoop, Entrenador and Eenas, we left click on Eenas and then we will have it ready to use.

Syntax and Commands

TXT

This command is used to send a text to Ultima On-line.

Example:

TXT Hello World

KEY

This command is used to execute a key in Ultima On-line.

Example:

KEY [F12]

LC

Sends a left click to Ultima On-line on the position you want, that you can catch with the X and Y box.

Example:

LC 300 500

DLC

Sends double click left to Ultima On-line on the position you want, that you can catch with the X and Y box.

Example:

DLC 300 500

RC

Sends a right click to Ultima On-line on the position you want, that you can catch with the X and Y box.

Example:

RC 300 500

DRC

Sends a double right click to Ultima On-line on the position you want, that you can catch with the X and Y box.

Example:

DRC 300 500

WAIT

Sends a wait in miliseconds. (1 sec = 1000 ms)

Example:

WAIT 2500


DRAGDROP

Gets an item from the indicated coordinates and drops it on the indicated coordinates.

Note: You have to use the command TXT to especificate the amount you want to get.

Example:

DRAG 640 780

TXT 200

DROP 320 450


If you want to pick all the items, you have to put:


DRAG 640 780

TXT 65535

DROP 320 450

TERMINATE

Closes Eenas.

Example:

TERMINATE

STOP

Stops the macro that is executing.

Example:

STOP

WALK

Walks to the indicated direction. (NW, NE, SE, SW)

Example:

WALK NW

WALK SE

CLOSEUO

Closes Ultima On-Line

Example:

CLOSEUO

REPEAT/END REPEAT

Starts a repeat of the code, what you put between REPEAT and END REPEAT it will repeat the indicated times.

Example:

REPEAT 10

<instructions>

END REPEAT