Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #NoEnv
- #SingleInstance force
- SendMode Input
- ; ====== Macros ======
- ; ^ - CTRL
- ; ! - ALT
- ; + - Shift
- !z::exampleTextToParty()
- !x::allText()
- ; ====================
- ; ====== Macro Methods ======
- allText() ; ALT + X
- {
- ; Could just use one method for all steps too
- ; Just be careful, if you send too many you might get kicked for too many actions xD
- ; To prevent this you can add a sleep between each one or so.
- BlockInput On
- Send {Enter}{asc 0037}PLEASE READ {Enter}
- Sleep 100
- Send {Enter}{asc 0037}1. Don't open beginning lab door.{Enter}
- Sleep 100
- Send {Enter}{asc 0037}2. Don't enter Izaro room until I say so.{Enter}
- Sleep 100
- Send {Enter}{asc 0037}3. Wait at the golden door if there is one. I will get key.{Enter}
- Sleep 100
- Send {Enter}{asc 0037}4. I am going for Argus kill.{Enter}
- Sleep 100
- Send {Enter}{asc 0037}5. Don't die{Enter}
- BlockInput Off
- }
- exampleTextToParty() ; ALT + Z
- {
- BlockInput On
- Send {Enter}{asc 0037}Basic example for text to go into party chat{Enter}
- BlockInput Off
- }
- ; Above can be used the same way like this, but cannot change the macro key at the top, you would then have to change it here
- ; I prefer the above method personally
- ;!z::
- ; BlockInput On
- ; Send {Enter}{asc 0037}Basic example for text to go into party chat{Enter}
- ; BlockInput Off
- ;return
- ; ====================
- ; ====== Generic Methods ======
- ; Shift + F1 - Reload
- +F1::
- Reload
- return
- ; Shift + F2 - Exit
- +F2::
- ExitApp
- return
- ; ====================
Add Comment
Please, Sign In to add comment