Category: Miscellaneous
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Author:
Version:
1.60
Date:
05-22-2009 03:52 PM
Size:
116.22 Kb
Downloads:
32,733
Favorites:
174
MD5:
Pictures
Click to enlarge
Command List 0.1
Click to enlarge
Minimap Menu
TwoBox Toolkit   Popular! (More than 5000 hits)
TwoBox Toolkit
by Gnutelbit

This mod provides a set of tools to help people like me who like to play 2 char at once. These tools are for the second char (bot). This mod uses the ACE2 library. All required libraries are included in this zip.

Features:
- Messages relay: Able to relay messages the Bot gets in Whister,Party,Guild,Raid and transfer them to your main via whisper.
- Follow: The bot will follow you upon using the /followme emote on him.
- Sticky Follow: Follow will be automatically resumed when the fight is over.
- Follow warning: The bot will warn you if he stops following.
- Pass Loot : The bot will auto pass on loot random window.
- Buff Warning: The bot will warn you when he loses a buff. (Durration for a buff to be warn can be set in options).
- Low Life Warning: The Bot will warn you when it health goes under a pre defined %.
- Low mana warning: The bot will warn you when it mana goes under a pre defined %.
- Mini map icon: With Options UI.
- Fubar compatible.
- Relay to channel : You can have the bot relay vis whispers or a defined channel

Usage:
/tb : for the list of commands. Every command can be trigger on/off.
Setting your master is the first step to using this mod. Do so by doing /tb master playername


Version History:

Version 1.60
- [Fix] : LUA for 3.1
- [Fix] : Group Invited. (Thanks Enitria)

Version 1.58
- [Fix] : Toc for Patch 2.4
- [Fix] : Bug when relay channel is set

Version 1.57
- [New] : "followme" and "shoo" command can now be send in your private channel by anyone.
- [New] : A message will be sent if a player is starting a trade with your bot.

Version 1.56
- [New] : sending "shoo" by whisper will make it drop group
- [New] : "followme" command can now also be send by whisper. if you don't want to use emotes u can do it by tell.
- [New] : commands will now be accepted from anyone in the master History List. Command like Followme & Shoo.
- [Fix] : Selecting a master in the Master history list will now send the new master a tell to confirm.

Version 1.55
- [New] : New Officer Chat relay option.

Version 1.54
- [Fix] : Little Bug

Version 1.53
- [Update] : Toc for 2.3
- [New] : You can now toggle if you want to autoaccept invite to group from people in your friend list. Invite from master will always be accepted.

Version 1.52
- [Fix]: another wrong tooltip sory

Version 1.51
- [Fix]: Wrong tooltip

Version 1.5
- [Fix]: Error when no master is set.
- [Fix]: Error with nil pet happyness.
- [New]: Auto accept escort quest
- [New]: Auto Accept Quest
- [New]: Masters History List

Version 1.41
- [Update] : Updated to work with Wow client 2.2

Version 1.4
- [New]: Raid relay will now tell you the # of player in raid when someone join it or leave it.
- [New]: Bot will now automaticly accept group invite from the master or people in friend list.
- [New]: Bot will now automaticly accept Resurection request from the master or people in the friend list.
- [New]: Bot will now tell the master if his pet is hungry.

Version 1.3
- [Fix]: The master name will now be force to lower cap when setting it.
- [New]: Follow drop warning message is now optional.
- [New]: You can now have all message coming from your bot sent to a channel instead of whispers. Leave the channel name empty for whisper relay

Version 1.2
- [Fix]: Pass loot option was not working (was always on).
- [New]: Added 3 more messages relay options : Raid,Party,Guild.
- [New]: The time that a buff needs to stay on the bot before it can be relay as fadded is now configurable.

Version 1.1
- [Fix]: Follow drop message being sent more than once. For some reason the event gets triggered up to 3 times when follow drop.
- [New]: Added a tooltip with some info. You can see who the current master is and how many whispers have been relayed. I Will add more to this in a future release.

Version 1.0
- [new]: Minimap icon.
- [new]: Options UI.
- [new]: Fubar compatible.

Version 0.2
- [new]: Buff Warning.
- [new]: Low Health Warning.
- [new]: Low Mana Warning.

Version 0.1
-First release with follow, sticky follow, follow warning, chat relay and pass loot.
  Archived Versions - TwoBox Toolkit
File Name
Version
Size
Author
Date
1.58
116kB
Gnutelbit
03-27-2008 11:29 AM
  Comments - TwoBox Toolkit
Post A Reply Comment Options
Old 04-21-2009, 11:02 AM  
Enitria
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Re: Re: update ?

If you're feeling up to it, you can mod the file yourself. You have to edit one function and add a new one. It's easy and fun!!!
  1. Log out of WoW and go to the Interface\AddOns\twoboxtoolkit folder
  2. Backup the twoboxtoolkit.lua file by copying and pasting with a different name.
  3. Open the twoboxtoolkit.lua file with a text editor.
  4. When open, search for the text:
    AcceptGroup()
  5. The next text line should be:
    StaticPopup_Hide("PARTY_INVITE")
    If it is, replace it with:
    self:RegisterEvent("PARTY_MEMBERS_CHANGED", "closePopup")
  6. Go up, 16 lines, and find the text:
    function twoboxtoolkit:PARTY_INVITE_REQUEST()
  7. Before that line, insert the following four lines:
    function twoboxtoolkit:closePopup()
    StaticPopup_Hide("PARTY_INVITE")
    self:UnregisterEvent("PARTY_MEMBERS_CHANGED")
    end
  8. Save the file, log into WoW and try it out.
  9. If Twobox Toolkit does not work as expected, then simply restore the original twoboxtoolkit.lua file and go on your merry way.
----------------

To recap, the modded text should look like this:
function twoboxtoolkit:closePopup()
StaticPopup_Hide("PARTY_INVITE")
self:UnregisterEvent("PARTY_MEMBERS_CHANGED")
end
function twoboxtoolkit:PARTY_INVITE_REQUEST()
valid = false
if (string.lower(arg1) == self.db.profile.master) then
valid = true
end
if (valid == false and self.db.profile.autoInvite == true) then
for j=1, GetNumFriends() do
local name, level, class, loc, connected, status = GetFriendInfo(j);
if (string.lower(name) == string.lower(arg1)) then
valid = true
end
end
end
if (valid) then
AcceptGroup()
self:RegisterEvent("PARTY_MEMBERS_CHANGED", "closePopup")
end
end
Enitria is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-21-2009, 12:07 AM  
basictheprogram
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 5
Uploads: 1
Re: update ?

Quote:
Originally posted by highlanderhcs
Anyone getting the same thing with "master" requesting group and slave rejecting it? Anyone willin to take up a update for 3.1.0?
I have a patch for this problem. Slight change in 3.1 as documented here:

http://www.wowwiki.com/API_AcceptGroup

I'm noob to WoWI, so how do I submit a patch?

I see the Addon is under "Outdated Mods" does Gnutelbit still maintain it?
basictheprogram is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-20-2009, 09:55 AM  
Suziekew
A Kobold Labourer

Forum posts: 1
File comments: 3
Uploads: 0
Quote:
Originally posted by Onelastpal
Yes getting the same error, drove me mad for the first few days. I have tried the multiple submission approach but only works sometimes, I have reverted to disabling add-ons then inviting and then re enabling, bit of a pain but what else is there, I Have not yet found anything similar and if anyone has please let us all know the program.
Tore my hair out for days trying to isolate the group refusal problem too. Now that I have, what I do is have the slave invite, then promote the master to leader and it seems to work just fine. Seems an ok workaround until we can get the addon updated.
Suziekew is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-20-2009, 12:22 AM  
Onelastpal
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Yes getting the same error, drove me mad for the first few days. I have tried the multiple submission approach but only works sometimes, I have reverted to disabling add-ons then inviting and then re enabling, bit of a pain but what else is there, I Have not yet found anything similar and if anyone has please let us all know the program.



Quote:
Originally posted by jmcgrath
I found this error occurs if u use the 'Useful Extras' addon, which gives u the option to auto-accept invites etc. Although its a different addon, disabling that feature in it fixed this problem.

I have not used twoboxtoolkit in a while, but if it has a similar feature then its definitly a patch related error.
Onelastpal is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-19-2009, 03:28 AM  
jmcgrath
A Kobold Labourer

