Multiboxing.com - Multiboxing in World of Warcraft and more!
          

Go Back   Multiboxing in World of Warcraft and Beyond! > All Gaming Forums > World of Warcraft - Macros, UIs, Mods, Addons

Reply
 
LinkBack Thread Tools Display Modes
Old 12-11-2009, 01:01 PM   #31
Iru
Senior Member
 
Iru's Avatar
 
Join Date: Nov 2009
Posts: 221
Default Re: Team Malaias - FTL Setup

Quote:
Originally Posted by Ualaa View Post
...we just go to each character, during character set creation, and assign a unique modifier to each. So I check left alt for one, right alt for another, left ctrl for a third, right ctrl for a fourth, and left alt + left ctrl for the fifth. And that's the extent of my configuration...
Tim, being able to specific a per-game modifier mask in PB that then applies to all key maps with that game as a target would save a LOT of configuration work.

Please consider this a feature request.
Iru is offline   Reply With Quote
Old 12-11-2009, 03:35 PM   #32
Tim
Administrator
 
Tim's Avatar
 
Join Date: Jun 2009
Location: USA
Posts: 6,768
Default Re: Team Malaias - FTL Setup

Quote:
Originally Posted by Iru View Post
Tim, being able to specific a per-game modifier mask in PB that then applies to all key maps with that game as a target would save a LOT of configuration work.

Please consider this a feature request.
Could you do me a favor, post in the software forums about your idea, give me some examples so I can understand it.

If it sounds good, I'll add it
Tim is offline   Reply With Quote
Old 01-03-2010, 02:11 AM   #33
jal
Member
 
Join Date: Oct 2009
Posts: 41
Default Re: Team Malaias - FTL Setup

- updated Team Malaias to Team Faeil.
- added SexyMap and GearScore addons to list of addons.
__________________
---
Team Faeil <Quinquevirate>
Faeil Protection Paladin (80) and Einya Discipline Priest (80)
Haille (80), Malaia (80) and Malaena (80) Elemental Shaman
jal is offline   Reply With Quote
Old 01-03-2010, 03:50 AM   #34
jal
Member
 
Join Date: Oct 2009
Posts: 41
Default Re: Team Malaias - FTL Setup

added details of my FTL Click-casting for my Tankadin, Shamans and Warlock.
__________________
---
Team Faeil <Quinquevirate>
Faeil Protection Paladin (80) and Einya Discipline Priest (80)
Haille (80), Malaia (80) and Malaena (80) Elemental Shaman
jal is offline   Reply With Quote
Old 08-08-2010, 01:06 PM   #35
Senior Member
 
Join Date: Aug 2010
Posts: 104
Default Re: Team Malaias - FTL Setup

Heyhey.

Im starting to get this now.
So far ive made a "FTLfollow button (key f)" and a "FTLtargetbutton"
Followbutton works but the targetbutton...hm, it seems i could need some help please.

The FTLtarget looks like this:


/stopmacro [nomod]
/a
[mod:ctrl,mod:shift,nomod:alt,target=TOON1][mod:ctrl,mod:alt,nomod:shift,target=TOON2][mod:alt,mod:shift,nomod:ctrl,target=TOON3][mod:ctrl,mod:alt,mod:shift,target=TOON4][mod:ctrl,target=TOON5]

This is bound to " | " (the key left for 1-9).
Whenever i target a enemy on toon1 and press " | ", the others also target that target. Now if i press f.ex key 3, all does lightning bolt.

The thing is though, that i would like it so that if im in toon1's window, and target a enemy and hit 3, they should attack. This is because i feel having to press " | " first takes to long.

Ive tried keymapping stuff like:
If game1 presses 3, game2 presses ctrl + shift + 3 and even tried making a macro on key 3:

/stopmacro [nomod]
/a
[mod:ctrl,mod:shift,nomod:alt,target=TOON1]
[mod:ctrl,mod:alt,nomod:shift,target=TOON2]
[mod:alt,mod:shift,nomod:ctrl,target=TOON3]
[mod:ctrl,mod:alt,mod:shift,target=TOON4]
[mod:ctrl,target=TOON5]
/cast lightning bolt
/targetlasttarget

..but it doesnt work.

Please help
Newbox is offline   Reply With Quote
Old 08-17-2010, 01:16 AM   #36
Junior Member
 
Join Date: Feb 2010
Location: QLD, Australia
Posts: 4
Default Re: Team Malaias - FTL Setup

Great guide,

question though, I've got the key remapping done in pwnboxer. But I'm a little confused about the code spit out by perl. Where do I bring that into pwnboxer? also does it need to be broken up or just saved as one config file?

Forgive me if I have it confused, but I do look forward to the your reply.

Cheers

Forry
Forry is offline   Reply With Quote
Old 08-28-2010, 01:25 AM   #37
Junior Member
 
Join Date: Aug 2010
Posts: 9
Default Re: Team Malaias - FTL Setup

Quote:
Originally Posted by Forry View Post
Great guide,

question though, I've got the key remapping done in pwnboxer. But I'm a little confused about

the code spit out by perl. Where do I bring that into pwnboxer? also does it need to be broken

up or just saved as one config file?

Forgive me if I have it confused, but I do look forward to the your reply.

Cheers

Forry
I'll do an example to understand where the code generated must go.

Suppose a default pwnboxer configuration file 5_Shaman.pbcfg:

(initial part truncated, in your text editor search the string: "Key Remapping")

If no key remapping has yet been defined you will found
Code:
"Key Remapping" : 
	{
		"Enabled" : true,
		"Items" : null,
		"Key Toggle" : "None"
	},
	"Keyboard Configuration" : 
	{
		"Active Keyset" : 1,
		"KeySet1" : 
		{
...........ETC...ETC...TRUNCATED
You have to modify the code in this way; ie cut & paste the code generated from perl script:
Code:
"Key Remapping" : 
	{
		"Enabled" : true,
		"Items" : 
		[
			
			{
				"Active Window" : 0,
				"Input Key" : "1",
				"Output Key" : "Shift + Alt + 6",
				"Output Window" : 1
			},
			
			{
				"Active Window" : 0,
				"Input Key" : "1",
				"Output Key" : "Shift + Alt + 6",
				"Output Window" : 2
			}
		],
		"Key Toggle" : "None"
	},
	"Keyboard Configuration" : 
	{
		"Active Keyset" : 1,
		"KeySet1" : 
		{
...........ETC...ETC...TRUNCATED
See the difference?

I hope this helps,

Ciao.

p.s. Sorry for my bad english
Axel is offline   Reply With Quote
Old 02-14-2011, 04:00 PM   #38
Junior Member
 
Join Date: Apr 2010
Posts: 16
Default Re: Team Malaias - FTL Setup

I also can not get this to work and am using Pwnboxer and Jamba.

I think I have Pwnboxer meymaping set up since I can see the macro on the bar of my second toon light up. It seems that the macro is just not working.

I am trying at this time to set up numpad - as Follow and + as assist.

This is my macro for follow. Not going into assist at this point until follow works.

/stopmacro [nomod]
/target [mod:ctrl,mod:shift,nomod:alt,target=Dazarian][mod:ctrl,mod:alt,nomod:shift,target=Lazarian][modalt,mod:shift,nomod:ctrl,target=toon3][mod:ctrl,mod:alt,mod:shift,target=toon4][mod:ctrl,target=toon5]
/follow
/targetlasttarget


This does not work. Not only does it not follow, it does not target so /follow will of course not work.

What am I doing wrong?

Thanks
dgriffith is offline   Reply With Quote
Old 02-27-2011, 10:11 PM   #39
Senior Member
 
Drarkan's Avatar
 
Join Date: Aug 2009
Location: Vancouver BC
Posts: 503
Default Re: Team Malaias - FTL Setup

wholy crikey thats a crazy setup!!! might be a little too complicated for me, for now
Drarkan is offline   Reply With Quote
Old 02-28-2011, 12:10 AM   #40
Junior Member
 
Join Date: Apr 2010
Posts: 16
Default Re: Team Malaias - FTL Setup

It is really not all that bad to set up once you figure out some details that some of the posts did not mention. I am still playing with this method of multiboxing. For now, even though I have 3 accts I am sticking to only 2 accts with my Pallys until I get the kinks worked out.
dgriffith is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Team Malaias describes his FTL Setup Lindline Multiboxing.com Website Announcements 2 11-29-2010 12:04 AM
Team binding setup pally+4shams Snowy42 General Discussions 6 06-20-2010 04:35 PM
team setup? Hots General Discussions 14 11-27-2009 10:07 AM
How many can this setup run! please help Semifaded Multiboxing Computer Hardware 6 10-06-2009 08:06 PM
Bar setup Aiford Multiboxing Software 3 08-27-2009 02:41 AM


SEO by vBSEO 3.3.2