Close
Showing results 1 to 7 of 7
  1. #1

    Default Parrot Modification for Multiboxers

    So i've lurked here for a long time and thought i'd share how to get Parrot to show all Party members with all the nice throttling.

    Two changes....

    /Addons/Parrot/Code/CombatEvents.lua

    Change

    Code:
    local function checkForRelevance(sourceFlags, destFlags)
        return bit_band(sourceFlags, FLAGS_RELEVANT) == FLAGS_RELEVANT or
            bit_band(destFlags, FLAGS_RELEVANT) == FLAGS_RELEVANT 
    end
    to

    Code:
    local function checkForRelevance(sourceFlags, destFlags)
        return bit_band(sourceFlags, FLAGS_RELEVANT) == FLAGS_RELEVANT or
            bit_band(destFlags, FLAGS_RELEVANT) == FLAGS_RELEVANT or bit_band(sourceFlags, COMBATLOG_OBJECT_AFFILIATION_PARTY) or bit_band(destFlags, COMBATLOG_OBJECT_AFFILIATION_PARTY)
    end
    and

    /Addons/Parrot/Data/CombatEvents.lua

    Change

    Code:
    local function checkPlayerInc(_, _, _, dstGUID, _, dstFlags)
        return dstGUID == playerGUID
    end
    local function checkPlayerOut(srcGUID, _, srcFlags)
        return srcGUID == playerGUID
    end
    to

    Code:
    local function checkPlayerInc(_, _, _, dstGUID, _, dstFlags)
        return dstGUID == playerGUID or checkFlags(dstFlags, AFFILIATION_PARTY)
    end
    local function checkPlayerOut(srcGUID, _, srcFlags)
        return srcGUID == playerGUID or checkFlags(srcFlags, AFFILIATION_PARTY)
    end

  2. #2

    Default

    What does it do?

    Welcome to be forum btw
    Pycnopodia - Pycnopodiá - Pycnopodià - Pycnopodiâ - Pycnopodiã
    <Vengeance> - World PvP Guild
    [A] Outland-EU

  3. #3

    Default

    As I understand it, it will show all party members in parrot's scrolling combat text zone
    Dualboxing on a computer running Linux & MoW.
    EU-Uldaman

  4. #4

    Default

    Nice, I may have to switch to Parrot to give this a try.

    Can the same thing be done with MSBT?

  5. #5
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    I presume Parrot code has changed since this last post on modding parrot?

    http://www.dual-boxing.com/showthread.php?t=22980
    Now playing: WoW (Garona)

  6. #6

    Default

    Quote Originally Posted by Ughmahedhurtz View Post
    I presume Parrot code has changed since this last post on modding parrot?

    http://www.dual-boxing.com/showthread.php?t=22980
    Yep, there has been two reasonably major code changes to parrot since your 07-29-2009 post.

    The biggest change is that it now requires a change to two files, one in the Code directory and one in the Data.

    When the update broke it I cycled through some of the alternatives - MSBT, HitsMode5 but ended up coming back to Parrot.

  7. #7
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    Very cool. Lemme go link to this post from the original.
    Now playing: WoW (Garona)

Tags for this Thread

Posting Rules

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