Difference between revisions of "Entrenador WoD"

From World of Dread Database
Jump to: navigation, search
(Sintaxis y Comandos)
(Syntax and Commands)
 
(12 intermediate revisions by one user not shown)
Line 1: Line 1:
== ¿De dónde me bajo el Entrenador WoD? ==
+
== Graphic Interface ==
  
Puedes bajarlo pulsando este enlace, una vez bajado lo instalas y listo:
+
[[Image:Entrenador_wod_cliente_nuevo2.jpg]]
  
1. [http://www.uowod.com/Download/Entrenador.rar Entrenador WoD]
+
The "Open" button allows us to access to our Entrenador macros we have saved in our computer and open them.
  
== Interfaz Gráfica ==
+
The "Save" button allows us to save the macro we have done in the "Script" field.
  
=== Cliente Antiguo ===
+
The "Start" button runs the macro we have in the "Script" field.
  
[[Imagen:entrewod.jpg]]
+
The "Script" field is used to create the macro we want to use in the game.
  
En el recuadro rojo nos indica el menu del programa, donde podemos abrir, guardar nuestra macro y alguna información sobre el programa.
+
The box "Mouse" allows us to know in each moment wich are the coordinates that our mouse points in the game window.
  
En el recuadro verde nos indica si el cliente de ultima online está en ejecución o no esta abierto.
+
The box "Executing:" allows us to know what is the function state of our macro and if is running, wich line is executing in every moment.
  
En el recuadro morado nos indica la linea del script (macro) que se esta ejecutando en ese momento.
 
  
El recuadro negro es el botón de Iniciar o Parar la script (macro).
+
To execute the macroing program Entrenador, right click over the World of Dread icon next to the clock on the taskbar and then  choose "Open macroing program"
  
Por ultimo, el recuadro amarillo es el campo de texto donde escribiremos nuestra script (macro).
+
[[Image:Abrir_programa_de_macreo.jpg]]
  
=== Cliente Nuevo ===
 
  
[[Imagen:Entrenador_cliente_nuevo.jpg]]
+
We can choose UOLoop, Entrenador and Eenas, we click over Entrenador and we will have it ready to use.
  
 
+
== Syntax and Commands ==
El botón "Abrir" nos permitirá acceder a las macros de entrenador que tengamos guardadas en nuestro ordenador y abrirlas.
+
 
+
El botón "Guardar" nos permitirá guardar la macro que tengamos hecha en el cuadro "Script" de abajo.
+
 
+
El botón "Iniciar" ejecutará la macro que tengamos en el recuadro "Script"
+
 
+
El recuadro "Script" sirve para confeccionar a nuestro gusto la macro que queramos utilizar en el juego.
+
 
+
El recuadro "Ratón" nos permitirá saber en todo momento cuales son las coordenadas que señalan el cursor de nuestro ratón en la ventana del juego.
+
 
+
El recuadro "Ejecutando:" nos permitirá saber cual es el estado de funcionamiento de la macro y si está en marcha, que línea se está ejecutando en cada momento.
+
 
+
== Sintaxis y Comandos ==
+
  
  
Line 44: Line 29:
 
<tr>
 
<tr>
 
<th width='80' align="center">Clicks</th>
 
<th width='80' align="center">Clicks</th>
<td cellpadding="5">Para hacer clicks en la pantalla del ultima online podremos utilizar estos comandos:
+
<td cellpadding="5">To do click in the Ultima On-line screen we can use this commands:
 +
 
 +
lclick  x y (Left Click)
 +
rclick  x y (Right Click)
 +
dlclick x y (Double Left Click)
 +
drclick x y (Double Right Click)
  
lclick  x y (Click izquierdo)
+
X and Y are the coordinates of the gameplay screen.
rclick  x y (Click derecho)
+
We can obtain them from the "Mouse" box.
dlclick x y (Doble Click izquierdo)
+
drclick x y (Doble Click derecho)
+
  
En este caso, X e Y son los valores de la localización que queremos.
 
Los podemos obtener de la ventana principal del programa, son los
 
números que cambian al mover el ratón (están en orden, X Y ).
 
  
Ejemplo:
+
Example:
  
 
<center>dlclick 400 600</center>
 
<center>dlclick 400 600</center>
Line 63: Line 48:
 
<tr>
 
<tr>
 
<th width='80' align="center">DragDrop</th>
 
<th width='80' align="center">DragDrop</th>
<td>Con esta función permite arrastrar "i" items de una posición a otra. Para realizar esto hay que poner:
+
<td>With this command we can drag "i" items from one location to other. To do this we have to put:
  
 
dragdrop i items from x0 y0 to xf yf
 
dragdrop i items from x0 y0 to xf yf
  
Ejemplos:
+
Examples:
  
 
<center>dragdrop 1 items from 410 700 to 425 460
 
<center>dragdrop 1 items from 410 700 to 425 460
Line 76: Line 61:
 
<tr>
 
<tr>
 
<th width='80' align="center">Key</th>
 
<th width='80' align="center">Key</th>
<td>Con esta función podremos ejecutar una tecla desde el script (macro) al cliente de ultima online. Para ello utilizaremos lo siguiente:
+
<td>With this command we can execute a key with the script (macro) to the Ultima On-line client. To do this we have to put:
  
 
key X
 
key X
  
"x" puede ser cualquier tecla normal del teclado, es decir, una letra,
+
"x" can be any key from our keyboard, like numbers, "F" keys (F1, F2, F3, ...), etc.
o una "F" (F1, F2... F10, F11, F12).
+
  
Ejemplos:
+
Examples:
 
<center>
 
<center>
 
key F1
 
key F1
Line 95: Line 79:
 
<tr>
 
<tr>
 
<th width='80' align="center">Text</th>
 
<th width='80' align="center">Text</th>
<td>Hace "hablar" al personaje, diciendo la frase contenida en "X". Para ello tenemos que poner lo siguiente:
+
<td>Makes your charactet "speak", saying the phrase you put in "X". To do this we have to put:
  
 
text X
 
text X
  
Ejemplos:
+
Examples:
 
<center>
 
<center>
text Hola a todos
+
text Hello everybody!
  
 
text buy
 
text buy
Line 110: Line 94:
 
<tr>
 
<tr>
 
<th width='80' align="center">Repeat</th>
 
<th width='80' align="center">Repeat</th>
<td>Repite los comandos "(...)" que hay entre ambas instrucciones "i" veces.
+
<td>Repeats the commands "(...)" that are between each instructions "i" times. It is permmited to use many repeats, one inside each other.  
Se permite el uso de varios repeats, unos dentro de otros.
+
 
  
 
repeat i
 
repeat i
Line 117: Line 101:
 
end repeat
 
end repeat
  
Ejemplos:
+
Examples:
 
<center>
 
<center>
(Esto dirá "Hola." 2 veces)
+
(This will say "Hello" 2 times)
  
 
repeat 2
 
repeat 2
  
text Hola.
+
text Hello
  
 
end repeat
 
end repeat
 
</center>
 
</center>
 
<center>
 
<center>
(Esto dirá "Hola." 2x2 veces, es decir, 4 veces).
+
(This will say "Hello" 2x2 times, that is, 4 times)
  
 
repeat 2
 
repeat 2
Line 134: Line 118:
 
repeat 2
 
repeat 2
  
text Hola.
+
text Hello
  
 
end repeat
 
end repeat
Line 145: Line 129:
 
<tr>
 
<tr>
 
<th width='80' align="center">Loop</th>
 
<th width='80' align="center">Loop</th>
<td>Se usa sin parámetros, reinicia el script desde el principio.
+
<td>It is used without parameters, reiniciates the script from the beggining.
  
Ejemplo:
+
Example:
 
<center>
 
<center>
(Esto dirá "Hola." sin parar.)
+
(This will say "Hello" without stopping)
  
text Hola.
+
text Hello
  
 
loop
 
loop
Line 160: Line 144:
 
<tr>
 
<tr>
 
<th width='80' align="center">Wait</th>
 
<th width='80' align="center">Wait</th>
<td>Con esta función ejecutaremos una espera de X MILISEGUNDOS a esperar.
+
<td>With this command we will execute a wait of X MILISECONDS.
  
Ejemplo:
+
Example:
 
<center>
 
<center>
(Hace esperar 1 segundo).
+
(Makes a 1 second wait)
  
 
wait 1000
 
wait 1000
  
(Hace esperar 2,5 segundos).
+
(Makes a 2,5 seconds wait)
  
 
wait 2500
 
wait 2500
Line 177: Line 161:
 
<tr>
 
<tr>
 
<th width='80' align="center">Walk</th>
 
<th width='80' align="center">Walk</th>
<td>Sirve para poder andar en el juego. Se utiliza así:
+
<td>This command is used to walk in the game. Is used like this:
  
 
walk XX
 
walk XX
  
Donde XX es una de las siguientes opciones:
+
 
 +
XX is one of the following options:
  
 
<table border="1" width="600px" align="center" cellpadding="15">
 
<table border="1" width="600px" align="center" cellpadding="15">
 
<tr>
 
<tr>
 
<td width="150">
 
<td width="150">
NN: Camina hacia el Norte.
+
'''NN''': Walks to the North.
 
</td>
 
</td>
 
<td width="150">  
 
<td width="150">  
NE: Camina hacia el Noreste.
+
'''NE''': Walks to the North-East.
 
</td>
 
</td>
 
<td width="150">
 
<td width="150">
NW: Camina hacia el Noroeste.
+
'''NW''': Walks to the North-West.
 
</td>
 
</td>
 
<td width="150">
 
<td width="150">
WW: Camina hacia el Oeste.
+
'''WW''': Walks to the West.
 
</td>
 
</td>
 
</tr>
 
</tr>
 
<tr>
 
<tr>
 
<td width="150">
 
<td width="150">
EE: Camina hacia el Este.
+
'''EE''': Walks to the East.
 
</td>
 
</td>
 
<td width="150">
 
<td width="150">
SW: Camina hacia el Suroeste.
+
'''SW''': Walks to the South-West.
 
</td>
 
</td>
 
<td width="150">
 
<td width="150">
SE: Camina hacia el Sureste.
+
'''SE''': Walks to the South-East.
 
</td>
 
</td>
 
<td width="150">
 
<td width="150">
SS: Camina hacia el Sur.
+
'''SS''': Walks to the South.
 
</td>
 
</td>
 
</tr>
 
</tr>
 
</table>
 
</table>
Ejemplo:
+
Example:
 
<center>
 
<center>
 
walk NN
 
walk NN

Latest revision as of 21:19, 21 February 2013

Graphic Interface

Entrenador wod cliente nuevo2.jpg

The "Open" button allows us to access to our Entrenador macros we have saved in our computer and open them.

The "Save" button allows us to save the macro we have done in the "Script" field.

The "Start" button runs the macro we have in the "Script" field.

The "Script" field is used to create the macro we want to use in the game.

The box "Mouse" allows us to know in each moment wich are the coordinates that our mouse points in the game window.

The box "Executing:" allows us to know what is the function state of our macro and if is running, wich line is executing in every moment.


To execute the macroing program Entrenador, right click over the World of Dread icon next to the clock on the taskbar and then choose "Open macroing program"

Abrir programa de macreo.jpg


We can choose UOLoop, Entrenador and Eenas, we click over Entrenador and we will have it ready to use.

Syntax and Commands

Clicks To do click in the Ultima On-line screen we can use this commands:

lclick x y (Left Click) rclick x y (Right Click) dlclick x y (Double Left Click) drclick x y (Double Right Click)

X and Y are the coordinates of the gameplay screen. We can obtain them from the "Mouse" box.


Example:

dlclick 400 600
DragDrop With this command we can drag "i" items from one location to other. To do this we have to put:

dragdrop i items from x0 y0 to xf yf

Examples:

dragdrop 1 items from 410 700 to 425 460 dragdrop 75 items from 560 411 to 711 657
Key With this command we can execute a key with the script (macro) to the Ultima On-line client. To do this we have to put:

key X

"x" can be any key from our keyboard, like numbers, "F" keys (F1, F2, F3, ...), etc.

Examples:

key F1

key 8

key a

Text Makes your charactet "speak", saying the phrase you put in "X". To do this we have to put:

text X

Examples:

text Hello everybody!

text buy

Repeat Repeats the commands "(...)" that are between each instructions "i" times. It is permmited to use many repeats, one inside each other.


repeat i (...) end repeat

Examples:

(This will say "Hello" 2 times)

repeat 2

text Hello

end repeat

(This will say "Hello" 2x2 times, that is, 4 times)

repeat 2

repeat 2

text Hello

end repeat

end repeat

Loop It is used without parameters, reiniciates the script from the beggining.

Example:

(This will say "Hello" without stopping)

text Hello

loop

Wait With this command we will execute a wait of X MILISECONDS.

Example:

(Makes a 1 second wait)

wait 1000

(Makes a 2,5 seconds wait)

wait 2500

Walk This command is used to walk in the game. Is used like this:

walk XX


XX is one of the following options:

NN: Walks to the North.

NE: Walks to the North-East.

NW: Walks to the North-West.

WW: Walks to the West.

EE: Walks to the East.

SW: Walks to the South-West.

SE: Walks to the South-East.

SS: Walks to the South.

Example:

walk NN

walk SE