hey
i've seen some hotbar+wepon switch macros for autohotkey but not for AC Tools, so here's one i made
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))):
//slot 0 = weapon
//hotkeys = F1 F2 F3 F4
SetActiveWindow darkfall online
Procedure bar1
keys ~1
delay 0.1 sec
keys 0
End
procedure bar2
keys ~2
delay 0.1 sec
keys 0
end
procedure bar3
keys ~3
delay 0.1 sec
keys 0
end
procedure bar4
keys ~4
delay 0.1 sec
keys 0
end
while 1=1
If {GlobalKeys} Contains 112 //F1
ClearGlobalKeys
Call bar1
End
If {GlobalKeys} Contains 113 //F2
ClearGlobalKeys
Call bar2
End
If {GlobalKeys} Contains 114 //F3
ClearGlobalKeys
Call bar3
End
If {GlobalKeys} Contains 115 //F4
ClearGlobalKeys
Call bar4
End
end