Advanced Combat Tracker Forum Index Advanced Combat Tracker
Advanced Combat Tracker Forums
Alternate Forums



Welcome
It is very likely that this forum will be discontinued in favor of the current alternate forums. Since this is a free forum, I do not control much about it and believe it or not, there are more helpful people in the alternative forums. By switching, there will be only one forum and a more active user base that actually helps me answer questions. It is preferred that new topics are started there instead of here.

THE LIST

 
Post new topic   This topic is locked: you cannot edit posts or make replies.    Advanced Combat Tracker Forum Index -> Regular Expression Workshop
View previous topic :: View next topic  
Aditu
Site Admin


Joined: 27 Nov 2007
Posts: 302

 PostPosted: Tue Nov 27, 2007 5:34 pm    Post subject: THE LIST Reply with quote Back to top

This thread will contain a list of Regular Expressions to use within ACT. "The List" as I call it will just be a compilation of Regexes most likely found in other threads, but would take sifting through to find.
 
Aditu
Site Admin


Joined: 27 Nov 2007
Posts: 302

 PostPosted: Tue Nov 27, 2007 5:35 pm    Post subject: Reply with quote Back to top

Code:
You must be .+?your target\.

Added to a sound trigger, this will detect if the skill you are using is telling you that you are in the wrong position.

Code:
[^ ]+? .+? (?:Debilitate|Debilitating Blow|Dispatch)(?: critically)? hits

Another sound trigger that will detect a mob with spaces in its name(not a player) hitting someone with any of these skills. Useful to know for curing purposes, since the tank will probably be killed if not taken care of quickly Smile Mostly for HoF raids, or the sleeping named.

Code:
Your target is too far.+

A useful sound trigger to detect if you're too far away from your current target for melee or spells. I suggest if you melee, just use the system beep as an indicator, because the message gets spammed by EQ2.

Code:
You badly fizzle.*

A TTS or Sound trigger for fizzling your spell.


Last edited by Aditu on Wed Nov 28, 2007 5:15 am; edited 1 time in total
 
Aditu
Site Admin


Joined: 27 Nov 2007
Posts: 302

 PostPosted: Tue Nov 27, 2007 5:38 pm    Post subject: Reply with quote Back to top

Code:
\\aPC -?\d+ [^ :]+:(?<Player_100>[^ :]+)\\/a tells you, ?"(?<Message>.+)"|(?<Player_100>You tell [^\(\)\d]+), ?"(?<Message>.+)"

Players sending you tells, or you sending them tells.


Code:
\\aPC -?\d+ \w+:(?<Character_100>\w+)\\/a says to the guild, ?"(?<Message>.+)"|(?<Character_100>You say) to the guild, ?"(?<Message>.+)"

Guild chat.


Code:
\\aPC -?\d+ .+?:(?<Player_100>.+?)\\/a tells (?<Channel_100>.+?) \(\d+\), ?"(?<Message>.+)"|(?<Player_100>You tell) (?<Channel_100>.+?) \(\d+\), ?"(?<Message>.+)"

Chat channels.


Code:
\\aPC -?\d+ \w+:(?<Character_100>\w+)\\/a says to the raid party, ?"(?<Message>.+)"|(?<Character_100>You say) to the raid party, ?"(?<Message>.+)"

Raid chat.


Code:
\\aPC -?\d+ \w+:(?<Character_100>\w+)\\/a says to the group, ?"(?<Message>.+)"|(?<Character_100>You say) to the group, ?"(?<Message>.+)"

Group chat.


Code:
\\aPC -?\d+ \w+:(?<Character_100>\w+)\\/a says to the (?<Channel_100>group|raid party|guild), ?"(?<Message>.+)"|(?<Character_100>You say) to the (?<Channel_100>group|raid party|guild), ?"(?<Message>.+)"

Guild, raid, and group chat all in one tab.


Last edited by Aditu on Wed Jan 02, 2008 4:29 pm; edited 3 times in total
 
Aditu
Site Admin


Joined: 27 Nov 2007
Posts: 302

 PostPosted: Tue Nov 27, 2007 5:42 pm    Post subject: Reply with quote Back to top

Code:
\\#[0-F]{6}(?<timestamp>\d{2}/\d{2}/\d{4} \d{2}:\d{2} (?:AM|PM)) (?<buyer>\w+) buys (?<amount_50>\d+) \\#[0-F]{6}\\aITEM -?\d+ -?\d+:(?<item_200>.+?)\\/a\\#[0-F]{6} for (?:\\#[0-F]{6})?(?<pp_50>\d+p)?(?:, )?(?:\\#[0-F]{6})?(?<gp_50>\d+g)?(?:, )?(?:\\#[0-F]{6})?(?<sp_50>\d+s)?(?:, )?(?:\\#[0-F]{6})?(?<cp_50>\d+c)?\\/c

Consignment Sales.


Code:
\\aITEM -?\d+ -?\d+:(?<ItemName_300>.+?)\\/a|\w+ opens? the treasure chest of (?<MobName_300>.+?) and discovers?:|\w+ opens? the corpse of (?<MobName_300>.+?) and discovers?:

An item link being shown anywhere, and the mob name of the last corpse or chest opened.


BEFORE EOF:
Code:
(?<Character_100>\w+) loots? \\aITEM -?\d+ -?\d+:(?<ItemName_200>.+?)\\/a from the (?<LootType_100>.+?) of (?:(?<MobName_200>.+?) in (?<ZoneName>.+?) \((?<Loc>.+)\)|(?<MobName_200>.+))\.

AFTER EOF:
Code:
(?<Character_100>\w+) loots? \\aITEM -?\d+ -?\d+:(?<ItemName_200>.+?)\\/a from (?:(?<LootType_100>.+?) of (?<MobName_200>.+?) in (?<ZoneName>.+?) \((?<Loc>.+)\)|(?<LootType_100>.+?) of (?<MobName_200>.+)|(?<LootType_100>.+?))\.

Items litterally being looted from a mob, with player looting and loot type(corpse/chest), optionally ZoneName and Location.


Code:
You (?<Action>found) a \\aITEM -?\d+ -?\d+:(?<ItemName>.+?)\\/a\.|You (?<Action>gathered) a \\aITEM -?\d+ -?\d+:(?<ItemName>.+?)\\/a from the (?<NodeType>.+)\.|You have (?<Action>found a rare item)!

Gathering items from harvest nodes.
 
Aditu
Site Admin


Joined: 27 Nov 2007
Posts: 302

 PostPosted: Mon Dec 10, 2007 2:26 pm    Post subject: Reply with quote Back to top

Code:
(?<attacker>Drusella Sathir) (?:begins to shield herself in a necromantic aura\.|is shielded in a necromantic aura!)
Drusella Sathir beginning to cast and completing her reactively healing cage. (30s+)
 
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    Advanced Combat Tracker Forum Index -> Regular Expression Workshop All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum

Community Chest