Difference between revisions of "Entrenador WoD"

From World of Dread Database
Jump to: navigation, search
(Interfaz Gráfica)
 
(Syntax and Commands)
 
(13 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.
+
<table border="1" width="900px" align="center" cellpadding="15">
 +
<tr>
 +
<th width='80' align="center">Clicks</th>
 +
<td cellpadding="5">To do click in the Ultima On-line screen we can use this commands:
  
El botón "Iniciar" ejecutará la macro que tengamos en el recuadro "Script"
+
lclick  x y (Left Click)
 +
rclick  x y (Right Click)
 +
dlclick x y (Double Left Click)
 +
drclick x y (Double Right Click)
  
El recuadro "Script" sirve para confeccionar a nuestro gusto la macro que queramos utilizar en el juego.
+
X and Y are the coordinates of the gameplay screen.
 +
We can obtain them from the "Mouse" box.
  
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.
+
Example:
  
== Sintaxis y Comandos ==
+
<center>dlclick 400 600</center>
 +
</td>
 +
</tr>
  
=== Clicks ===
+
<tr>
 
+
<th width='80' align="center">DragDrop</th>
Para hacer clicks en la pantalla del ultima online podremos utilizar estos comandos:
+
<td>With this command we can drag "i" items from one location to other. To do this we have to put:
 
+
lclick  x y (Click izquierdo)
+
rclick  x y (Click derecho)
+
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:
+
 
+
dlclick 400 600
+
 
+
=== DragDrop ===
+
 
+
Con esta función permite arrastrar "i" items de una posición a otra. Para realizar esto hay que poner:
+
  
 
dragdrop i items from x0 y0 to xf yf
 
dragdrop i items from x0 y0 to xf yf
  
Ejemplos:
+
Examples:
 
+
dragdrop 1 items from 410 700 to 425 460
+
 
+
dragdrop 75 items from 560 411 to 711 657
+
  
 +
<center>dragdrop 1 items from 410 700 to 425 460
  
=== Key ===
+
dragdrop 75 items from 560 411 to 711 657</center></td>
 +
</tr>
  
Con esta función podremos ejecutar una tecla desde el script (macro) al cliente de ultima online. Para ello utilizaremos lo siguiente:
+
<tr>
 +
<th width='80' align="center">Key</th>
 +
<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>
 
key F1
 
key F1
  
Line 86: Line 74:
  
 
key a
 
key a
 +
</center></td>
 +
</tr>
  
=== Text ===
+
<tr>
 
+
<th width='80' align="center">Text</th>
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>
text Hola a todos
+
text Hello everybody!
  
 
text buy
 
text buy
 +
</center>
 +
</td>
 +
</tr>
  
=== Repeat ===
+
<tr>
 +
<th width='80' align="center">Repeat</th>
 +
<td>Repeats the commands "(...)" that are between each instructions "i" times. It is permmited to use many repeats, one inside each other.
  
Repite los comandos "(...)" que hay entre ambas instrucciones "i" veces.
 
Se permite el uso de varios repeats, unos dentro de otros.
 
  
 
repeat i
 
repeat i
Line 108: Line 101:
 
end repeat
 
end repeat
  
Ejemplos:
+
Examples:
 
+
<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>
(Esto dirá "Hola." 2x2 veces, es decir, 4 veces).
+
<center>
 +
(This will say "Hello" 2x2 times, that is, 4 times)
  
 
repeat 2
 
repeat 2
Line 124: Line 118:
 
repeat 2
 
repeat 2
  
text Hola.
+
text Hello
  
 
end repeat
 
end repeat
  
 
end repeat
 
end repeat
+
</center>
 +
</td>
 +
</tr>
  
=== Loop ===
+
<tr>
 +
<th width='80' align="center">Loop</th>
 +
<td>It is used without parameters, reiniciates the script from the beggining.
  
Se usa sin parámetros, reinicia el script desde el principio.
+
Example:
 +
<center>
 +
(This will say "Hello" without stopping)
  
Ejemplo:
+
text Hello
(Esto dirá "Hola." sin parar.)
+
 
+
text Hola.
+
  
 
loop
 
loop
+
</center>
=== Wait ===
+
</td>
 +
</tr>
  
Con esta función ejecutaremos una espera de X MILISEGUNDOS a esperar.
+
<tr>
 +
<th width='80' align="center">Wait</th>
 +
<td>With this command we will execute a wait of X MILISECONDS.
  
Ejemplo:
+
Example:
 
+
<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
 +
</center>
 +
</td>
 +
</tr>
  
=== Walk ===
+
<tr>
 
+
<th width='80' align="center">Walk</th>
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:
 
  
NN: Camina hacia el Norte.
+
XX is one of the following options:
  
NE: Camina hacia el Noreste.
+
<table border="1" width="600px" align="center" cellpadding="15">
 +
<tr>
 +
<td width="150">
 +
'''NN''': Walks to the North.
 +
</td>
 +
<td width="150">
 +
'''NE''': Walks to the North-East.
 +
</td>
 +
<td width="150">
 +
'''NW''': Walks to the North-West.
 +
</td>
 +
<td width="150">
 +
'''WW''': Walks to the West.
 +
</td>
 +
</tr>
 +
<tr>
 +
<td width="150">
 +
'''EE''': Walks to the East.
 +
</td>
 +
<td width="150">
 +
'''SW''': Walks to the South-West.
 +
</td>
 +
<td width="150">
 +
'''SE''': Walks to the South-East.
 +
</td>
 +
<td width="150">
 +
'''SS''': Walks to the South.
 +
</td>
 +
</tr>
 +
</table>
 +
Example:
 +
<center>
 +
walk NN
  
NW: Camina hacia el Noroeste.
+
walk SE
 +
</center>
 +
</td>
 +
</tr>
  
WW: Camina hacia el Oeste.
 
  
EE: Camina hacia el Este.
+
</table>
 
+
SW: Camina hacia el Suroeste.
+
 
+
SE: Camina hacia el Sureste.
+
 
+
SS: Camina hacia el Sur.
+
 
+
Ejemplo:
+
 
+
walk NN
+
 
+
walk SE
+

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