Difference between revisions of "Blacksmithing Guide"
From World of Dread Database
m (Reformatted.) |
|||
Line 1: | Line 1: | ||
− | + | [[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]] | ||
− | + | ==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-up ingots from the floor | + | // Pick the exact amount of ingots to craft the armor. |
− | + | // Note: Amount must be changed depending on armor being created. | |
− | //Pick the | + | TXT 13 |
− | TXT 13 | + | // Place the ingots into at the main backpack corner. |
− | // | + | // Note: Coordinates for the backpack corner must be set. |
− | DROP 843 627 | + | DROP 843 627 |
− | + | WAIT 500 | |
− | //Double click at the ingots | + | // Double click at the ingots. |
− | DLC 876 607 | + | DLC 876 607 |
− | + | WAIT 500 | |
− | //Select the Armors | + | // Select the Armors menu. |
− | DLC 95 62 | + | DLC 95 62 |
− | + | WAIT 500 | |
− | //With some kinds of ores there is an extra menu for crafting | + | // With some kinds of ores there is an extra menu for crafting. |
− | //DLC 160 64 | + | // The following lines may need to be enabled. |
− | // | + | // Note: Coordinates for the armor sub-menu must be set. |
− | //Select the armor part that you want to craft | + | // DLC 160 64 |
− | DLC 53 68 | + | // 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 | ||
[[Category:Guides]] | [[Category:Guides]] |
Revision as of 01:24, 7 December 2013
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