Download
(91Kb)
Download
Updated: 12-14-06 09:01 PM
Pictures
File Info
Updated:12-14-06 09:01 PM
Created:unknown
Downloads:19,746
Favorites:92
MD5:

FuBar - KTMFu  Popular! (More than 5000 hits)

Version: 2.1
by: bsdll [More]

This is a simple plugin to show/hide the KLH Threat Meter (KTM) window. It just hides and shows the window in whatever state is was previously.

You need the full KTM for this to work.

It is based on the DamageMetersFu mod by random. http://www.wowinterface.com/download...eMetersFu.html

Note: If you are updating this mod from the original WOW 1.12 release, you must delete the FuBar_KTMFu2 folder first, otherwise it may not work properly due to the name change.

Version History
2.0: (2006-12-14)
- Wow 2.0 Patch
- Changed name from KTMFu2 to KTMFu

1.0: (2006-11-09)
- First version

Post A Reply Comment Options
Unread 08-05-07, 03:50 PM  
6line
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Is KTMfu compatable with the new KLHThreatMeter v20.2?

Im getting the error:
Interface\AddOns\Fubar_KTMFu\KTMFu.lua:39:
attempt to index upvalue 'state' (a nil value)

I also changed the lua to work with R19 (as stated a few posts below) just to be sure it and also got an error:
Interface\AddOns\Fubar_KTMFu\KTMFu.lua:40:
attempt to index field 'frame' (a nil value)
Report comment to moderator  
Reply With Quote
Unread 07-24-07, 06:06 AM  
malcite
A Flamescale Wyrmkin
 
malcite's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 122
File comments: 9
Uploads: 1
corsslinking some more since someone can't see ktm listed on this site.

curse-gaming has updated their site recently so here is the new link
http://www.curse.com/downloads/details/4823/

and btw, might be a good idea for someone to add ktm to this site. as long as they give credit to the original author and don't claim it as their own mod it should be alright to post it here right?
Last edited by malcite : 07-24-07 at 06:07 AM.
Report comment to moderator  
Reply With Quote
Unread 02-18-07, 05:55 AM  
azmodanrom
A Kobold Labourer
 
azmodanrom's Avatar

Forum posts: 0
File comments: 38
Uploads: 0
there is a new mod on wowace with the same name
http://files.wowace.com/FuBar_KTMFu/

but i think different author and different scope.
Report comment to moderator  
Reply With Quote
Unread 02-08-07, 04:28 AM  
paradigmlie
A Kobold Labourer

Forum posts: 0
File comments: 8
Uploads: 0
Yah, tahnks a bunch for the quick fix.
Report comment to moderator  
Reply With Quote
Unread 02-05-07, 05:28 AM  
Yelina
An Aku'mai Servant

Forum posts: 37
File comments: 51
Uploads: 0
Originally posted by Kamishimi
[b]If you want to fix FuBar_KTMFu to work with KTM R19 until the author updates it, you'll need to update some code in the addon.
Thank you Kamishimi.
That worked for me.
It was annoying everything blocked when you mouse over the fubar.
Report comment to moderator  
Reply With Quote
Unread 02-04-07, 01:03 PM  
Kamishimi
A Chromatic Dragonspawn

Forum posts: 151
File comments: 5
Uploads: 0
If you want to fix FuBar_KTMFu to work with KTM R19 until the author updates it, you'll need to update some code in the addon.

In file Fubar_KTMFu/KTMFu.lua, change this block of code...

Code:
function KTMFu:OnClick()
	if (state.closed == false) then
		KLHTM_SetVisible(false);
	else
		KLHTM_SetVisible(true);
	end
end
...to this...

Code:
function KTMFu:OnClick()
	-- Check if main KTM frame is visible
	if (thismod.frame:IsVisible()) then
		-- Hide KTM's main frame, object name is 'thismod.frame'
		thismod.frame:Hide();
	else
		-- Show KTM's main frame, object name is 'thismod.frame'
		thismod.frame:Show();
	end
end
...and delete this line...

Code:
local state = KLHTM_GuiState;
Report comment to moderator  
Reply With Quote
Unread 02-03-07, 04:15 AM  
azmodanrom
A Kobold Labourer
 
azmodanrom's Avatar

Forum posts: 0
File comments: 38
Uploads: 0
KTM R19

ktm threat meter got released in a new version R19
http://www-en.curse-gaming.com/files...lhthreatmeter/

