Download
(393Kb)
Download
Updated: 08-19-18 09:57 AM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:08-19-18 09:57 AM
Created:03-26-09 11:25 PM
Downloads:35,767
Favorites:132
MD5:

FreebTip  Popular! (More than 5000 hits)

Version: 8.0.1a
by: Freebaser [More]

Changes the look of the game tooltip. There is no in-game configuration. Check FreebTip.lua for options.

"/freebtip" - Slash command for in-game anchor

Some Features:
-- Item rarity border color
-- Unit's target
-- Class colored names
-- Guild tag coloring
-- Guild ranks
-- health bar values
-- level difficulty coloring
-- hide titles and realms
-- Mutiple linked item tooltips

8.0.1a
-- update for 8.0

7.1.0b
-- itemRef fix

7.1.0a
-- chat hover tip
-- fixes

7.0.3c
-- another artifact ilvl fix

7.0.3b
-- fix for world map tooltips
-- fix for incorrect ilvl on artifact off-hand weapon
-- show player title option
Post A Reply Comment Options
Unread 11-26-14, 01:25 PM  
raziki
A Kobold Labourer
 
raziki's Avatar

Forum posts: 1
File comments: 42
Uploads: 0
Re: Re: Re: Alliance or Horde icon

Originally Posted by dary1125
Originally Posted by Freebaser
Originally Posted by dary1125
How to display the Alliance or Horde icon?
Faction text can be enabled with "hideFaction = false", but the newest version has Faction Icon enabled for players.

@yourname400
Mouseover works for world objects, but UI elements will show on the anchor.

@Tonyleila
This was already working for me.
Can refer to the TipTop
Code:
function TipTop:FactionIcon()
	if not factionIcon then
		factionIcon = ttSBar:CreateTexture(nil, "OVERLAY")
		factionTable = {
				["Alliance"] = "Interface\\Timer\\Alliance-Logo",
				["Horde"] = "Interface\\Timer\\Horde-Logo",
				["Neutral"] = "Interface\\Timer\\Panda-Logo",
			}
	end
	factionIcon:SetWidth(db.factionIconSize)
	factionIcon:SetHeight(db.factionIconSize)
	factionIcon:SetPoint("CENTER", TipTop, db.factionIconPosition, db.factionIconX, db.factionIconY)
	factionIcon:Hide()
end

local function FactionIconUpdate()
	if UnitPlayerControlled("mouseover") then
		factionIcon:SetTexture(factionTable[UnitFactionGroup("mouseover")])
		factionIcon:Show()
	else
		factionIcon:Hide()
	end
end
- Where and what file do i need to config, and do i need to copy-paste this somehow?
- what do i do?

Would love to get that Tiny Horde/Alliance icon as you shown on the picture but in Freebtip.
Last edited by raziki : 11-26-14 at 01:40 PM.
Report comment to moderator  
Reply With Quote
Unread 11-25-14, 10:25 PM  
yourname400
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Re: Re: Alliance or Horde icon

Originally Posted by Freebaser
Originally Posted by dary1125
How to display the Alliance or Horde icon?
Faction text can be enabled with "hideFaction = false", but the newest version has Faction Icon enabled for players.


@yourname400
Mouseover works for world objects, but UI elements will show on the anchor.


@Tonyleila
This was already working for me.
thx )
Report comment to moderator  
Reply With Quote
Unread 11-25-14, 01:18 PM  
dary1125
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Border coloring error

Bug:
Comparison of two handed weapons would overlap
Mouseover, border coloring error,when set to focus display correctly

[IMG]



Report comment to moderator  
Reply With Quote
Unread 11-24-14, 02:19 PM  
dary1125
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Re: Re: Alliance or Horde icon

Originally Posted by Freebaser
Originally Posted by dary1125
How to display the Alliance or Horde icon?
Faction text can be enabled with "hideFaction = false", but the newest version has Faction Icon enabled for players.

@yourname400
Mouseover works for world objects, but UI elements will show on the anchor.

@Tonyleila
This was already working for me.
Can refer to the TipTop
Code:
function TipTop:FactionIcon()
	if not factionIcon then
		factionIcon = ttSBar:CreateTexture(nil, "OVERLAY")
		factionTable = {
				["Alliance"] = "Interface\\Timer\\Alliance-Logo",
				["Horde"] = "Interface\\Timer\\Horde-Logo",
				["Neutral"] = "Interface\\Timer\\Panda-Logo",
			}
	end
	factionIcon:SetWidth(db.factionIconSize)
	factionIcon:SetHeight(db.factionIconSize)
	factionIcon:SetPoint("CENTER", TipTop, db.factionIconPosition, db.factionIconX, db.factionIconY)
	factionIcon:Hide()
end

local function FactionIconUpdate()
	if UnitPlayerControlled("mouseover") then
		factionIcon:SetTexture(factionTable[UnitFactionGroup("mouseover")])
		factionIcon:Show()
	else
		factionIcon:Hide()
	end
end
Last edited by dary1125 : 11-25-14 at 04:55 AM.
Report comment to moderator  
Reply With Quote
Unread 11-24-14, 01:40 PM  
raziki
A Kobold Labourer
 
raziki's Avatar

Forum posts: 1
File comments: 42
Uploads: 0
Shrink - Increase Size of Tooltip?

I found that on some occations this Tooltip is taking up to much space.

Tooltip Size
- Can it be shrunked(or increased) in size to not take so much space?

If so How and what file do i need to open?
What do i need to configurate?

---------------

Can i also somehow Increase the "Visually" Background Horde // Alliance Crest?
- I cant barely see it (colorblind).
Please where and how do i increase the visually?

Also i would like to enable the "tiny" Horde/Alliance icon i had infront of the name, is it possible still?

Can i somehow Fade out the background - make it more transperant?
Last edited by raziki : 11-24-14 at 01:54 PM.
Report comment to moderator  
Reply With Quote
Unread 11-23-14, 01:25 AM  
Freebaser
A Molten Kobold Bandit
 
Freebaser's Avatar
AddOn Author - Click to view AddOns

Forum posts: 135
File comments: 307
Uploads: 10
Re: Alliance or Horde icon

Originally Posted by dary1125
How to display the Alliance or Horde icon?
Faction text can be enabled with "hideFaction = false", but the newest version has Faction Icon enabled for players.


@yourname400
Mouseover works for world objects, but UI elements will show on the anchor.


@Tonyleila
This was already working for me.
Report comment to moderator  
Reply With Quote
Unread 11-22-14, 10:26 PM  
dary1125
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
Alliance or Horde icon

How to display the Alliance or Horde icon?
Report comment to moderator  
Reply With Quote
Unread 11-22-14, 04:23 AM  
yourname400
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Re: how to make the tooltip follow the cursor

Originally Posted by yourname400
modify the tip.lua's attribute cursor=true is not working,please help!

my english is poor ,hope u can understand
mouseover other players and npc is working ,but self and spell is not
Last edited by yourname400 : 11-22-14 at 04:39 AM.
Report comment to moderator  
Reply With Quote
Unread 11-22-14, 04:16 AM  
yourname400
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Exclamation how to make the tooltip follow the cursor

modify the tip.lua's attribute cursor=true is not working,please help!

my english is poor ,hope u can understand
Report comment to moderator  
Reply With Quote
Unread 11-08-14, 11:04 AM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Map tooltips missing

Coud you skinn Tooltips of objekts on the map creaed by addons like MyRareFinder
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Unread 10-30-14, 10:12 PM  
EKE
An Aku'mai Servant
 
EKE's Avatar
AddOn Author - Click to view AddOns

Forum posts: 37
File comments: 548
Uploads: 13
edit: checking by self
Last edited by EKE : 11-01-14 at 09:44 PM.
Report comment to moderator  
Reply With Quote
Unread 10-24-14, 09:51 AM  
Valixx
A Deviate Faerie Dragon
 
Valixx's Avatar
AddOn Author - Click to view AddOns

Forum posts: 12
File comments: 7
Uploads: 1
Originally Posted by Tonyleila
Originally Posted by Freebaser
Originally Posted by Lozy


Why are my hp and mp bar overlapped ?
Looks like another addon is modifying the size of GameTooltipStatusBar.
Yep its Aurora I'll post it in the Aurora comments so the author can fix it
Type /aurora and disable the Tooltip Skin for now. That's the current fix.
__________________
I'm a Web-Designer with Love for WordPress, HTML5, CSS3, LESS and JavaScript.
You need anything? Message me!
Report comment to moderator  
Reply With Quote
Unread 10-21-14, 03:46 PM  
raziki
A Kobold Labourer
 
raziki's Avatar

Forum posts: 1
File comments: 42
Uploads: 0
Add Faction icon before name?

Hey i do like this addon...
but is it possible to add the Alliance/Horde icon infront of a players Name?

- Would make it easier determain if they are alliance or Horde, im on an PvE server.
- These Pandarens confuses most of us on the realm since we cant see if they are our or oposite faction,.
Report comment to moderator  
Reply With Quote
Unread 10-21-14, 10:11 AM  
dary1125
A Kobold Labourer

Forum posts: 0
File comments: 25
Uploads: 0
About cursor position

Like FreebTip very very much. Have two years of use。
The cursor is in the middle of the default,Adjustment of the cursor in the lower right corner of the prompt box?

Report comment to moderator  
Reply With Quote
Unread 10-19-14, 11:28 AM  
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view AddOns

Forum posts: 758
File comments: 2021
Uploads: 37
Originally Posted by Freebaser
Originally Posted by Lozy


Why are my hp and mp bar overlapped ?
Looks like another addon is modifying the size of GameTooltipStatusBar.
Yep its Aurora I'll post it in the Aurora comments so the author can fix it
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: