Close
Page 2 of 4 FirstFirst 1 2 3 4 LastLast
Showing results 11 to 20 of 36
  1. #11

    Default

    Hmm.

    Well I'm not much of an LUA scripter, so I have no idea what I'd have to do, but its something I would be interested in (the mod)

  2. #12

    Default

    hmm its not to difficult, was going to jump into the ace2 bit for it (passing info in a seperate channel to certain people, in this case your group), perhaps a bit sooner now, the sct code to do it with is i think 1 line :P. Its even possible to point it to the blizzard sct.

  3. #13

    Default

    I had been considering this myself. I was just going to modify SCT or a similar mod to display damage from other specified characters.

    It would be awesome if it could be above the enemies head but I don't believe any API is exposed to allow that via LUA. At least there wasn't any when I wanted healing to be above players head way before they finally added that.

  4. #14

    Default

    I wouldn't put to much work in to it, because of Significant Changes in patch 2.4

    "The combat logging mechanism is completely overhauled with explicit data instead of text strings delivered to the UI. See slouken's post below for a sneak-peak at some of the current details. Highlights include detailed flags indicating relationship of involved units to player, unique identifiers for units with the same name within the combat log -- great for log analysis"

    so all mods that deals with the combat log, have to be rewriten

    http://forums.worldofwarcraft.com/th...233433&sid=1#9
    Paladin: Thun (lvl70) - 4xShamans: Aro - Vrai - Naicza - Sulh - 1--------10-->-------20---------30---------40---------50---------60---------70

  5. #15

    Default

    The nice thing about MSBT (Miks') is you can setup triggers for things like nightfall, clearcasting etc for other people.

  6. #16

    Default

    after i read this topic i downloaded parrot and modified one line, now it tracks all casts of my shamans, throttle also works

    i try to explain the change with my bad english (sorry im from germany ^^)

    1. open the file "CombatEvents.lua" from the "Parrot/Data" Folder and MAKE A BACKUP!
    2. at line 921 (current version from wowaceupdater) change:

    sourceID = "player",

    to

    sourceName_match = "^YOURNAME$",

    . # Any single character except a newline
    ^ # The beginning of the line or string
    $ # The end of the line or string
    * # Zero or more of the last character
    + # One or more of the last character
    ? # Zero or one of the last character
    regular expressions, see http://www.comp.leeds.ac.uk/Perl/matching.html

    My toons names are Aetha, Betha, .... so in my case the line looks like
    sourceName_match = "^.etha$",
    sourceName_match = "^[A-D]etha$", would also be possible...

    if you cant find the correct line, search for "Skill Damage", category "Outgoing"

    3. Save the file and /rl

    Some urls:
    http://www.wowace.com/wiki/Parrot#Combat_Events
    http://www.wowace.com/wiki/LibParser-4.0#Event_types

    have fun

  7. #17

    Default

    http://www.comp.leeds.ac.uk/Perl/matching.html:
    A vertical bar | represents an "or" and parentheses (...) can be used to group things together:

    jelly|cream # Either jelly or cream
    so in the case that my names have no underlying sheme, this should be:

    sourceName_match = "^NAME1$|^NAME2$|^NAME3$|^NAME4$|^NAME5$"

    with NAME1-5 the real names of my toons...

    sounds very interessting, so thanks for the info
    OLIPCS - ordinary life is pretty complex stuff
    ----------------------------------------------------------------
    Pala, Priest, Druid, Hunter, Mage
    Focusless Targetless Leaderless - Wiki
    HotKeyNet - Guide

  8. #18

    Default

    i think ^ and $ should only be used at the beginning/end of the line

    try this
    sourceName_match = "^(NAME1|NAME2|NAME3|NAME4|NAME5)$"

  9. #19

    Default

    Quote Originally Posted by anxious1
    i think ^ and $ should only be used at the beginning/end of the line

    try this
    sourceName_match = "^(NAME1|NAME2|NAME3|NAME4|NAME5)$"

    hi
    sourceName_match = "^NAME$" is ok
    sourceName_match = "^(NAME1|NAME2|NAME3|NAME4|NAME5)$" is not ok

    whats wrong ? sry my englisch is bad

  10. #20

    Default

    sorry the url was for perl regex patterns, maybe you find these more useful:

    http://lua-users.org/wiki/PatternsTutorial
    http://www.lua.org/pil/20.2.html

Similar Threads

  1. Multiboxer friendly dailies?
    By davedontmind in forum General WoW Discussion
    Replies: 13
    Last Post: 03-03-2009, 08:34 PM
  2. Does this addon exist?
    By nitsujcm in forum Macros and Addons
    Replies: 1
    Last Post: 07-04-2008, 08:27 AM
  3. MultiBoxer Friendly Guild taking on new members Alliance Area52
    By Alptraum in forum General WoW Discussion
    Replies: 0
    Last Post: 04-13-2008, 08:26 AM
  4. multiboxer friendly guild on US pvp server Malorne
    By Ilinair in forum General WoW Discussion
    Replies: 0
    Last Post: 03-20-2008, 02:08 PM
  5. World PVP! Does it even exist?!
    By TMNT in forum General WoW Discussion
    Replies: 7
    Last Post: 01-25-2008, 05:05 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •