sidekick_

Path of Exile Lab Macro Example

Feb 24th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv
  2. #SingleInstance force
  3.  
  4. SendMode Input
  5.  
  6. ; ====== Macros ======
  7.  
  8. ; ^ - CTRL
  9. ; ! - ALT
  10. ; + - Shift
  11.  
  12. !z::exampleTextToParty()
  13. !x::allText()
  14.  
  15. ; ====================
  16.  
  17. ; ====== Macro Methods ======
  18.  
  19. allText() ; ALT + X
  20. {
  21.     ; Could just use one method for all steps too
  22.     ; Just be careful, if you send too many you might get kicked for too many actions xD
  23.     ; To prevent this you can add a sleep between each one or so.
  24.    
  25.     BlockInput On
  26.    
  27.     Send {Enter}{asc 0037}PLEASE READ {Enter}
  28.     Sleep 100
  29.     Send {Enter}{asc 0037}1. Don't open beginning lab door.{Enter}
  30.     Sleep 100
  31.     Send {Enter}{asc 0037}2. Don't enter Izaro room until I say so.{Enter}
  32.     Sleep 100
  33.     Send {Enter}{asc 0037}3. Wait at the golden door if there is one. I will get key.{Enter}
  34.     Sleep 100
  35.     Send {Enter}{asc 0037}4. I am going for Argus kill.{Enter}
  36.     Sleep 100
  37.     Send {Enter}{asc 0037}5. Don't die{Enter}
  38.    
  39.     BlockInput Off
  40. }
  41.  
  42. exampleTextToParty() ; ALT + Z
  43. {
  44.     BlockInput On
  45.     Send {Enter}{asc 0037}Basic example for text to go into party chat{Enter}
  46.     BlockInput Off
  47. }
  48.  
  49. ; 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
  50. ; I prefer the above method personally
  51. ;!z::
  52. ;   BlockInput On
  53. ;   Send {Enter}{asc 0037}Basic example for text to go into party chat{Enter}
  54. ;   BlockInput Off
  55. ;return
  56.  
  57. ; ====================
  58.  
  59. ; ====== Generic Methods ======
  60.  
  61. ; Shift + F1 - Reload
  62. +F1::
  63.     Reload
  64. return
  65.  
  66. ; Shift + F2 - Exit
  67. +F2::
  68.     ExitApp
  69. return
  70.  
  71. ; ====================
Add Comment
Please, Sign In to add comment