Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SetTitleMatchMode 3
- #IfWinActive Path of Exile
- F2::AltF4() ; assign F2 to Alt+F4
- F3::AltF42() ; Assign F3 to Alt+F4
- +d::OosCommand() ; Assign Shift+d to execute the oos command
- F4::CheckRemaining() ; Assign F4 to Check remaining
- F5::CheckItemLevel() ; Assign F5 to Check item level
- F6::Hideout() ; Assign F5 to go to hideout
- F7::Map() ; Assign F7 to automessage
- AltF4(){
- BlockInput On
- SendInput !{f4}
- BlockInput Off
- return
- }
- AltF42(){
- BlockInput On
- SendInput !{f4}
- BlockInput Off
- return
- }
- OosCommand(){
- BlockInput On
- SendInput {Enter}
- SendInput /oos
- SendInput {Enter}
- BlockInput Off
- return
- }
- CheckRemaining(){
- BlockInput On
- SendInput {Enter}
- Sleep 2
- SendInput /remaining
- SendInput {Enter}
- Sleep, 75
- BlockInput Off
- return
- }
- CheckItemLevel(){
- BlockInput On
- SendInput {Enter}
- Sleep 2
- SendInput /itemlevel
- SendInput {Enter}
- Sleep, 75
- BlockInput Off
- return
- }
- Hideout(){
- BlockInput On
- SendInput {Enter}
- Sleep 2
- SendInput /hideout
- SendInput {Enter}
- Sleep, 75
- BlockInput Off
- return
- }
- Map(){
- BlockInput On
- SendInput ^{Enter}
- Sleep 2
- SendInput sure just in a map. gimme a few min please
- SendInput {Enter}
- Sleep, 75
- BlockInput Off
- return
- }
- ^WheelDown::SendInput {Right}
- return
- ^WheelUp::SendInput {Left}
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement