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:AngelRio/Flax"

From A Tale in the Desert
Jump to navigationJump to search
(New page: <pre> PlantFlax() { Loop 10 { Sleep, 480 Click, 503, 55 } } ;============================================ Delete:: MouseGetPos, MouseX, MouseY NewMouseX := MouseX + 20 NewMo...)
 
Line 4: Line 4:
 
   Loop 10
 
   Loop 10
 
   {
 
   {
     Sleep, 480
+
     Sleep, 450
 
     Click, 503, 55
 
     Click, 503, 55
 
   }
 
   }
Line 13: Line 13:
 
MouseGetPos, MouseX, MouseY
 
MouseGetPos, MouseX, MouseY
 
NewMouseX := MouseX + 20
 
NewMouseX := MouseX + 20
NewMouseY := MouseY - 15
+
NewMouseY := MouseY
  
 
; Click on the Flax bed
 
; Click on the Flax bed
Line 20: Line 20:
 
;Wait for the menu to show up
 
;Wait for the menu to show up
 
;Change this to a better implementation that is lag-resistant
 
;Change this to a better implementation that is lag-resistant
Sleep, 700
+
Sleep, 500
  
 
;Click on the menu item to Water/Weed/Harvest
 
;Click on the menu item to Water/Weed/Harvest

Revision as of 17:52, 22 February 2009

PlantFlax()
{
  Loop 10
  {
    Sleep, 450
    Click, 503, 55
  }
}

;============================================
Delete::
MouseGetPos, MouseX, MouseY
NewMouseX := MouseX + 20
NewMouseY := MouseY

; Click on the Flax bed
Click %MouseX% %MouseY%

;Wait for the menu to show up
;Change this to a better implementation that is lag-resistant
Sleep, 500

;Click on the menu item to Water/Weed/Harvest
Click %NewMouseX% %NewMouseY%

;Finished one bed
Return

;============================================
Insert::
;Move to the right...
Click, 1024, 384

PlantFlax()

;Move down a bit...
Click, 585, 477
Sleep, 1000

;Move to the left...
Click, 0, 384

PlantFlax()

;Move to the center ready for weeding
Click, 700, 356

;End of Flax Planting
Return