Advertisement
Guest User

Achaea Targetting Paste

a guest
Jan 9th, 2014
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. Achaea Eleusis Party Triggers:
  2.  
  3. Step 1: Open your Triggers window at the top of the screen.
  4. Step 2: Make a Folder labeled "Party Triggers"
  5. Step 3: Make A Trigger in that folder called "Party Trigger 1"
  6.  
  7. A.)In the small box next to the 0 put exactly this:
  8. ^\(Party\)\: (\w+) says, \"I am calling targets, focus your fire on mycommand.\"$
  9.  
  10. B.)Label this Perl Regex from the drop down box next to it.
  11.  
  12. C.) Copy and paste this exactly into the big box at the bottom:
  13. raidleader = matches[2]
  14.  
  15. ______________________________________________________________
  16. Step 4: Make a Trigger in that folder called "Party Trigger 2"
  17.  
  18. A.) In the small box:
  19. ^\(Party\)\: (\w+) says, \"Changed target to (\w+).\"$
  20.  
  21. B.) Label as Perl Regex.
  22.  
  23. C.) Copy and Paste into Big box:
  24. if matches[2] == raidleader then
  25. expandAlias("tt " ..matches[3])
  26. end
  27.  
  28. ________________________________________________________________
  29. Step 5: Make a Trigger in that folder called "Party Trigger 3"
  30.  
  31. A.) In the small box:
  32. ^\(Party\): (\w+) says, \"Changed target to (\w+)\."$
  33.  
  34. B.) Label as Perl Regex.
  35.  
  36. C.) Copy and Paste into Big Box:
  37. expandAlias("tt "..matches[3])
  38.  
  39. __________________________________________________________________
  40. Step 6: Make a Trigger in that folder called "Raid Enemies"
  41.  
  42. A.) In the first small box:
  43. ^\(Party\)\: (\w+) says, "Enemies\: \((.*)\)\."$
  44.  
  45. B.) Set to Perl Regex.
  46.  
  47. C.) In the second small box next to the 1.:
  48. ^\(Party\)\: (\w+) says, "Enemies\: (.*)?\."$
  49.  
  50. D.) Set to Perl Regex
  51.  
  52. E.) In the big box at the bottom:
  53. enemies = string.split(matches[3], "|")
  54. for k,v in pairs(enemies) do
  55. send("enemy " .. v)
  56. end
  57.  
  58. _________________________________________________________________
  59. _________________________________________________________________
  60. To set up calling targets:
  61. Step 1: Go to Aliases
  62. Step 2: Make a new Folder named Targets or Essentials or something of the like.
  63. Step 3: Make a new Alias called Targets or Call Targets.
  64. A.) In the Pattern box:
  65. ^Targets$
  66.  
  67. ****Note: The word Targets can be exchanged for anything. This is what you will type in to call targets, signalling another's reflexes to start accepting your targets.
  68.  
  69. B.) In the Big box:
  70. send("pt I am calling targets, focus your fire on my command")
  71.  
  72. _____________________________________________________________________
  73. Step 4: Make a new Alias called rtt or Target call or something of the like.
  74. A.) In the Pattern box:
  75. ^rtt$
  76.  
  77. *****see above note.
  78.  
  79. B.) In the Big Box:
  80. send("pt Changed target to " .. target, false)
  81.  
  82. ________________________________________________________________________
  83. ________________________________________________________________________
  84.  
  85.  
  86. To attack a target:
  87.  
  88. Go to Keys or Aliases, whichever you prefer.
  89.  
  90. send("Maul " .. target)
  91. Will be in the big box. Replace Maul with whatever attack you choose to use.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement