Thread Tools Display Modes
03-07-08, 11:56 AM   #1
lazai
A Fallenroot Satyr
Join Date: Mar 2008
Posts: 26
Issue with "updated" mazzifier/Bongos

Howdy campers, I searched around best i could and couldn't find anything relating to the issue i am having. I play a 70 warrior, and use Joypunk's warrior layout. With the new settings the number 7 in battle and defensive stance (which should be spell reflect) is not showing at all.

Another issue I am finding is that while in combat if i swap from Berzerker stance to defensive stance I lose the last 3-4 buttons on my defensive stance bar (kind of a big deal when i am trying to disarm hehe) Anyone have any insight into this issue?


Code snippet from Mazzifier_layouts.lua
Code:
	["WarriorJoyluck_16"] = {
		[1] = {
			["stances"] = {
				[2] = 1,
				[1] = 0,
				[3] = 2,
			},
			["contents"] = {
				["page_3"] = {
					[1] = {
						["action"] = "Intercept",
					},
					[3] = {
						["action"] = "Berserker Rage",
					},
					[4] = {
						["action"] = "Hamstring",
					},
					[2] = {
						["action"] = "Victory Rush",
					},
					[5] = {
						["action"] = "Pummel",
					},
					[6] = {
						["action"] = "Whirlwind",
					},
					[7] = {},
					[8] = {},
					[9] = {},
				},
				["page_1"] = {
					[1] = {
						["binding"] = "1",
						["action"] = "Charge",
					},
					[9] = {
						["binding"] = "9",
						["action"] = "Rend",
					},
					[4] = {
						["binding"] = "4",
						["action"] = "Hamstring",
					},
					[2] = {
						["binding"] = "2",
						["action"] = "Victory Rush",
					},
					[5] = {
						["binding"] = "5",
						["action"] = "Shield Bash",
					},
					[6] = {
						["binding"] = "6",
						["action"] = "Thunder Clap",
					},
					[8] = {
						["binding"] = "8",
						["action"] = "Mocking Blow",
					},
					[7] = {
						["binding"] = "7",
						["action"] = "Spell Reflect",
					},
					[3] = {
						["binding"] = "3",
						["action"] = "Overpower",
					},
				},
				["page_2"] = {
					[2] = {
						["action"] = "Taunt",
					},
					[9] = {
						["action"] = "Rend",
					},
					[3] = {
						["action"] = "Revenge",
					},
					[1] = {
						["action"] = "Intervene",
					},
					[5] = {
						["action"] = "Shield Bash",
					},
					[4] = {
						["action"] = "Shield Block",
					},
					[8] = {
						["action"] = "Disarm",
					},
					[7] = {
						["action"] = "Spell Reflect",
					},
					[6] = {
						["action"] = "Thunder Clap",
					},
				},
			},
			["buttonSize"] = 38,
			["rows"] = 1,
			["hideEmpty"] = 1,
			["name"] = "BActionBar1",
			["anchor"] = {
				["y"] = 4,
				["x"] = 18,
				["point"] = "LEFT",
				["frame"] = "Minimap",
				["to"] = "RIGHT",
			},
			["allowDuplicates"] = true,
			["pages"] = 3,
			["numButtons"] = 9,
		},

Last edited by lazai : 03-07-08 at 12:26 PM.
  Reply With Quote
03-07-08, 12:12 PM   #2
lazai
A Fallenroot Satyr
Join Date: Mar 2008
Posts: 26
DOH! I think i figured it out. the actual ability is called "Spell Reflection" not spell reflect, hence it doesn't link properly and is hidden.

Edit: From the looks of things the other issue has to do with Bongos not being able to unhide buttons, so if i go into combat with a bar showing only 6 abilities it is not unhiding the other 3 (same goes if i start with defensive stance which has 9 abilities, my zerker stance ends up showing 3 blank boxes.)

Edit #2: Alrighty, I was right, it has something to do with Bongos being unable to make those buttons show back up in combat (stupid UI lock hehe) Temporary work around is to just show hidden buttons in auto bar.

Last edited by lazai : 03-07-08 at 12:32 PM.
  Reply With Quote
03-07-08, 05:22 PM   #3
lazai
A Fallenroot Satyr
Join Date: Mar 2008
Posts: 26
For those of you that want to use http://www.wowinterface.com/downloads/info7620.html the Bongos layout with BC spells just replace the joyluck bar [1] with the following, or just search for "Spell Reflect" and replace it with "Spell Reflection"

Code:
		["WarriorJoyluck_16"] = {
		[1] = {
			["stances"] = {
				[2] = 1,
				[1] = 0,
				[3] = 2,
			},
			["contents"] = {
				["page_3"] = {
					[1] = {
						["action"] = "Intercept",
					},
					[3] = {
						["action"] = "Berserker Rage",
					},
					[4] = {
						["action"] = "Hamstring",
					},
					[2] = {
						["action"] = "Victory Rush",
					},
					[5] = {
						["action"] = "Pummel",
					},
					[6] = {
						["action"] = "Whirlwind",
					},
					[7] = {},
					[8] = {},
					[9] = {},
				},
				["page_1"] = {
					[1] = {
						["binding"] = "1",
						["action"] = "Charge",
					},
					[9] = {
						["binding"] = "9",
						["action"] = "Rend",
					},
					[4] = {
						["binding"] = "4",
						["action"] = "Hamstring",
					},
					[2] = {
						["binding"] = "2",
						["action"] = "Victory Rush",
					},
					[5] = {
						["binding"] = "5",
						["action"] = "Shield Bash",
					},
					[6] = {
						["binding"] = "6",
						["action"] = "Thunder Clap",
					},
					[8] = {
						["binding"] = "8",
						["action"] = "Mocking Blow",
					},
					[7] = {
						["binding"] = "7",
						["action"] = "Spell Reflection",
					},
					[3] = {
						["binding"] = "3",
						["action"] = "Overpower",
					},
				},
				["page_2"] = {
					[2] = {
						["action"] = "Taunt",
					},
					[9] = {
						["action"] = "Rend",
					},
					[3] = {
						["action"] = "Revenge",
					},
					[1] = {
						["action"] = "Intervene",
					},
					[5] = {
						["action"] = "Shield Bash",
					},
					[4] = {
						["action"] = "Shield Block",
					},
					[8] = {
						["action"] = "Disarm",
					},
					[7] = {
						["action"] = "Spell Reflection",
					},
					[6] = {
						["action"] = "Thunder Clap",
					},
				},
			},
			["buttonSize"] = 38,
			["rows"] = 1,
			["hideEmpty"] = 1,
			["name"] = "BActionBar1",
			["anchor"] = {
				["y"] = 4,
				["x"] = 18,
				["point"] = "LEFT",
				["frame"] = "Minimap",
				["to"] = "RIGHT",
			},
			["allowDuplicates"] = true,
			["pages"] = 3,
			["numButtons"] = 9,
		}, {
  Reply With Quote
03-09-08, 05:46 PM   #4
joypunk
A Scalebane Royal Guard
Join Date: Mar 2006
Posts: 449
Hmm. That's odd.

My layout file says "Spell Reflect", but in game the spell certainly does say "Spell Reflection". I wonder if that was a recent change. I haven't Mazzified my Warrior in awhile (he's retired), so it's possible that it is a recent change.

Good to know. Thanks for the report, and for following up on it.

As for the issue with buttons disappearing while changing stances, yes, it is because of the combat limitations. The only fix we have (since Bongos is no longer being updated) is to check the "Show Hidden" buttons like you did.

(BTW, you mentioned autobar a few times... and I think that was a mistake. Autobar doesn't play any part in this mix.)
  Reply With Quote
03-09-08, 08:12 PM   #5
lazai
A Fallenroot Satyr
Join Date: Mar 2008
Posts: 26
Originally Posted by joypunk View Post
(BTW, you mentioned autobar a few times... and I think that was a mistake. Autobar doesn't play any part in this mix.)
Yeah, I caught it after i posted *chuckles*
  Reply With Quote
03-10-08, 11:39 AM   #6
Grimsin
A Molten Giant
 
Grimsin's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2006
Posts: 990
Bongos was and is being updated just now its bongos2. The unfortunate thing to this is if you upgrade to bongos2 you cant use the auto button layouts. Have to do your own from scratch. Theres a thread about this and from the sounds of things bongos3 is coming soon and there is some work being done to make it work with mazzle auto layouts. i hope.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Issue with "updated" mazzifier/autobar


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off