Unsure if this addon is still being supported, but after the update to 9.0.1 I'm getting the following error upon logging in to the game. Thanks.
6x ...libs\LibGuildPositions-1.0\LibGuildPositions-1.0-100001.lua:109: hooksecurefunc(): GuildRoster is not a function [string "=[C]"]: in function `hooksecurefunc' [string "@HandyNotes_Guild\libs\LibGuildPositions-1.0\LibGuildPositions-1.0-100001.lua"]:109: in main chunk
3x HandyNotes_Guild\GuildNotes.lua:2: Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0". [C]: ? DataStore\libs\AceAddon-3.0\AceAddon-3.0-12.lua:189: in function `EmbedLibrary' DataStore\libs\AceAddon-3.0\AceAddon-3.0-12.lua:171: in function `EmbedLibraries' DataStore\libs\AceAddon-3.0\AceAddon-3.0-12.lua:138: in function `NewAddon' HandyNotes_Guild\GuildNotes.lua:2: in main chunk
Locals: (*temporary) = "Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0"."
1x HandyNotes_Guild\GuildNotes.lua:2: Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0". [C]: ? ...xternal\Wildpants\libs\AceAddon-3.0\AceAddon-3.0-12.lua:220: in function `EmbedLibrary' ...xternal\Wildpants\libs\AceAddon-3.0\AceAddon-3.0-12.lua:202: in function `EmbedLibraries' ...xternal\Wildpants\libs\AceAddon-3.0\AceAddon-3.0-12.lua:169: in function `NewAddon' HandyNotes_Guild\GuildNotes.lua:2: in main chunk
Locals: (*temporary) = "Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0"."
Why doesn't HandyNotes_Guild appear as a HandyNotes Plugin in Interface options? How is it configured? How do I know if it's working correctly? How do I know when a fault lies with LibGuildPositions and not this addon?
I have several issues with the latest version of this addon:
1) The color of the players icon is alway the default one (grey)
2) The players tooltip gives the default level (0) and default class name (Unknown)
I corrected it this way:
1) add this function at the end of the "GuildNotes.lua" file:
function strsplitHN(delimiter, text) if type(delimiter) == "string" and type(text) == "string" then local list = {} local pos = 1 if strfind("", delimiter, 1) then -- this would result in endless loops error("delimiter matches empty string!") end while 1 do local first, last = strfind(text, delimiter, pos) if first then -- found? tinsert(list, strsub(text, pos, first-1)) pos = last+1 else tinsert(list, strsub(text, pos)) break end end return list end end
We are seeing two minor issue since the update of HandyNotes to use HereBeDragons. 1) Guildies who run HandyNotes_Guild do show up on the map, but classes have lost their colors. Everyone's icon is white. 2) One guildie says he is getting taint errors implicating HandyNotes_Guild on occasion, but the rest of us aren't seeing that. We are attempting to reproduce. Thanks!
Not sure if this is an issue with HandyNotes_Guild or the backend LibGuildPosition-1.0. When guild members are in their garrison there relative map position coordinates within the garrison is displayed on any map a third party guild member is looking at. This results in a player appearing to be in the same relative position (relative to the map window) to a third party player on all maps the player is currently viewing.
function strsplitHN(delimiter, text) if type(delimiter) == "string" and type(text) == "string" then local list = {} local pos = 1 if strfind("", delimiter, 1) then -- this would result in endless loops error("delimiter matches empty string!") end while 1 do local first, last = strfind(text, delimiter, pos) if first then -- found? tinsert(list, strsub(text, pos, first-1)) pos = last+1 else tinsert(list, strsub(text, pos)) break end end return list end end
There are several bugs that come with this addon as of 5.4.7.
The addon will lay out a spot for your own caracter (very annoying)
When in a group with a guildy, the addon will still add a spot for him (and since the addon is less precise than the game in terms of speed of placement, you end up having two spots in different locations).
Characters' names now have a "-REALM_NAME" appended to them on the player labels on the map (useless).
I corrected these various points by edditing the .lua file, but I doubt my corrections are the most efficient ones... but they seam to be working so far...
I added this function :
function strsplitHN(delimiter, text) if type(delimiter) == "string" and type(text) == "string" then local list = {} local pos = 1 if strfind("", delimiter, 1) then -- this would result in endless loops error("delimiter matches empty string!") end while 1 do local first, last = strfind(text, delimiter, pos) if first then -- found? tinsert(list, strsub(text, pos, first-1)) pos = last+1 else tinsert(list, strsub(text, pos)) break end end return list end end
I updated this function :
function GuildHandler:OnEnter(mapFile, coord) local tooltip = self:GetParent() == WorldMapButton and WorldMapTooltip or GameTooltip if ( self:GetCenter() > UIParent:GetCenter() ) then -- compare X coordinate tooltip:SetOwner(self, "ANCHOR_LEFT") else tooltip:SetOwner(self, "ANCHOR_RIGHT") end local player = findPlayer(mapFile, coord) if not player then return end local name = player.name local playerMinimalName = strsplitHN("-",name)[1] local playerServerName = strsplitHN("-",name)[2] local realmName = string.gsub(GetRealmName()," ",""); if realmName == playerServerName then tooltip:AddLine("|cffe0e0e0" .. playerMinimalName .. "|r") else tooltip:AddLine("|cffe0e0e0" .. name .. "|r") end tooltip:AddLine(fmt("L%d - |cff%02x%02x%02x%s|r", playerLevel[name] or 0, player.icon.r * 255, player.icon.g * 255, player.icon.b * 255, playerClassLocalized[name] or UNKNOWN)) tooltip:Show() end
and this one :
function Guild:UpdateMember(event, sender, x, y, zone) local myPlayerName = UnitName("player"); local realmName = string.gsub(GetRealmName()," ",""); if sender ~= myPlayerName.."-"..realmName then if event == "Clear" then recycle(database[sender]) database[sender] = nil elseif event == "Position" then local senderName = strsplitHN("-",sender)[1] if UnitInParty(senderName) == nil then database[sender].coord = HandyNotes:getCoord(x,y) database[sender].zone = zone else recycle(database[sender]) database[sender] = nil end end self:SendMessage("HandyNotes_NotifyUpdate", "Guild") end end
will you be considering making a handy note app that makes your handynote compatiable with carbonite. since the orginal peron stop playing a long time ago.
will you be considering making a handy note app that makes your handynote compatiable with carbonite. since the orginal peron stop playing a long time ago.
It appears this is no longer working, no errors or anything like that, just nothing on the map to show where other guild members are (obviously for those guildies who also use this). I've also checked on LibGuildPositions but that hasn't been updated since before the last update for this! Is there any chance that this will be updated to work once more?
Unsure if this addon is still being supported, but after the update to 9.0.1 I'm getting the following error upon logging in to the game. Thanks.
6x ...libs\LibGuildPositions-1.0\LibGuildPositions-1.0-100001.lua:109: hooksecurefunc(): GuildRoster is not a function
[string "=[C]"]: in function `hooksecurefunc'
[string "@HandyNotes_Guild\libs\LibGuildPositions-1.0\LibGuildPositions-1.0-100001.lua"]:109: in main chunk
Locals:
getting this error:
3x HandyNotes_Guild\GuildNotes.lua:2: Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0".
[C]: ?
DataStore\libs\AceAddon-3.0\AceAddon-3.0-12.lua:189: in function `EmbedLibrary'
DataStore\libs\AceAddon-3.0\AceAddon-3.0-12.lua:171: in function `EmbedLibraries'
DataStore\libs\AceAddon-3.0\AceAddon-3.0-12.lua:138: in function `NewAddon'
HandyNotes_Guild\GuildNotes.lua:2: in main chunk
Locals:
(*temporary) = "Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0"."
Per BugSack, I get the following error:
1x HandyNotes_Guild\GuildNotes.lua:2: Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0".
[C]: ?
...xternal\Wildpants\libs\AceAddon-3.0\AceAddon-3.0-12.lua:220: in function `EmbedLibrary'
...xternal\Wildpants\libs\AceAddon-3.0\AceAddon-3.0-12.lua:202: in function `EmbedLibraries'
...xternal\Wildpants\libs\AceAddon-3.0\AceAddon-3.0-12.lua:169: in function `NewAddon'
HandyNotes_Guild\GuildNotes.lua:2: in main chunk
Locals:
(*temporary) = "Usage: EmbedLibrary(addon, libname, silent, offset): 'libname' - Cannot find a library instance of "AceHook-3.0"."
Why doesn't HandyNotes_Guild appear as a HandyNotes Plugin in Interface options? How is it configured? How do I know if it's working correctly? How do I know when a fault lies with LibGuildPositions and not this addon?
Hello,
I have several issues with the latest version of this addon:
1) The color of the players icon is alway the default one (grey)
2) The players tooltip gives the default level (0) and default class name (Unknown)
I corrected it this way:
1) add this function at the end of the "GuildNotes.lua" file:
function strsplitHN(delimiter, text)
if type(delimiter) == "string" and type(text) == "string" then
local list = {}
local pos = 1
if strfind("", delimiter, 1) then -- this would result in endless loops
error("delimiter matches empty string!")
end
while 1 do
local first, last = strfind(text, delimiter, pos)
if first then -- found?
tinsert(list, strsub(text, pos, first-1))
pos = last+1
else
tinsert(list, strsub(text, pos))
break
end
end
return list
end
end
2) Just after line 174, insert this line of code:
name = strsplitHN("-",name)[1]
This will correct the issues.
Kind regards,
Kouro
We are seeing two minor issue since the update of HandyNotes to use HereBeDragons. 1) Guildies who run HandyNotes_Guild do show up on the map, but classes have lost their colors. Everyone's icon is white. 2) One guildie says he is getting taint errors implicating HandyNotes_Guild on occasion, but the rest of us aren't seeing that. We are attempting to reproduce. Thanks!
I also have the color issue...
Not sure if this is an issue with HandyNotes_Guild or the backend LibGuildPosition-1.0. When guild members are in their garrison there relative map position coordinates within the garrison is displayed on any map a third party guild member is looking at. This results in a player appearing to be in the same relative position (relative to the map window) to a third party player on all maps the player is currently viewing.
inside "GuildNotes.lua"
where did you add this function
There are several bugs that come with this addon as of 5.4.7.
The addon will lay out a spot for your own caracter (very annoying)
When in a group with a guildy, the addon will still add a spot for him (and since the addon is less precise than the game in terms of speed of placement, you end up having two spots in different locations).
Characters' names now have a "-REALM_NAME" appended to them on the player labels on the map (useless).
I corrected these various points by edditing the .lua file, but I doubt my corrections are the most efficient ones... but they seam to be working so far...
I added this function :
I updated this function :
and this one :
In case it helps anyone...
will you be considering making a handy note app that makes your handynote compatiable with carbonite. since the orginal peron stop playing a long time ago.
will you be considering making a handy note app that makes your handynote compatiable with carbonite. since the orginal peron stop playing a long time ago.
i cant get this addon to work
It appears this is no longer working, no errors or anything like that, just nothing on the map to show where other guild members are (obviously for those guildies who also use this). I've also checked on LibGuildPositions but that hasn't been updated since before the last update for this! Is there any chance that this will be updated to work once more?
Date: 2011-01-04 00:51:02
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\HandyNotes_Guild\GuildNotes.lua line 119:
Cannot find a library with name 'Astrolabe-0.4'
Debug:
(tail call): ?
[C]: ?
[C]: error()
ControlFreak\Dongle.lua:42: DongleStub()
HandyNotes_Guild\GuildNotes.lua:119: in main chunk
AddOns:
Swatter, v5.9.4938 (WhackyWallaby)
Ace3, v
ACP, v3.3.12
Altoholic, v4.0.005
AtlasLoot, vv6.01.02
AtlasLootBurningCrusade, vv6.01.02
AtlasLootCataclysm, vv6.01.02
AtlasLootClassicWoW, vv6.01.02
AtlasLootCrafting, vv6.01.02
AtlasLootWorldEvents, vv6.01.02
AtlasLootWrathoftheLichKing, vv6.01.02
AucAdvanced, v5.9.4938 (WhackyWallaby)
AucFilterBasic, v5.9.4938 (WhackyWallaby)
AucFilterOutlier, v5.9.4938.2531
AucMatchUndercut, v5.9.4938.2531
AucStatHistogram, v5.9.4938 (WhackyWallaby)
AucStatiLevel, v5.9.4938 (WhackyWallaby)
AucStatPurchased, v5.9.4938 (WhackyWallaby)
AucStatSales, v5.9.4938.2842
AucStatSimple, v5.9.4938 (WhackyWallaby)
AucStatStdDev, v5.9.4938 (WhackyWallaby)
AucStatWOWEcon, v5.9.4938.2530
AucUtilAHWindowControl, v5.9.4938.3311
AucUtilAppraiser, v5.9.4938.2530
AucUtilAskPrice, v5.9.4938.3175
AucUtilAutoMagic, v5.9.4938.3142
AucUtilCompactUI, v5.9.4938.2530
AucUtilEasyBuyout, v5.9.4938.3583
AucUtilGlypher, v5.9.4938.2545
AucUtilItemSuggest, v5.9.4938.3108
AucUtilPriceLevel, v5.9.4938.2545
AucUtilScanButton, v5.9.4938.2530
AucUtilScanFinish, v5.9.4938.2530
AucUtilScanProgress, v5.9.4938.2530
AucUtilScanStart, v5.9.4938.4819
AucUtilSearchUI, v5.9.4938.3655
AucUtilSimpleAuction, v5.9.4938.4546
AucUtilVendMarkup, v5.9.4938.2530
Babylonian, v5.1.DEV.130
Bagnon, v2.14.0
BagnonForever, v1.1.2
BagnonTooltips, v
Bartender4, v4.4.15
BeanCounter, v5.9.4938 (WhackyWallaby)
ButtonFacade, v4.0.340
Configator, v5.1.DEV.282
ControlFreak, v3.0.3.15
DataStore, v4.0.001
DataStoreAchievements, v4.0.001
DataStoreAuctions, v4.0.001
DataStoreCharacters, v4.0.001
DataStoreContainers, v4.0.001
DataStoreCrafts, v4.0.001
DataStoreCurrencies, v4.0.001
DataStoreInventory, v4.0.001
DataStoreMails, v4.0.001
DataStorePets, v4.0.001
DataStoreQuests, v4.0.001
DataStoreReputations, v4.0.001
DataStoreSpells, v4.0.001
DataStoreStats, v4.0.001
DataStoreTalents, v4.0.001
DBMCore, v
DebugLib, v5.1.DEV.275
Decursive, v2.6.0.1
Enchantrix, v5.9.4938 (WhackyWallaby)
EnchantrixBarker, v5.9.4938 (WhackyWallaby)
GearScore, v4.1.02
HandyNotes, v1.2.0
HandyNotesGuild, v1.3
SlideBar, v5.9.4938 (WhackyWallaby)
Stubby, v5.9.4938 (WhackyWallaby)
BlizRuntimeLib_enUS v4.0.3.40000 <us>
(ck=917)
Delete the Libguildpositions folder out of the Handynotes, and replace it with the one from below... All your guildmates need to download it tho.
http://wow.curse.com/downloads/wow-addons/details/libguildpositions-1-0.aspx