Simpe AutoIt Script for Smelting

08/14/2009 11:58 Penakle#1
This script can be used to smelt, turn timber into wood or make arrows.
Save this code as a .au3 file extension to be used with AutoIt.

You need to be in the crafting mode you want to be in and have the Create button up. Once the macro starts you will have 5 seconds to get your cursor over the create button. If making arrows or crafting you will need to comment and uncomment the appropriate Sleep commands in the loop.

Code:
;Simple Crafting related AutoIt script by TeabagGus
;Once the macro starts you will have 5 seconds to get your cursor over the create button.
;If making arrows or crafting you will need to comment and uncomment the appropriate Sleep commands in the While loop.

WinActivate ("Darkfall Online")
Sleep (5000)
$i = 0
While $i <= 250
  MouseClick ("Left")
  Sleep (11000) ; Smelt / Woodworking
  ;Sleep (21000) ; Arrows / Crafting
  $i = $i + 1
Wend