As promised here's my ahk code
Nice, thanks
As promised here's my ahk code
As promised here's my ahk code
-------------------------------------------------
; Heres how this will work, you hover your mouse over the item you want to move to the inventory(Point B) and hit the Home button on your keyboards, it will then drag the item to the inventory and return the mouse to where you hit Home at(Point A)
Msgbox, Please hover your mouse over where you want the items to be dragged to and hit F12...
!F12:: ;Hotkey to set Inventory position
MouseGetPos, InvX,InvY
Msgbox, Inventory Position Set
return
F12::
Mousegetpos,ItemX,ItemY
Send, {Shift Down}
sleep 50
MouseClickDrag, Left, %itemX%, %ItemY%, %InvX%, %Invy%
sleep 50
Send, {Enter}
Sleep 50
MouseMove, %ItemX%, %ItemY%
Sleep 50
Send, {Shift Up}
return
Insert::Click
return
End::
Loop
{
Send, {Insert}
sleep 1200000
Send, {Numpad3}
sleep 10000
Send, R
sleep 10000
Send, {Numpad4}
Pause:: Pause ; Assign the toggle-pause function to the "pause" key...
F11:: Pause ; ... or assign it to Win+p or some other hotkey.
}
return
--------------------------------------------------------
I won't get into the ins and outs of using Autohotkey or macro programs in general (if you're familiar with the code in UO Steam it works similarly), but you will need a copy of AUTOHOTKEY for this to work. Download Autohotkey, open up a new text document, copy/paste and save it as whateveryouwant.AHK (the .ahk is the important part, otherwise it will save as a text file), close, load the script and follow the onscreen instructions.
FYI this isn't my code, my coding skills are mediocre at best, but necessity while playing good games with shitty UI/control schemes has gotten me fairly familiar with the basics.
Again, all this does is move your mouse from 1 point to another. No autolooting, auto-fighting, it won't make you a PvP god or help you in the bedroom, etc.
What happened to UO?As promised here's my ahk code
-------------------------------------------------
; Heres how this will work, you hover your mouse over the item you want to move to the inventory(Point B) and hit the Home button on your keyboards, it will then drag the item to the inventory and return the mouse to where you hit Home at(Point A)
Msgbox, Please hover your mouse over where you want the items to be dragged to and hit F12...
!F12:: ;Hotkey to set Inventory position
MouseGetPos, InvX,InvY
Msgbox, Inventory Position Set
return
F12::
Mousegetpos,ItemX,ItemY
Send, {Shift Down}
sleep 50
MouseClickDrag, Left, %itemX%, %ItemY%, %InvX%, %Invy%
sleep 50
Send, {Enter}
Sleep 50
MouseMove, %ItemX%, %ItemY%
Sleep 50
Send, {Shift Up}
return
Insert::Click
return
End::
Loop
{
Send, {Insert}
sleep 1200000
Send, {Numpad3}
sleep 10000
Send, R
sleep 10000
Send, {Numpad4}
Pause:: Pause ; Assign the toggle-pause function to the "pause" key...
F11:: Pause ; ... or assign it to Win+p or some other hotkey.
}
return
--------------------------------------------------------
I won't get into the ins and outs of using Autohotkey or macro programs in general (if you're familiar with the code in UO Steam it works similarly), but you will need a copy of AUTOHOTKEY for this to work. Download Autohotkey, open up a new text document, copy/paste and save it as whateveryouwant.AHK (the .ahk is the important part, otherwise it will save as a text file), close, load the script and follow the onscreen instructions.
FYI this isn't my code, my coding skills are mediocre at best, but necessity while playing good games with shitty UI/control schemes has gotten me fairly familiar with the basics.
Again, all this does is move your mouse from 1 point to another. No autolooting, auto-fighting, it won't make you a PvP god or help you in the bedroom, etc.
You really think that people haven't been using 3rd party macro programs since the launch of UO? Macros are as much UO as UO is UO.What happened to UO?