Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- global TradeChannel = 10
- SetTimer process_watcher, 2000
- Run PathOfExile.exe, C:\Program Files (x86)\Path of Exile
- process_watcher:
- Process Exist, PathOfExile.exe
- If ErrorLevel = 0
- Exitapp
- return
- F10::TradeChange()
- F12::TradePost()
- TradeChange(){
- if WinActive("Path of Exile")
- {
- BlockInput On
- Send {Enter}/trade %TradeChannel%{Enter}
- BlockInput Off
- TradeChannel--
- }
- return
- }
- TradePost(){
- if WinActive("Path of Exile")
- {
- BlockInput On
- Send {Enter}$%Clipboard%{Enter}
- BlockInput Off
- }
- return
- }
Advertisement
Add Comment
Please, Sign In to add comment