;USE THIS IN AUTO HOTKEY... CREDITS TO RG_PANKO HTTP://TWITCH.TV/RG_PANKO ;I STOLE THIS AND ADDED COMMANDS TO HIS CODE. F3::FastLogOut() ; Assign F3 to Logout F4::OosCommand() ; Assign F4 to execute the oos command F5::CheckItemLevel() ; Assign F5 to Check item level F6::Remaining() ; Assign F6 to show remaining monsters F7::Ladder() ; Assign F7 to show current ladder positions 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, 959, 432, 1, 1 BlockInput Off return } Remaining(){ BlockInput On Send {Enter} Sleep 2 Send /remaining Send {Enter} BlockInput Off return } Ladder(){ BlockInput On Send {Enter} Sleep 2 Send /ladder Send {Enter} BlockInput Off return }