FuBar_LocationFu
Keeps track of your current location.
German translation: Chinkuwaila
TO INSTALL: Put the FuBar_LocationFu folder into
\World of Warcraft\Interface\AddOns\
Embedded Libraries: TouristLib by Boss.
Features:
Shows you current zone/subzone.
Shows status of the current area.
Shows the standard latitude, longitude coordinates for WoW, for both your current position, and if viewing the map, the position under your cursor.
Shows the level range of your current zone.
Shows the instances in your current zone.
Shows the recommended zones/instances you should go to (based on level and friendliness of the area).
On the map, hovering over a zone lists the level of the zone, all the instances, and their levels. It also shows the friendliness of the zone.
Clicking opens the world map.
Ctrl-clicking will open atlas.
Shift-clicking puts information in your chat box, to send to others.
Shouldn't that be GetProfessionInfo(i)? (i instead of 1)
Open interface/addons/FuBar_LocationFu/LocationFu.lua
On line 336 find GetNumSkillLines() and replace it with GetProfessions()
On line 340 find GetSkillLineInfo() and replace it with GetProfessionInfo()
GetNumSkillLines() and GetSkillLineInfo() were both removed and replaced by GetProfessions() and GetProfessionInfo()
CK, I've got a fix for the fishing thing. I sent you a PM. Would love a response. Want to help.
Date: 2010-10-16 14:45:11
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\FuBar_LocationFu\LocationFu.lua line 205:
Tourist-2.0: Bad argument #2 to `GetFactionColor' (string expected, got nil)
Debug:
[C]: ?
[C]: error()
...nterface\AddOns\FuBar\libs\AceLibrary\AceLibrary.lua:122:
...nterface\AddOns\FuBar\libs\AceLibrary\AceLibrary.lua:75
(tail call): ?
...ns\FuBar_LocationFu\libs\Tourist-2.0\Tourist-2.0.lua:173: GetFactionColor()
FuBar_LocationFu\LocationFu.lua:205: OnTextUpdate()
...AtlasLootFu\Libs\FuBarPlugin-2.0\FuBarPlugin-2.0.lua:372: UpdateText()
...AtlasLootFu\Libs\FuBarPlugin-2.0\FuBarPlugin-2.0.lua:352: Update()
...AtlasLootFu\Libs\FuBarPlugin-2.0\FuBarPlugin-2.0.lua:551: Show()
FuBar\FuBar.lua:970: LoadPlugin()
FuBar\FuBar.lua:1094: object_method()
...Ons\FuBar\libs\LibRockTimer-1.0\LibRockTimer-1.0.lua:289:
...Ons\FuBar\libs\LibRockTimer-1.0\LibRockTimer-1.0.lua:227
Date: 2010-10-15 23:49:51
ID: 22
Error occured in: Global
Count: 1
Message: ..\AddOns\FuBar_LocationFu\LocationFu.lua line 336:
attempt to call global 'GetNumSkillLines' (a nil value)
Debug:
[C]: GetNumSkillLines()
FuBar_LocationFu\LocationFu.lua:336: OnUpdateFuBarTooltip()
...FuBar\libs\LibFuBarPlugin-3.0\LibFuBarPlugin-3.0.lua:634: runChildren()
...nterface\AddOns\FuBar\libs\Tablet-2.0\Tablet-2.0.lua:2370: children()
...nterface\AddOns\FuBar\libs\Tablet-2.0\Tablet-2.0.lua:2414: Open()
...nterface\AddOns\FuBar\libs\Tablet-2.0\Tablet-2.0.lua:2548:
...nterface\AddOns\FuBar\libs\Tablet-2.0\Tablet-2.0.lua:2542
...FuBar\libs\LibFuBarPlugin-3.0\LibFuBarPlugin-3.0.lua:664:
...FuBar\libs\LibFuBarPlugin-3.0\LibFuBarPlugin-3.0.lua:662
AddOns:
There was an error on 4.0.1 i had open a ticket about it
Remove:
local minFish = Tourist:GetFishingLevel(zoneText)
if minFish then
local numSkills = GetNumSkillLines()
local r,g,b = 1,0,0
for i=1, numSkills do
local _, skillName, skillRank
skillName, _, _, skillRank, _, _, _, _, _, _, _, _, _ = GetSkillLineInfo(i)
if skillName == GetSpellInfo(7620) and minFish < skillRank then
r,g,b = 0,1,0
end
end
cat:AddLine(
'text', L["Fishing:"],
'text2', minFish,
'text2R', r,
'text2G', g,
'text2B', b
)
end
You will no longer have a line telling you what the minimum skill to fish in this zone, but really... that's not very important and since 3.1 it means a lot less than it used to.
Anyone wanting to make the effort to fix this bug should look at the WoW API for GetProfessions(); and GetProfessionInfo(); I don't care to make new characters to test all the combinations of professions...
if minFish then
local r,g,b = 1,0,0
_, _, _, fishIndex, _, _ = GetProfessions()
_, _, _, skillRank, _, _, _, _, _, _, _, _, _ = GetProfessionInfo(fishIndex)
if minFish < skillRank then
r,g,b = 0,1,0
end
cat:AddLine(
'text', L["Fishing:"],
'text2', minFish,
'text2R', r,
'text2G', g,
'text2B', b
)
end
Date: 2009-12-09 01:25:34
ID: 2
Error occured in: Global
Count: 1
Message: ..\AddOns\FuBar_LocationFu\LocationFu.lua line 71:
attempt to index global 'MinimapToggleButton' (a nil value)
Debug:
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2463:
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2436
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2510:
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2503
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2569:
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2546
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2694:
...AddOns\Cartographer\libs\LibRock-1.0\LibRock-1.0.lua:2689
[C]: ?
[C]: pcall()
FuBar\FuBar.lua:829:
FuBar\FuBar.lua:824
FuBar\FuBar.lua:959: LoadPlugin()
FuBar\FuBar.lua:1094: object_method()
...tographer\libs\LibRockTimer-1.0\LibRockTimer-1.0.lua:289:
...tographer\libs\LibRockTimer-1.0\LibRockTimer-1.0.lua:227
AddOns:
Swatter, v5.6.4424 (KangaII)
agExtras, vr709
agUnitFrames, vr709
Babylonian, v5.1.DEV.130
Bartender4, v4.4.2
BrokerCPU, v30100.$Revision: 16 $
ButtonFacade, v3.3.300
ButtonFacadeElegance, v3.3.0
Carbonite, v3.3
Cartographer, v2.0
CartographerGroupColors, v2.0
CartographerInstanceLoot, v2.0
CartographerInstanceMaps, v2.0
CartographerInstanceNotes, v2.0
CartographerNotes, v2.0
CartographerZoneInfo, v2.0
Chicchai, v3.0
Chinchilla, vv2.0.8
Clique, vwowi:revision
Configator, v5.1.DEV.190
CurseProfiler, v
DataStore, v3.2.003
DBMCore, v
DebugLib, v5.1.DEV.130
DoubleWideTradeSkills, vv0.1
EavesDrop, v2.1
Eclipse, v3
FuBar, v
FuBarBagFu, vv1.1.6
FuBarClockFu, v3.0
FuBarExperienceFu, v1.1 $Revision: 65606 $
FuBarLocationFu, v3.0
FuBarMoneyFu, vv1.2.2
Grid, v1.30200.2009120101
GridStatusMissingBuffs, v3.2.0.74
HoloFriends, v
Identity, v30100
InFlight, v3.3.001
InFlightLoad, v3.3.001
Informant, v5.6.4424 (KangaII)
LibRock10, v
LightHeaded, v298
LightHeadedDataC, v298
LightHeadedDataNPC, v298
MikScrollingBattleText, v5.4.70
MinimapButtonFrame, v3.0.9
MinimapButtonFrameSkinPack, v3.0
Omen, v3.0.8
OmniCC, v2.5.8
OmniCCPulse, v1.1.2
OneBag3, vv3.3.11
OneBank3, vv3.3.8
OPie, v
Postal, v3.2.2
Prat30, v3.3
Prat30Libraries, v
Quartz, v1.0
QuartzGCD, v1.0
QuartzInterrupt, v1.0
QuartzLatency, v1.0
QuartzMirror, v1.0
QuartzPlayer, v1.0
QuartzProcs, v2.2
QuartzRange, v1.0
QuartzSwing, v1.0
QuartzTarget, v1.0
QuartzTimer, v1.0
QuartzTradeskill, v1.0
SatrinaBuffFrame, v3.1
Stubby, v5.6.4424 (KangaII)
TipTac, v09.11.28
TipTacItemRef, v09.08.13
TipTacTalents, v09.08.13
TomTom, vwowi:revision
TomTomFu2, v1
TourGuide, v3.2.0.55
WIM, v3.2.2
WoWProTourGuideAlliance, v0.6.5
BlizRuntimeLib_enUS v3.3.0.30300 <us>
(ck=74b)
Hey CK, love the addon, but I've recently switched from Fubar to an LDB addon. Any hopes that this might get an update as an LDB plugin? Cheers! -k
instances, and their levels. It also shows the friendliness of the zone<
Cannot find this option. When i open the map there are no changes. When
hovering over a zone i can see the zone name only.
Looked for settings / options to change this, but found nothing there too
Can someone help me? Or is this function buggy?
Will this be updated for 3.1 and is it working properly as is?
Anybody knows an alternative?