Greetings, I am looking for two things; a little help on what I can do to improve and/or track my dps from an analytical standpoint, and have a short resource for assassins.
"I want to use ACT and TTS to anounce Dispatch only when it lands, along with the caster's name."
How-to:
Regex:
(.+?)'s? (?:Dispatched|Dispatch)(?: critically)? hits.+
TTS:
$1 Dispatch
"I want to use ACT and TTS to anounce when CoB and PoTM is spam'd into Chat_Window_X"
Careful with this one, it is meant to be broad and needs to be given a little customization and time but it seems to be the baseline for ACT notifications
How-to:
Regex:
\\aPC -?\d+ [^:]+:([^\\]+)\\/a says to the (?:group|raid party|guild), "(.*?([Cc][Oo][Bb]|[Pp][Oo][Tt][Mm]).*)"
TTS:
$1 X
-or-
$1 N X
Example for TTS:
$1 has just casted $3
Where N is option text - anything you want and X is $2 or $3 depending on preference:
Just some notes about this regex. If used in a replace string, such as TTS:
$1 = Player name
$2 = Entire quoted chat text
$3 = "CoB" or "PoTM" as matched
How-to create custom timers <a good start>:
http://www.eq2flames.com/general-act-discussion/16634-making-accurate-timer.html
To-do's:
For Jcap I would like to be able to hear TTS when I recieve Jcap and when I am able to recieve it again
I would also like to be able to know when it is cast, who cast it and who it was cast on.... I believe there is an emote when it is cast now, can anyone help me with this?
If you have information on improving what I have done in this thread please post it, or other good ideals for assassins / must haves for raiders
Thank you ...
Just crap I want to keep for now:
Let's take the first Regex:
\\aPC -?\d+ [^:]+:([^\\]+)\\/a tells you, "(.*?([Ss]hard|[Jj]cap|Jester).*)"
You can replace the green text with the keywords you need. Things like [Ss] means it looks for a single S character of either case.
If you want to use TTS, you can have it speak some of the things it captured. As I mentioned before, "$1 $3" will simply say the player name and the keyword.
The following will look for things in raid, guild or group chat...
\\aPC -?\d+ [^:]+:([^\\]+)\\/a says to the (?:group|raid party|guild), "(.*?([Rr][Oo][Dd]|[Pp][Oo][Tt][Mm]).*)"
You may notice that these are considerably more complicated than the other ones given. There is no other reason than they are more efficient. Meaning less CPU time consumed by ACT.