Forum posts: 0
File comments: 48
Uploads: 0
I found this error occurs if u use the 'Useful Extras' addon, which gives u the option to auto-accept invites etc. Although its a different addon, disabling that feature in it fixed this problem.

I have not used twoboxtoolkit in a while, but if it has a similar feature then its definitly a patch related error.
jmcgrath is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-18-2009, 03:43 AM  
CokeZero
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Re: update ?

Quote:
Originally posted by highlanderhcs
Anyone getting the same thing with "master" requesting group and slave rejecting it? Anyone willin to take up a update for 3.1.0?
Yep, since the patch hit I have run into the same problem. I don't think this toolkit is as widely used as it used to be, so I wouldn't expect an update ;/. But I have found that if you spam your group invite key 5 or 6 times it will overload whatever is causing the problem and invite your group! I got frustrated with my slaves rejecting my invites and I mashed my invite hotkey over and over and it worked after 5 or 6 mashes lol. Everything else seems to work fine!
CokeZero is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 04-17-2009, 10:26 PM  
highlanderhcs
A Murloc Raider

Forum posts: 7
File comments: 3
Uploads: 0
update ?

Anyone getting the same thing with "master" requesting group and slave rejecting it? Anyone willin to take up a update for 3.1.0?
highlanderhcs is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 03-16-2009, 12:32 PM  
Spahut
A Flamescale Wyrmkin

Forum posts: 137
File comments: 111
Uploads: 0
It would be nice if you could set the 'slave' to report party chat instead of whisper, its hard to see real whispers currenly, but if they were separate i could change the colors.

Also it would be cool if the follower could say "Quest Accepted: <name>" ie, the name of the question

Last edited by Spahut : 03-16-2009 at 02:43 PM.
Spahut is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-31-2009, 06:13 AM  
Arnalix
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I play two chars, Shaman and Warlock on two side by side monitors, one machine, using KeyClone for attack purpases. For me this addon works very well, thank you for working on it

My wish would be to have two column table on slave side where in one column I could fill my own word to be monitored for in whispers from master ...like "logout", "drink", "sit", etc.

and in the other column I could fill myself the action the would be passed to interface .... like pressbutton29.

That way anyone could configure it to his own needs and be happy.
Assuming this would not violate Blizzard's restrictions on automation, I did not read them well.

Anyhow, thanks again for what is already done, it is of great help.

Arnalix
Arnalix is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-15-2009, 08:16 PM  
Cameo3907
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Installation Issue

I tried to install this addon by placing it the Addons folder, but nothing is loading into the UI. Ie the /tb command isn't regonized. Anyone know if I am doing something wrong?

Thanks!
Cameo3907 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-10-2008, 01:13 PM  
pacoboyd
A Deviate Faerie Dragon

Forum posts: 15
File comments: 12
Uploads: 1
Slave Attacking - Confusion

To clear up some confusion. The mod does not allow your "slave" to mimic attacks. You must get a third party piece of software that broadcasts your keystrokes to both instances of wow. Google dualboxing.
pacoboyd is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 12-09-2008, 07:57 AM  
Basse
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Re: Features.

Hello, nice addon, currently trying to get this to work :P

So far i can:

get the "dron/bot" to follow me, when i am on the master, via /followme, that works :P

But how the **** is the "slave" supposed to fight ?

I got the exact same keybindings and spells on my 2 different chars, 2 boomkins.
Then i thought, that it only "copies" the key i am pressing, so i made a macro like this:

/Target Waurw
/assist
/cast starfire

nothing happens from my slave : / any help?

And ty once again for making this addon although i got problems with it atm, i am sure its gonan be ****ing awesome when i dont nub around anymore
Basse is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-02-2008, 01:11 AM  
xocoru
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Unhappy Re: Features.

Quote:
Originally posted by Gnutelbit
I am still gathering features ideas for this mod. If you have any suggestions please let me know.
/followme does not work in russian localization ;(
xocoru is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-02-2008, 01:06 AM  
xocoru
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
hi! nice addon. but, "/followme" does not work in Russian localization ;(
xocoru is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-01-2008, 08:03 PM  
kevin16
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
hi
sry that I pop this topic up, i'm new here
I want to twobox and I have downloaded the addon
but my question is, how the hell does my 'slave' does the same attacks as my main?? :S
greetings
kevin
kevin16 is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.