A little script to automate clicking craft so you can just grind out your gathered resources without having to sit there and click.
Have the craft gump up with the item you want to craft highlighted, once you set the delay (10.5 seconds works good for me, that's the default) alt + tab back into Darkfall and you'll have 2 seconds to hover your mouse over the craft button before it starts.
Pauses with the ~ key and exits with the DELETE key
Global $Paused
HotKeySet("`", "TogglePause")
HotKeySet("{DEL}", "Terminate")
$a = InputBox( "Question", "Delay between clicks?", "10500" )
WinWaitActive( "Darkfall Online" )
Sleep( 2000 )
While 1
MouseClick( "Left" )
Sleep( $a )
WEnd
Func TogglePause( )
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate( )
Exit 0
EndFunc
P.S.
You have to hover over the create button and properly set the time between clicks.
and also many thanks to ices
