AHK script
This script will auto-accept quest, complete them and collect the reward. It should work with the standard windowsize. The script clicks the active window. Start and stop with F1.
You will have to craft manually but it should be quick after leaving this script running for a while.
#Requires AutoHotkey v2.0
#MaxThreadsPerHotkey 2
CoordMode "Mouse", "Window"
F1:: {
static KeepLooping := false
KeepLooping := !KeepLooping
while KeepLooping {
if (!KeepLooping)
break
Click(262, 192)
Sleep(300)
if (!KeepLooping)
break
Click(255, 468)
Sleep(300)
if (!KeepLooping)
break
Click(156, 81)
Sleep(300)
if (!KeepLooping)
break
Click(224, 329)
Sleep(300)
if (!KeepLooping)
break
Click(59, 82)
Sleep(300)
}
}