Simpe AutoIt Script for Smelting or making arrows
Posted: March 12th, 2009, 12:07 pm
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.
;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
P.S. 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.
Thanks TeabagGus <= Pointing This out so ice can see
Save this code as a .au3 file extension to be used with AutoIt.
;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
P.S. 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.
Thanks TeabagGus <= Pointing This out so ice can see