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.
Difference between revisions of "User:Daniels"
(→Macros) |
(→Macros) |
||
Line 113: | Line 113: | ||
===Macros=== | ===Macros=== | ||
− | Barley Macro, 1280x1024 resolution, pin window in the upper left corner of the screen. Double F8, and zoom all the way in before starting the macro. To start the macro, press alt+shift+y: | + | Barley Macro written for http://www.autohotkey.com, 1280x1024 resolution, pin window in the upper left corner of the screen. Double F8, and zoom all the way in before starting the macro. To start the macro, press alt+shift+y: |
+ | |||
+ | <pre> | ||
+ | ; Barley - 1280x1024 resolution | ||
+ | ; alt-shift-y | ||
+ | !+y:: | ||
+ | IfWinExist eGenesis Client | ||
+ | { | ||
+ | WinGetActiveStats, win_Title, Xmax, Ymax, win_Xpos, win_Ypos | ||
+ | SetDefaultMouseSpeed, 2 | ||
+ | interval = 1200 | ||
+ | |||
+ | ; Zoom out a little | ||
+ | Loop, 8 | ||
+ | { | ||
+ | MouseClick, WD | ||
+ | sleep 200 | ||
+ | } | ||
+ | Loop, 100 | ||
+ | { | ||
+ | mousex := Xmax//2 - 3 | ||
+ | mousey := Ymax//2 + 16 | ||
+ | incx = 70 | ||
+ | incy = 70 | ||
+ | rows = 0 | ||
+ | Loop, 2 ; columns of barley | ||
+ | { | ||
+ | bug = 0 | ||
+ | Loop, 4 ; rows of barley | ||
+ | { | ||
+ | if (Mod(rows, 2) = 0) ; plant left to right | ||
+ | { | ||
+ | MouseMove, 30, 45 | ||
+ | sleep 100 | ||
+ | MouseClick, Left ; Plant | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + incx, mousey | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep interval | ||
+ | } | ||
+ | else ; plant right to left | ||
+ | { | ||
+ | MouseMove, 30, 45 | ||
+ | sleep 100 | ||
+ | MouseClick, Left ; Plant | ||
+ | sleep 100 | ||
+ | MouseMove, mousex - incx, mousey | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep interval | ||
+ | } | ||
+ | } | ||
+ | MouseMove, 30, 45 | ||
+ | sleep 100 | ||
+ | MouseClick, Left ; Plant | ||
+ | sleep 100 | ||
+ | MouseMove, mousex, mousey + incy | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep interval | ||
+ | rows++ | ||
+ | } | ||
+ | ; Begin watering and fertalizing | ||
+ | water = 0 | ||
+ | count = 0 | ||
+ | Loop, 6 | ||
+ | { | ||
+ | mousex = 640 | ||
+ | mousey = 375 | ||
+ | intx = 0 | ||
+ | inty = 0 | ||
+ | Loop, 2 | ||
+ | { | ||
+ | Loop, 5 | ||
+ | { | ||
+ | if (count = 0) ; water and fert twice | ||
+ | { | ||
+ | MouseMove, mousex + intx, mousey + inty | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 189, mousey + inty + 23 | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 189, mousey + inty + 23 | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 189, mousey + inty + 46 | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 189, mousey + inty + 46 | ||
+ | sleep 100 | ||
+ | MouseClick, left | ||
+ | sleep 100 | ||
+ | SendInput {ESC} | ||
+ | sleep 100 | ||
+ | intx += 70 | ||
+ | } | ||
+ | else if (count = 5) ; harvest | ||
+ | { | ||
+ | MouseMove, mousex + intx, mousey + inty | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 106, mousey + inty + 86 | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | SendInput {ESC} | ||
+ | sleep 100 | ||
+ | intx += 70 | ||
+ | } | ||
+ | else ; water and fert once | ||
+ | { | ||
+ | MouseMove, mousex + intx, mousey + inty | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 189, mousey + inty + 23 | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 100 | ||
+ | MouseMove, mousex + intx + 189, mousey + inty + 46 | ||
+ | sleep 100 | ||
+ | MouseClick, left | ||
+ | sleep 100 | ||
+ | SendInput {ESC} | ||
+ | sleep 100 | ||
+ | intx += 70 | ||
+ | } | ||
+ | } | ||
+ | mousex = 640 | ||
+ | intx = 0 | ||
+ | inty += 90 | ||
+ | } | ||
+ | count++ | ||
+ | water++ ; Refill jugs from aquaduct | ||
+ | ;if (water = 1) | ||
+ | ;{ | ||
+ | ; MouseClick, Left, 500, 45, 1 | ||
+ | ; sleep 1000 | ||
+ | ; MouseClick, Left, 125, 50, 1 | ||
+ | ; sleep 1000 | ||
+ | ; MouseClick, Left, 125, 125, 1 | ||
+ | ; water = 0 | ||
+ | ;} | ||
+ | sleep 2000 | ||
+ | } | ||
+ | MouseMove, 640, 375 | ||
+ | sleep 100 | ||
+ | MouseClick, Left | ||
+ | sleep 3000 | ||
+ | PixelSearch, PX, PY, 965, 702, 965, 704, 0x000000, Fast | ||
+ | if (ErrorLevel < 1) | ||
+ | { | ||
+ | ;MouseClick, Left, 965, 703 | ||
+ | return | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </pre> | ||
===Guilds=== | ===Guilds=== |
Revision as of 04:24, 28 December 2009
Trading
Alloys
Alloy | Cost | ||
---|---|---|---|
3 Brass | 1 Tin | 7 Copper | |
3 Steel | 1 Tin | 7 Iron | |
2 Bronze | 1 Zinc | 7 Copper |
- Charcoal and extra resin is complimentary. Prices of resin may fluctuate based on my stock; I hope to lower the price of resin.
Carpentry Blades 6.9k - 7.2k Quality
Blades | Cost |
---|---|
1 Blade | 1.5 Iron |
- Sold in increments of 2 blades, minimum 10 blades.
Beer
Yeast | Location | Seal Time |
---|---|---|
Y-57 | 1608, 2274 | 1200 |
Y-40 | 1690, 2308 | 1800 |
Y-83, Y-82 | 1770, 2301 | 1800 |
My Alloy Guide
Personal Stuff
Alloy 100%'s
- My first 100% Octec's Alloy (May 11, 2009)
- My first 100% Metal Blue (March 7, 2009):
- My first 100% Thoth's Metal and Water Metal (Feb 23, 2009):
- My first two 100% Moonsteel, and 100% Sunsteel. When it rains, it pours (Feb 14, 2009):
- These four were in one session (steel):
- This is my first Pewter 100%. This took nearly 60 tries for me to get (Jan 23, 2009).
- This is my first couple of 100% Bronzes (same session, Jan 27, 2009).
- This is my first Brass.
Fume
Aloe, Altar's Blessing, Anansi, Apothecary Scythe, Asafoetida, Ashoka, Banto, Bay Tree, Bee Balm, Beetle Leaf, Beggar's Button, Bhillawa, Blooded Harebell, Blue, Tarafern, Chaffa, Common Sage, Covage, Crimson Lettuce, Garcinia, Ginger, Tarragon, Hyssop, Lemondrop, Mahonia, Morphia, Myristica, Motherwart, Opal Harebell, Orange Niali, Quanash, Skirret, Taramask, Thyme, Yigory
Macros
Barley Macro written for http://www.autohotkey.com, 1280x1024 resolution, pin window in the upper left corner of the screen. Double F8, and zoom all the way in before starting the macro. To start the macro, press alt+shift+y:
; Barley - 1280x1024 resolution ; alt-shift-y !+y:: IfWinExist eGenesis Client { WinGetActiveStats, win_Title, Xmax, Ymax, win_Xpos, win_Ypos SetDefaultMouseSpeed, 2 interval = 1200 ; Zoom out a little Loop, 8 { MouseClick, WD sleep 200 } Loop, 100 { mousex := Xmax//2 - 3 mousey := Ymax//2 + 16 incx = 70 incy = 70 rows = 0 Loop, 2 ; columns of barley { bug = 0 Loop, 4 ; rows of barley { if (Mod(rows, 2) = 0) ; plant left to right { MouseMove, 30, 45 sleep 100 MouseClick, Left ; Plant sleep 100 MouseMove, mousex + incx, mousey sleep 100 MouseClick, Left sleep interval } else ; plant right to left { MouseMove, 30, 45 sleep 100 MouseClick, Left ; Plant sleep 100 MouseMove, mousex - incx, mousey sleep 100 MouseClick, Left sleep interval } } MouseMove, 30, 45 sleep 100 MouseClick, Left ; Plant sleep 100 MouseMove, mousex, mousey + incy sleep 100 MouseClick, Left sleep interval rows++ } ; Begin watering and fertalizing water = 0 count = 0 Loop, 6 { mousex = 640 mousey = 375 intx = 0 inty = 0 Loop, 2 { Loop, 5 { if (count = 0) ; water and fert twice { MouseMove, mousex + intx, mousey + inty sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 189, mousey + inty + 23 sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 189, mousey + inty + 23 sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 189, mousey + inty + 46 sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 189, mousey + inty + 46 sleep 100 MouseClick, left sleep 100 SendInput {ESC} sleep 100 intx += 70 } else if (count = 5) ; harvest { MouseMove, mousex + intx, mousey + inty sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 106, mousey + inty + 86 sleep 100 MouseClick, Left sleep 100 SendInput {ESC} sleep 100 intx += 70 } else ; water and fert once { MouseMove, mousex + intx, mousey + inty sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 189, mousey + inty + 23 sleep 100 MouseClick, Left sleep 100 MouseMove, mousex + intx + 189, mousey + inty + 46 sleep 100 MouseClick, left sleep 100 SendInput {ESC} sleep 100 intx += 70 } } mousex = 640 intx = 0 inty += 90 } count++ water++ ; Refill jugs from aquaduct ;if (water = 1) ;{ ; MouseClick, Left, 500, 45, 1 ; sleep 1000 ; MouseClick, Left, 125, 50, 1 ; sleep 1000 ; MouseClick, Left, 125, 125, 1 ; water = 0 ;} sleep 2000 } MouseMove, 640, 375 sleep 100 MouseClick, Left sleep 3000 PixelSearch, PX, PY, 965, 702, 965, 704, 0x000000, Fast if (ErrorLevel < 1) { ;MouseClick, Left, 965, 703 return } } }
Guilds
Spring Box Requirements
Saw Mill | A274-A334 E71-E89 G340-G418 |
Saw Mill | B87-B110 E431-E526 G159-G207 |
Brick Machine | |
Brick Machine | |
Brick Machine | |
Brick Machine | |
Flax Gin | |
Flax Gin | |
Flax Gin | |
Flax Gin | |
Automatic Loom | |
Automatic Loom |