F8::FastLogOut() ; Assign F8 to Logout
F4::CheckItemLevel() ; Assign F4 to Check item level
F2::OosCommand() ; Assign F2 to execute the oos command
F3::remaining() ; Assign F3 to remaining
remaining(){
BlockInput On
Send {Enter}
Sleep 2
Send /remaining
Send {Enter}
BlockInput Off
return
}
CheckItemLevel(){
BlockInput On
Send {LButton}
Send {Enter}
Sleep 2
Send /itemlevel
Send {Enter}
Sleep, 75
Send {LButton}
BlockInput Off
return
}
OosCommand(){
BlockInput On
Send {Enter}
Sleep 2
Send /oos
Send {Enter}
BlockInput Off
return
}
FastLogOut(){
BlockInput On
SetDefaultMouseSpeed 0
sendinput {esc}
MouseClick, left, 870, 380, 1, 1
BlockInput Off
return
} |