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"

From A Tale in the Desert
Jump to navigationJump to search
Line 267: Line 267:
 
|-
 
|-
 
|Flax Gin
 
|Flax Gin
|
+
|A24-A30 D187-D230 H25-H33
 
|-
 
|-
 
|Flax Gin
 
|Flax Gin
|
+
|B21-B26 E471-E598 H82-H105
 
|-
 
|-
 
|Flax Gin
 
|Flax Gin
|
+
|B418-B502 D154-D194 G495-G614
 
|-
 
|-
 
|Flax Gin
 
|Flax Gin
|
+
|B141-B182 D252-D320 H254-H305
 
|-
 
|-
 
|Automatic Loom
 
|Automatic Loom

Revision as of 06:55, 29 December 2009


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

My Alloy Guide

Personal Stuff

Alloy 100%'s

  • My first 100% Octec's Alloy (May 11, 2009)

Daniels Octec1.jpg

  • My first 100% Metal Blue (March 7, 2009):

Daniels MetalBlue1.jpg

  • My first 100% Thoth's Metal and Water Metal (Feb 23, 2009):

Daniels Thoth1.jpg

Daniels Water1.jpg

  • My first two 100% Moonsteel, and 100% Sunsteel. When it rains, it pours (Feb 14, 2009):

Daniels Moonsteel2.jpg

Daniels Sunsteel1.jpg

  • These four were in one session (steel):

Daniels Steel1.jpg

Daniels Steel2.jpg

Daniels Steel3.jpg

Daniels Steel4.jpg

  • This is my first Pewter 100%. This took nearly 60 tries for me to get (Jan 23, 2009).

Daniels Pewter1.jpg

  • This is my first couple of 100% Bronzes (same session, Jan 27, 2009).

Daniels Bronze1.jpg

Daniels Bronze2.jpg

  • This is my first Brass.

Daniels Brass1.jpg

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 A24-A30 D187-D230 H25-H33
Flax Gin B21-B26 E471-E598 H82-H105
Flax Gin B418-B502 D154-D194 G495-G614
Flax Gin B141-B182 D252-D320 H254-H305
Automatic Loom
Automatic Loom