Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Achaea Eleusis Party Triggers:
- Step 1: Open your Triggers window at the top of the screen.
- Step 2: Make a Folder labeled "Party Triggers"
- Step 3: Make A Trigger in that folder called "Party Trigger 1"
- A.)In the small box next to the 0 put exactly this:
- ^\(Party\)\: (\w+) says, \"I am calling targets, focus your fire on mycommand.\"$
- B.)Label this Perl Regex from the drop down box next to it.
- C.) Copy and paste this exactly into the big box at the bottom:
- raidleader = matches[2]
- ______________________________________________________________
- Step 4: Make a Trigger in that folder called "Party Trigger 2"
- A.) In the small box:
- ^\(Party\)\: (\w+) says, \"Changed target to (\w+).\"$
- B.) Label as Perl Regex.
- C.) Copy and Paste into Big box:
- if matches[2] == raidleader then
- expandAlias("tt " ..matches[3])
- end
- ________________________________________________________________
- Step 5: Make a Trigger in that folder called "Party Trigger 3"
- A.) In the small box:
- ^\(Party\): (\w+) says, \"Changed target to (\w+)\."$
- B.) Label as Perl Regex.
- C.) Copy and Paste into Big Box:
- expandAlias("tt "..matches[3])
- __________________________________________________________________
- Step 6: Make a Trigger in that folder called "Raid Enemies"
- A.) In the first small box:
- ^\(Party\)\: (\w+) says, "Enemies\: \((.*)\)\."$
- B.) Set to Perl Regex.
- C.) In the second small box next to the 1.:
- ^\(Party\)\: (\w+) says, "Enemies\: (.*)?\."$
- D.) Set to Perl Regex
- E.) In the big box at the bottom:
- enemies = string.split(matches[3], "|")
- for k,v in pairs(enemies) do
- send("enemy " .. v)
- end
- _________________________________________________________________
- _________________________________________________________________
- To set up calling targets:
- Step 1: Go to Aliases
- Step 2: Make a new Folder named Targets or Essentials or something of the like.
- Step 3: Make a new Alias called Targets or Call Targets.
- A.) In the Pattern box:
- ^Targets$
- ****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.
- B.) In the Big box:
- send("pt I am calling targets, focus your fire on my command")
- _____________________________________________________________________
- Step 4: Make a new Alias called rtt or Target call or something of the like.
- A.) In the Pattern box:
- ^rtt$
- *****see above note.
- B.) In the Big Box:
- send("pt Changed target to " .. target, false)
- ________________________________________________________________________
- ________________________________________________________________________
- To attack a target:
- Go to Keys or Aliases, whichever you prefer.
- send("Maul " .. target)
- 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