it seems incompatible with the old version.
(on line 39 of KTMFu.lua - "if (state.closed == false) then" - state is now nil. probably the variable got renamed.

pls fix
Report comment to moderator  
Reply With Quote
Unread 01-02-07, 10:50 AM  
bsdll
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 9
Uploads: 1
Re: Fixes for a few things...

Originally posted by PProvost
I figured out what is wrong with your profile/db code.

You are using different DB names in your TOC file and in your Lua code. That explains why the FuBar built in properties aren't storing too

Also, you probably should take a pass through your version numbers. You have 1.1 in the Lua code, 2.0 in the TOC and 2.1 here on the download site.
TOC:
## SavedVariables: KTMFuDB

LUA
KTMFu:RegisterDB("KTMFuDB");

I'm not sure where your reference to the different names points to. Personally I have the mod display with no text and it remembers the setting no problems.

There was previously a reference to KTMFu2, I deleted that when WOW 2 was released. Maybe it's worth searching the WTF folder for ktmfu and deleting all the occurances and deleting the mod folder and installing again. From what you have posted it sounds like you know enough about what you are doing to understand that.

## I was just about to click Submit Reply and I think I just figured out what the problem is - the naming difference of the old and new mod (KTMFu2 vs KTMFu). Wiping the folder and downloading will fix the problem, because the name change has given you two copies of the mod instead of one. I will add a note to do so in the description.

As to the version, it only became 2.1 because I accidently uploaded a non-folder version of the mod, but wowinterface doesn't let you replace a file you - have to change the version number as well. Because the mod is so simple in function I didn't dig in too deep to clean up the numbers...
Report comment to moderator  
Reply With Quote
Unread 12-31-06, 10:32 PM  
PProvost
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 126
Uploads: 23
Thumbs up Fixes for a few things...

I figured out what is wrong with your profile/db code.

You are using different DB names in your TOC file and in your Lua code. That explains why the FuBar built in properties aren't storing too

Also, you probably should take a pass through your version numbers. You have 1.1 in the Lua code, 2.0 in the TOC and 2.1 here on the download site.
Report comment to moderator  
Reply With Quote
Unread 12-31-06, 04:35 AM  
PProvost
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 126
Uploads: 23
It seems that you aren't storing any of the menu options in the profile db. I uncheck all the "Show" options and when I relog, they come back checked.

Otherwise, good mod. Thanks!
Report comment to moderator  
Reply With Quote
Unread 12-14-06, 09:33 PM  
Jaim Sandar
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 357
Uploads: 1
Re: Re: KLH ThreatMeter

Originally posted by bsdll
I hope they don't mind the cross site link... KLH is found on curse at:

http://wow.curse-gaming.com/en/files...lhthreatmeter/

Beware of the new curse web site - it will often give page not available messages.
Yeah, but its getting better lately.

Also, I don't like the way the file names are formatted.

Thank you for the link.
Report comment to moderator  
Reply With Quote
Unread 12-14-06, 09:06 PM  
bsdll
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 9
Uploads: 1
Re: KLH ThreatMeter

Originally posted by Jaim Sandar
Where can I get KTM? I can't find it on wowinterface.com
I hope they don't mind the cross site link... KLH is found on curse at:

http://wow.curse-gaming.com/en/files...lhthreatmeter/

Beware of the new curse web site - it will often give page not available messages.
Report comment to moderator  
Reply With Quote
Unread 12-14-06, 09:03 PM  
bsdll
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 8
File comments: 9
Uploads: 1
Originally posted by Deathhamster
This isn't zipped within a sub-folder - what should the folder be called?
I thought I fixed that, but my second upload disappeared. I have uploaded a new version.

If anyone got the non-folder version, it should go in a folder called:

Fubar_KTMFu

in the Interface/Addons folder as per usual.

When the version says 2.1 then the download will have corrected itself.
Report comment to moderator  
Reply With Quote
Unread 12-14-06, 12:43 PM  
Deathhamster
A Defias Bandit

Forum posts: 2
File comments: 34
Uploads: 0
This isn't zipped within a sub-folder - what should the folder be called?
Report comment to moderator  
Reply With Quote
Unread 12-14-06, 10:08 AM  
jonathon
A Chromatic Dragonspawn
 
jonathon's Avatar
AddOn Author - Click to view AddOns

Forum posts: 179
File comments: 9
Uploads: 1
the latest version is found on curse gaming
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: