The Wiki for Tale 4 is in read-only mode and is available for archival and reference purposes only. Please visit the current Tale 11 Wiki in the meantime.

If you have any issues with this Wiki, please post in #wiki-editing on Discord or contact Brad in-game.

User:Viscis

From A Tale in the Desert
Revision as of 22:48, 26 December 2008 by Viscis (talk | contribs) (→‎Flint)
Jump to navigationJump to search

Public Facilities

DWMS Public Facilities currently provided for the people of Sinai.

Location - 3300, 4300

  • Charcoal Heath x2
  • Bullet Furnace x2
  • Carpentry Shop
  • Rock Saw
  • Mason's Bench
  • Pottery Wheel x2

Macros

Basic Guide

For all my macros I use ACTools which is a easy to use program once you've had a little practice. With all of my templates you will need to make some small ajustments based on your computer.

ACTools uses co-ordinates in order to move the mouse. Therefore when using one of my macros you will need to add your own co-ordinates so that everything is aligned correctly. The simplest way to do this is by loading up my macro and then pressing "CTRL-M" whilst hovering over the correct location.

For example for a grass macro simple hover the mouse over the location of the Harvest Grass icon and press "CTRL-M" to paste the current location of the mouse into the macro.

Whilst using any macro that requires movement (grass, flax, etc) you must close chat down ingame and have movement keys enabled for it to work correctly.

Flint

This macro assumes that you are standing near water and there is a clay patch infront of you. This is slighty more advance and requires some configuration based on user preference.

Fill jugs.jpg Max.jpg

delay 10000 // Wait 10 seconds

MousePos 256, 59 // Fill jugs with water icon location
LeftClick
Delay 1000
MousePos 648, 539 // Max button location
LeftClick
Delay 1000

KeyDown {UP} 5000 // Walk forward so that I am in the clay patch (5000 is 5 seconds of holding down forward)
Delay 5000 // Same delay as above for walking time

loop 500 // Repeat x

loop 22 // Number of jugs you have in your inventory divided by 2
loop 1
KeyDown {UP}
delay 1500
MousePos 128, 117 // Clay Icon location
LeftClick
end

loop 1
KeyDown {DOWN}
delay 1500
MousePos 128, 117 // Clay Icon location
LeftClick
end
end

KeyDown {DOWN} 3500 // Run back to the water
Delay 5000

// Drop clay
// This works on the theory of the relative positioning of menus. If you open a menu at mouse x,y the next level of the sub-menu will appear and x+1,y+1 always.
MousePos 644, 524 // open menu here
Delay 500
Keys {ESC}
Delay 500
MousePos 737, 480 // select drop
Leftclick
Delay 500
MousePos 765, 456 // clay
Leftclick
Delay 500
MousePos 648, 539 // max
Leftclick
Delay 500

MousePos 240, 80 // refill jugs
LeftClick
Delay 1000
MousePos 648, 539 // max button
LeftClick
Delay 1000

KeyDown {UP} 5000
Delay 5000
MousePos 128, 117
leftclick

end

Grass

Wood

Flax

Limestone

This is perhaps the simplest macro to run as all that is required to click the limestone icon every time your endurance is refreshed.

// Limestone
// Use whilst standing on a patch of limestone
// All macros have a 10 second delay in order for you to postion yourself correctly
// and so that you can focus the window, tab the chat down etc.
delay 10000 // 10 second delay
MousePos 116, 103 // Change this to the location of the limestone icon

loop 10000 // Run this x times

loop 3
delay 1000
leftclick
end

delay 95000

end