Close
Page 2 of 2 FirstFirst 1 2
Showing results 11 to 18 of 18
  1. #11

    Default

    It would be nice to see the sticky follow fixed.

    You can disable the You are now my Master messages by opening WoW\Interface\Addons\twoboxtoolkit\twoboxtoolkit.l ua in a text editor, searching for lines containing You are now my Master and commenting them out with -- (two hyphens).

    SendChatMessage("You are now my master", "WHISPER", nil, self.db.profile.master);
    becomes
    --SendChatMessage("You are now my master", "WHISPER", nil, self.db.profile.master);

    EDIT:

    OK played with the Code a bit and I may have sorted the other 2 issues I had with it, I wanted to disable sticky follow on the master and relay messages on the master. Seems to be working but YMMV.

    Code:
    Search the file for
    function twoboxtoolkit:GetMaster()
    
    Then add a function below it so it now reads
    function twoboxtoolkit:GetMaster()
    return self.db.profile.master
    end
    
    function twoboxtoolkit:IsMaster()
    return (string.lower(UnitName("Player")) == twoboxtoolkit:GetMaster())
    end
    
    Change
    function twoboxtoolkit:PLAYER_REGEN_ENABLED()
    if (self.db.profile.sticky and lastFollow ~= nil and isBroken) then
        FollowUnit(lastFollow);
        isBroken = false
    end
    end
    
    To
    function twoboxtoolkit:PLAYER_REGEN_ENABLED()
    if (self.db.profile.sticky and lastFollow ~= nil and isBroken and not twoboxtoolkit:IsMaster()) then
        FollowUnit(lastFollow);
        isBroken = false
    end
    end
    
    Change the function twoboxtoolkit:relayMessage(msg)so that it starts
    function twoboxtoolkit:relayMessage(msg)
    	if (twoboxtoolkit:IsMaster()) then
    		return
    	end
    	if (self.db.profile.relaychannel == nil or string.len(self.db.profile.relaychannel) == 0) then

  2. #12

    Default

    tbh I prefer whisperrelay and multiboxer addons which gives me sticky follow, whispers etc without having to install TBTK

    There is a drive to collect together the community addons... perhaps integrating them into a modular framework.
    [align=center]AeineiA AeineiB AeneiC AenieD AeineiX
    All your soul are belong to us
    "They can't be bargained with. They can't be reasoned with. They don't feel pity, or remorse, or fear. And they absolutely will not stop, ever, until you are dead"
    The Wiki is your Friend
    [/align]

  3. #13

  4. #14

    Default

    All my mods are in the process of being polished for public release. Unfortuntely right now they are cobbled together into quite an interesting amalgamation of RDX components... since I heavily rely on RDX and it's so extensible it worked well for me, as part of the polish I'm trying to make them Ace2 based instead of RDX.

    Right now I've got the quest broadcaster, follow on, follow off, some basic alerts for if you are out of range, castbars for your minions, the ability to switch mains based on focus... dynamic macro rebuilding...

    That said, I wouldn't expect to see my stuff released for a few months at best, life is busy and my freetime is generally spent doing dailies!
    [> Sam I Am (80) <] [> Team Doublemint <][> Hexed (60) (retired) <]
    [> Innerspace & ISBoxer Toolkit <][> Boxing on Blackhand, Horde <]
    "Innerspace basically reinvented the software boxing world. If I was to do it over again, I'd probably go single PC + Innerspace/ISBoxer." - Fursphere

  5. #15

    Default

    multiboxer can be found here http://www.dual-boxing.com/wiki/index.php/Addons

    it is the 2nd on the list
    [align=center]AeineiA AeineiB AeneiC AenieD AeineiX
    All your soul are belong to us
    "They can't be bargained with. They can't be reasoned with. They don't feel pity, or remorse, or fear. And they absolutely will not stop, ever, until you are dead"
    The Wiki is your Friend
    [/align]

  6. #16

    Default

    Quote Originally Posted by 'zanthor',index.php?page=Thread&postID=54619#post5 4619
    Right now I've got the quest broadcaster, follow on, follow off, some basic alerts for if you are out of range, castbars for your minions, the ability to switch mains based on focus... dynamic macro rebuilding...
    Speaking of Quest Broadcaster there Zanthor... are there any commands to get that to work? I installed it on all my accounts and it doesn't seem to do anything. What did I miss?

  7. #17

    Default

    Yes I have the same problem, it doesn't seem to do much
    [align=center]AeineiA AeineiB AeneiC AenieD AeineiX
    All your soul are belong to us
    "They can't be bargained with. They can't be reasoned with. They don't feel pity, or remorse, or fear. And they absolutely will not stop, ever, until you are dead"
    The Wiki is your Friend
    [/align]

  8. #18

    Default

    From what I remember, multiboxer still spins the toon around when you switch leaders, right? It may be a limitation of the client (or it may just be using the same code).

    I use multiboxer, myself. Like Djarid, I like the modular approach. It's easier to grasp what each addon is doing, and you can avoid a bunch of stuff getting loaded that you may not even take advantage of.
    Lock/Boomkin - Alliance - Dethecus US - lvl 79

    Shaman x5 - Alliance - Dethecus US - lvl 20 (retired)

Similar Threads

  1. twoboxtoolkit and focus
    By Bravo in forum Software Tools
    Replies: 0
    Last Post: 09-24-2008, 10:59 AM
  2. Question for TwoBoxToolKit users
    By hotdogsrgross in forum Software Tools
    Replies: 4
    Last Post: 09-02-2008, 06:35 PM
  3. Twoboxtoolkit vs multibox v2
    By bbj in forum Macros and Addons
    Replies: 1
    Last Post: 08-03-2008, 12:11 PM
  4. Twoboxtoolkit has it.......so will Keyclone be able to add it?
    By Occam's Razor in forum Software Tools
    Replies: 5
    Last Post: 06-04-2008, 07:18 PM
  5. twoboxtoolkit error?
    By Ilion Sturmlied in forum Macros and Addons
    Replies: 9
    Last Post: 01-30-2008, 05:30 AM

Posting Rules

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