Difference between revisions of "Blacksmithing Guide"

From World of Dread Database
Jump to: navigation, search
m (Reformatted.)
Line 1: Line 1:
  
<center>[[File:GuiaBlacksmiting1.png]]</center>
+
[[File:GuiaBlacksmiting1.png|thumb|Ingots placed on the ground]]
 +
[[File:2.png|thumb|Ingots placed in the corner of the character's backpack and armor parts]]
  
This is a basic macro to train Blacksmithing, picking ingots from the floor.
+
==Method 1==
The macro picks the ingots from the floor (just the exactly amount to craft the armor, for example gorgets) and craft the armor until you are overloaded.
+
  
First of all, we need a forge, and pile up a huge quantity of ingots in the floor, as you can see at the pic, of course we need a hammer.
+
The following method requires:
 +
*a pile of ingots placed on the ground (as displayed in the image on the right).
 +
*a forge.
 +
*a hammer.
 +
*the backpack to be in a fixed location (this is because when we move ingots from/to the backpack, if it isn’t fixed it will move and the macro will fail).
  
Secondly we need to fix the main backpack (this is because when we move ingots from/to the backpack, if it isn’t fixed it will move and the macro will fail) and drag the ingots from the floor and drop it into a backpack corner (like in the photo)
+
The following macro will:
 +
*retrieve a defined amount of ingots from a pile on the ground;
 +
*place the ingots in the corner of the character's backpack (as displayed in the image on the right); and
 +
*craft a defined piece of armor.
  
[[File:2.png]]
+
'''Note:''' The pile of ingots will not decay if placed on the floor of your house.
  
Finally, copy the macro and set the coordinates, we have only to run the macro until the backpack is full of armor parts.
+
====Eenas Macro====
  
Now you can sell them or throw it into a Trash can.
+
The coordinates in the following must be defined.
  
 
+
// Pick-up ingots from the floor.
== '''Eenas Macro:'''==
+
// Note: Coordinates for the ingot pile must be set.
 
+
DRAG 401 354
//Pick-up ingots from the floor<br />
+
// Pick the exact amount of ingots to craft the armor.
Drag 401 354<br />
+
// Note: Amount must be changed depending on armor being created.
//Pick the exactly amount of ingots to craft the armor<br />
+
TXT 13
TXT 13<br />
+
// Place the ingots into at the main backpack corner.
//Drop them into at the main backpack corner<br />
+
// Note: Coordinates for the backpack corner must be set.
DROP 843 627<br />
+
DROP 843 627
wait 500<br />
+
WAIT 500
//Double click at the ingots<br />
+
// Double click at the ingots.
DLC 876 607<br />
+
DLC 876 607
wait 500<br />
+
WAIT 500
//Select the Armors at the menu<br />
+
// Select the Armors menu.
DLC 95 62<br />
+
DLC 95 62
Wait 500<br />
+
WAIT 500
//With some kinds of ores there is an extra menu for crafting<br />
+
// With some kinds of ores there is an extra menu for crafting.
//DLC 160 64<br />
+
// The following lines may need to be enabled.
//Wait 500<br />
+
// Note: Coordinates for the armor sub-menu must be set.
//Select the armor part that you want to craft<br />
+
// DLC 160 64
DLC 53 68<br />
+
// WAIT 500
wait 7000<br />
+
// Select the armor part that you want to craft.
 +
// Note: Coordinates for the armor part must be set.
 +
DLC 53 68
 +
WAIT 7000
  
 
[[Category:Guides]]
 
[[Category:Guides]]

Revision as of 02:24, 7 December 2013

Ingots placed on the ground
Ingots placed in the corner of the character's backpack and armor parts

Method 1

The following method requires:

  • a pile of ingots placed on the ground (as displayed in the image on the right).
  • a forge.
  • a hammer.
  • the backpack to be in a fixed location (this is because when we move ingots from/to the backpack, if it isn’t fixed it will move and the macro will fail).

The following macro will:

  • retrieve a defined amount of ingots from a pile on the ground;
  • place the ingots in the corner of the character's backpack (as displayed in the image on the right); and
  • craft a defined piece of armor.

Note: The pile of ingots will not decay if placed on the floor of your house.

Eenas Macro

The coordinates in the following must be defined.

// Pick-up ingots from the floor.
// Note: Coordinates for the ingot pile must be set.
DRAG 401 354
// Pick the exact amount of ingots to craft the armor.
// Note: Amount must be changed depending on armor being created.
TXT 13
// Place the ingots into at the main backpack corner.
// Note: Coordinates for the backpack corner must be set.
DROP 843 627
WAIT 500
// Double click at the ingots.
DLC 876 607
WAIT 500
// Select the Armors menu.
DLC 95 62
WAIT 500
// With some kinds of ores there is an extra menu for crafting.
// The following lines may need to be enabled.
// Note: Coordinates for the armor sub-menu must be set. 
// DLC 160 64
// WAIT 500
// Select the armor part that you want to craft.
// Note: Coordinates for the armor part must be set. 
DLC 53 68
WAIT 7000