Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. #Protect the Priest [ Macro ]
  2. automacro proteja-me {
  3. timeout 3
  4. console /^(Monster (.*) (attacks you|uses (.*) on you|casting (.*) on you))/i
  5. call {
  6. $mymap = $.map
  7. $lockmap = @config (lockMap)
  8. $master = @config (followTarget)
  9. $follow = @config (follow)
  10. $mon = $.lastMatch2
  11. [
  12. log ****************************
  13. log ***** To Sendo Atacado *****
  14. log ***** Pedindo Socorro! *****
  15. log ****************************
  16. ]
  17. if ($follow = 0) stop
  18. if ($mymap = $lockmap) stop
  19. do pm "$master" xd a $mon
  20. }
  21. }
  22.  
  23. #Advance Party Search [ Macro ]
  24. automacro procurando-mestre-01 {
  25. timeout 3
  26. console /^(?:I lost my master|Perdi meu mestre)/i
  27. call {
  28. [
  29. log ******************************
  30. log ****** Perdi Meu Mestre ******
  31. log * Mandando PM Para o Mestre! *
  32. log ******************************
  33. ]
  34. $master = @config (followTarget)
  35. do pm "$master" x $.map $.pos
  36. }
  37. }
  38.  
  39. automacro procurando-mestre-02 {
  40. timeout 3
  41. console /^(?:Calculating route to find master|Calculando rota para encontrar o mestre:)/i
  42. call {
  43. [
  44. log ********************************
  45. log ******* Perdi Meu Mestre *******
  46. log * Tentando Enconter meu Mestre *
  47. log ********************************
  48. ]
  49. $master = @config (followTarget)
  50. do pm "$master" x $.map $.pos
  51. }
  52. }
  53.  
  54. automacro venha-mestre {
  55. pm /^(x (.*) (.*) (.*))/i
  56. call {
  57. [
  58. log **************************************
  59. log ********** Perdi Meu Mestre **********
  60. log * A Caminho do Encontro com o Mestre *
  61. log **************************************
  62. ]
  63. $pm = $.lastpm
  64. if ($pm != $master) stop
  65. do move $.lastMatch2 $.lastMatch3 $.lastMatch4
  66. }
  67. }
  68.  
  69. automacro encontrei-mestre {
  70. console /^(?:Found my master|Encontrei meu mestre)/i
  71. call {
  72. [
  73. log ******************************
  74. log **** Encontrei Meu Mestre ****
  75. log ******************************
  76. ]
  77. do pm "$master" clear
  78. }
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement