Thread Tools Display Modes
12-04-07, 07:01 PM   #1
Alkar
A Chromatic Dragonspawn
 
Alkar's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 195
Havent seen Detard much ..Bongos2?

Just wanted to see how bongos2 intergration was coming if detard is still working on that or found a fix for bongos in mazzle to fix the verious pet bar problems and what not.

I have looked around the code in bongos and for the life of me i cant figure out where the problems lay with the dang pet bar...

Well back to the search hope ya still around detard
  Reply With Quote
12-04-07, 07:29 PM   #2
DeTard
Premium Member
Premium Member
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 189
Oh I'm here... lol. Just haven't had a whole lot of time to work on coding much of ANYTHING lately. Holiday season is rough for me as it is, and this one seems to be particularly busy. I'm not sure where to get started yet either, but I'll start reading through code soon enough.
  Reply With Quote
12-04-07, 08:04 PM   #3
obsidianblack
A Cobalt Mageweaver
 
obsidianblack's Avatar
Join Date: Jul 2007
Posts: 239
I would really like to help on this one. I can figure out a lot of this coding stuff but unfortunatly i need a starting point. So if you'd like some help i'd love to. Where would you suggest i start looking for the differences in the changes between bongos and bongos2.
__________________

  Reply With Quote
12-04-07, 09:13 PM   #4
Alkar
A Chromatic Dragonspawn
 
Alkar's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 195
might start looking in the main bogons luas and stuff also in the mazzifier and other mazz folders for things like bongos
  Reply With Quote
12-05-07, 04:25 PM   #5
ganders
A Flamescale Wyrmkin
AddOn Author - Click to view addons
Join Date: May 2007
Posts: 131
Bongos was really changed up by Mazzle. You'd most likely need Mazzlefizz to come in and list the changes he made, because just comparing the two side by side really won't help you very much.
  Reply With Quote
12-06-07, 12:37 AM   #6
pokyoky
A Cyclonian
Join Date: Feb 2007
Posts: 44
I have done some compares on the bongos file from the original and the mazzle version, its pretty easy to find the changes that maz made but the problem for me anyway is that Bongos2 looks to be a complete rewrite so unfortunately its far beyond my skills to fix
  Reply With Quote
09-02-08, 04:31 PM   #7
Culin23
A Murloc Raider
Join Date: May 2007
Posts: 6
I added support for bongos3 to the hotspot to show your bags and keyring.

In MazzleUI_Core, replace
Code:
function MazzleUI:BarsToggle()
	if (BBagBar) then
 		-- Bongos1
 		if (BBagBar:IsVisible()) then 
			BBar.Hide(BBar.IDToBar("bags"), 1)
			BBar.Hide(BBar.IDToBar("menu"), 1)
			BBar.Hide(BBar.IDToBar("key"), 1)
		else
			BBar.Show(BBar.IDToBar("bags"), 1)
			BBar.Show(BBar.IDToBar("menu"), 1)
			BBar.Show(BBar.IDToBar("key"), 1)
		end
 	
	elseif (BBar) then
		-- Bongos2
		BBar:Get("bags"):ToggleFrame()
		BBar:Get("menu"):ToggleFrame()
		
 	end
end
with

Code:
function MazzleUI:BarsToggle()
	if (BBagBar) then
 		-- Bongos1
 		if (BBagBar:IsVisible()) then 
			BBar.Hide(BBar.IDToBar("bags"), 1)
			BBar.Hide(BBar.IDToBar("menu"), 1)
			BBar.Hide(BBar.IDToBar("key"), 1)
		else
			BBar.Show(BBar.IDToBar("bags"), 1)
			BBar.Show(BBar.IDToBar("menu"), 1)
			BBar.Show(BBar.IDToBar("key"), 1)
		end
 	
	elseif (BBar) then
		-- Bongos2
		BBar:Get("bags"):ToggleFrame()
		BBar:Get("menu"):ToggleFrame()
		
	elseif (Bongos3) then
		--Bongos3
		Bongos3.Bar:Get("bags"):ToggleFrame()
		Bongos3.Bar:Get("menu"):ToggleFrame() 
	end
end
  Reply With Quote
09-02-08, 04:51 PM   #8
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
If im not wrong, Bongos 1, 2 and 3 is discontinued, as Tuller has everything set on Dominos (also found on this site)
  Reply With Quote
09-05-08, 08:52 PM   #9
LittleMagica
A Kobold Labourer
Join Date: Jan 2007
Posts: 1
Yes...have seen this too and now i use Trinitybars in my Mazzle...i dont know what changes the Bongos-Addon has in mazzle..
When the only thing the Buttonstyle and fill in with spells is...so i can live without this...becouse that was one thing that dont work for me...
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Havent seen Detard much ..Bongos2?


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