Download
(10 Kb)
Download
Updated: 01/17/24 10:28 AM
Compatibility:
Endless Archive (9.2.5)
Updated:01/17/24 10:28 AM
Created:06/04/14 06:19 PM
Monthly downloads:43,007
Total downloads:4,669,074
Favorites:1,873
MD5:
LibMapPins  Popular! (More than 5000 hits)
LibMapPins-1.0 is a library for custom map pins.

Two important Notes to mod authors

[1] No LibStub support!

Do not use LibStub to reference this library.
Code:
  local LMP = LibStub("LibMapPins-1.0")
Change code to the following
Code:
  local LMP = LibMapPins
[2] AUI support was removed in 2017 for Revision 17 by Sensi. Please remove all LibMapPin calls to AUI functions.

Previous LibMapPins code as of r17
Code:
function lib.AUI.DoesMinimapExist() end
function lib.AUI.IsMinimapEnabled() end
function lib.AUI.IsMinimapLoaded() end
function lib.AUI.AddCustomPinType() end
function lib.AUI.UpdateQueuedCustomPinTypes() end
function lib.AUI.SetQueuedCustomPinType() end
Typical example code from mods
Code:
    if LMP.AUI.IsMinimapEnabled() then
        zo_callLater(CreatePins, 50)
    else
        CreatePins()
    end
Change code to the following
Code:
    CreatePins()
How to install:
You may either embed the library in your addon and load the files from your addon manifest, or have the library installed like any other normal addon.

If you are depending on the library being installed separately and are not embedding it, then you must include this line in your addon manifest:
Code:
## DependsOn:  LibMapPins-1.0
How to use:
Add a reference to the library using:
[highlight="Lua"]local LMP = LibMapPins[/highlight]

Alternativly you may add a reference to the library from LibStub: (Not Recomended)
[highlight="Lua"]local LMP = LibStub("LibMapPins-1.0")[/highlight]

Arguments used by most of the functions:
Code:
pinType:       either pinTypeId or pinTypeString, you can use both
pinTypeString: unique string name of your choice (it will be used as a name
               for global variable)
pinTypeId:     unique number code for your pin type, return value from lib:AddPinType
               ( local pinTypeId = _G[pinTypeString] )
pinLayoutData: table which can contain the following keys:
   level =     number > 2, pins with higher level are drawn on the top of pins
               with lower level.
               Examples: Points of interest 50, quests 110, group members 130,
               wayshrine 140, player 160.
   texture =   string or function(pin). Function can return just one texture
               or overlay, pulse and glow textures.
   size =      texture will be resized to size*size, if not specified size is 20.
   tint  =     ZO_ColorDef object or function(pin) which returns this object.
               If defined, color of background texture is set to this color.
   grayscale = true/false, could be function(pin). If defined and not false,
               background texure will be converted to grayscale (http://en.wikipedia.org/wiki/Colorfulness)
   insetX =    size of transparent texture border, used to handle mouse clicks
   insetY =    dtto
   minSize =   if not specified, default value is 18
   minAreaSize = used for area pins
   showsPinAndArea = true/false
   isAnimated = true/false
Add custom pin type (group of pins):
[highlight="Lua"]lib:AddPinType(pinTypeString, pinTypeAddCallback, pinTypeOnResizeCallback, pinLayoutData, pinTooltipCreator)
-- returns: pinTypeId
--
-- pinTypeString: string
-- pinTypeAddCallback: function(pinManager), will be called every time when map
-- is changed. It should create pins on the current map using the
-- lib:CreatePin(...) function.
-- pinTypeOnResizeCallback: (nilable) function(pinManager, mapWidth, mapHeight),
-- is called when map is resized (zoomed).
-- pinLayoutData: (nilable) table, details above
-- pinTooltipCreator: (nilable) etiher string to display or table with the
-- following keys:
-- creator = function(pin) that creates tooltip - or I should say function
-- that will be called when mouse is over the pin, it does not
-- need to create tooltip.
-- tooltip = (nilable) tooltip mode, number between 1 and 4. It is
-- defined in WorldMap.lua as follows:
-- local TOOLTIP_MODE = {
-- INFORMATION = 1,
-- KEEP = 2,
-- MAP_LOCATION = 3,
-- IMPERIAL_CITY = 4,
-- }
-- hasTooltip = (optional), function(pin) which returns true/false to
-- enable/disable tooltip.
-- gamepadCategory = (nilable) string
-- gamepadCategoryId = (nilable) number, right now it uses one of:
-- local GAMEPAD_PIN_ORDERS = {
-- DESTINATIONS = 10,
-- AVA_KEEP = 20,
-- AVA_OUTPOST = 21,
-- AVA_RESOURCE = 22,
-- AVA_GATE = 23,
-- AVA_ARTIFACT = 24,
-- AVA_IMPERIAL_CITY = 25,
-- AVA_FORWARD_CAMP = 26,
-- CRAFTING = 30,
-- QUESTS = 40,
-- PLAYERS = 50,
-- }
-- gamepadCategoryIcon = (nilable) texture path
-- gamepadEntryName = (nilable) string
-- gamepadSpacing = (nilable) boolean[/highlight]

Create single pin on the current map, primary use is from pinTypeAddCallback:
[highlight="Lua"]lib:CreatePin(pinType, pinTag, locX, locY, areaRadius)
-- pinType: pinTypeId or pinTypeString
-- pinTag: can be anything, but I recommend using table or string with
-- additional pin details. You can use it later in code.
-- ( local pinTypeId, pinTag = pin:GetPinTypeAndTag() )
-- Argument pinTag is used as an id for functions
-- lib:RemoveCustomPin(...) and lib:FindCustomPin(...).
-- locX, locY: normalized position on the current map
-- areaRadius: (nilable)[/highlight]

Add filter checkboxes to the world map:
[highlight="Lua"]lib:AddPinFilter(pinType, pinCheckboxText, separate, savedVars, savedVarsPveKey, savedVarsPvpKey, savedVarsImperialPvpKey)
-- Returns: pveCheckbox, pvpCheckbox
-- (newly created checkbox controls for PvE and PvP context of the world map)
--
-- pinType: pinTypeId or pinTypeString
-- pinCheckboxText: (nilable), description displayed next to the checkbox, if nil
-- pinCheckboxText = pinTypeString
-- separate: (nilable), if false or nil, checkboxes for PvE and PvP context
-- will be linked together. If savedVars argument is nil, separate
-- is ignored and checkboxes will be linked together.
-- savedVars: (nilable), table where you store filter settings
-- savedVarsPveKey: (nilable), key in the savedVars table where you store filter
-- state for PvE context. If savedVars table exists but this key
-- is nil, state will be stored in savedVars[pinTypeString].
-- savedVarsPvpKey: (nilable), key in the savedVars table where you store filter
-- state for PvP context, used only if separate is true. If separate
-- is true, savedVars exists but this argument is nil, state will
-- be stored in savedVars[pinTypeString .. "_pvp"].
-- savedVarsImperialPvpKey: (nilable), key in the savedVars table where you store
-- filter state for Imperial City PvP context, used only if separate
-- is true. If separate is true, savedVars exists but this argument
-- is nil, state will be stored in savedVars[pinTypeString .. "_imperialPvP"].[/highlight]

Add click handlers for pins, if handler is nil, any existing handler will be removed.
[highlight="Lua"]lib:SetClickHandlers(pinType, LMB_handler, RMB_handler)
-- pinType: pinTypeId or pinTypeString
-- LMB_handler: hadler for left mouse button
-- RMB_handler: handler for right mouse button
--
-- handler = {
-- {
-- name = string or function(pin) end --required
-- callback = function(pin) end --required
-- show = function(pin) end, (optional) default is true. Callback function
-- is called only when show returns true.
-- duplicates = function(pin1, pin2) end, (optional) default is true.
-- What happens when mouse lick hits more than one pin. If true,
-- pins are considered to be duplicates and just one callback
-- function is called.
-- gamepadName = the same as name, but for gamepad
-- },
-- }
-- One handler can have defined more actions, with different conditions in show
-- function. First action with true result from show function will be used.
-- handler = {
-- {name = "name1", callback = callback1, show = show1},
-- {name = "name2", callback = callback2, show = show2},
-- ...
-- }[/highlight]

Refresh pins. If pinType is nil, refreshes all custom pins:
[highlight="Lua"]lib:RefreshPins(pinType)
-- pinType: pinTypeId or pinTypeString[/highlight]

Check if pins are enabled:[highlight="Lua"]
lib:IsEnabled(pinType)
-- returns: true/false
--
-- pinType: pinTypeId or pinTypeString[/highlight]

Set enabled/disabled state of the given pinType and if exists, update filter checkbox on the world map:
[highlight="Lua"]lib:SetEnabled(pinType, state)
-- pinType: pinTypeId or pinTypeString
-- state: true/false, as false is considered nil, false or 0. All other
-- values are true.[/highlight]

Enable pins of the given pinType:
[highlight="Lua"]lib:Enable(pinType)
-- pinType: pinTypeId or pinTypeString[/highlight]

Disable pins of the given pinType:
[highlight="Lua"]libisable(pinType)
-- pinType: pinTypeId or pinTypeString[/highlight]

Find custom pin:
[highlight="Lua"]lib:FindCustomPin(pinType, pinTag)
-- returns pin
--
-- pinType: pinTypeId or pinTypeString
-- pinTag: id assigned to the pin by function lib:CreatePin(...)[/highlight]

Remove custom pin. If pinTag is nil, all pins of the given pinType are removed.
[highlight="Lua"]lib:RemoveCustomPin(pinType, pinTag)
-- pinType: pinTypeId or pinTypeString
-- pinTag: id assigned to the pin by function lib:CreatePin(...)[/highlight]


Change a single key in the pinLayoutData table:
[highlight="Lua"]lib:SetLayoutKey(pinType, key, data)
-- pinType: pinTypeId or pinTypeString
-- key: key name in pinLayoutData table
-- data: data to be stored in pinLayoutData[key][/highlight]

Replace whole pinLayoutData table:
[highlight="Lua"]lib:SetLayoutData(pinType, pinLayoutData)
-- pinType: pinTypeId or pinTypeString
-- pinLayoutData: table[/highlight]

Get a single key from the pinLayoutData table:
[highlight="Lua"]lib:GetLayoutKey(pinType, key)
-- returns: pinLayoutData[key]
--
-- pinType: pinTypeId or pinTypeString
-- key: key name in pinLayoutData table[/highlight]

Get a reference to the pinLayoutData table:
[highlight="Lua"]lib:GetLayoutData(pinType)
-- returns: pinLayoutData
--
-- pinType: pinTypeId or pinTypeString[/highlight]

Set new add callback:
[highlight="Lua"]lib:SetAddCallback(pinType, pinTypeAddCallback)
-- pinType: pinTypeId or pinTypeString
-- pinTypeAddCallback: function(pinManager)[/highlight]

Set new OnResize callback:
[highlight="Lua"]lib:SetResizeCallback(pinType, pinTypeOnResizeCallback)
-- pinType: pinTypeId or pinTypeString
-- pinTypeOnResizeCallback: function(pinManager, mapWidth, mapHeight)[/highlight]

Get zone and subzone derived from map texture:
[highlight="Lua"]lib:GetZoneAndSubzone(alternative, bStripUIMap, bKeepMapNum)
-- You can select from 3 formats:
-- 1: "zone", "subzone" (that's what I use in my addons)
-- 2: "zone/subzone" (used by HarvestMap)
-- If 2nd argument is nil or false, function returns first format

-- Additionally if the third argument bKeepMapNBum is true you will preserve
-- the ending of the map texture.
-- 3: "zone/subzone_0" or "zone", "subzone_0" (used by Destinations)[/highlight]

Example:
[highlight="Lua"]
-- "Art/maps/skyrim/blackreach_base_0.dds",
zone, subzone = LMP:GetZoneAndSubzone()
-- returns skyrim, blackreach_base

-- "Art/maps/skyrim/blackreach_base_0.dds",
zone, subzone = LMP:GetZoneAndSubzone(false, false, true)
-- returns skyrim, blackreach_base_0

--"Art/maps/skyrim/blackreach_base_0.dds",
texturename = LMP:GetZoneAndSubzone(true)
-- returns skyrim/blackreach_base

-- "art/maps/murkmire/ui_map_tsofeercavern01_0.dds",
texturename = LMP:GetZoneAndSubzone(true, true)
-- returns murkmire/tsofeercavern01

-- "Art/maps/skyrim/blackreach_base_0.dds",
texturename = LMP:GetZoneAndSubzone(true, false, true)
-- returns skyrim/blackreach_base_0
[/highlight]

Example of code is attached to the end of LibMapPins-1.0.lua or check code of SkyShards or LoreBooks.
r39

- API Bump

r38

- Pre PTS Version, API Bump

r37

- Pre PTS Version

r36

- Change to mod name in manifest file to address potential byte encoding issue for players using French Canadian OS and playing the game in English.

r35

- API Bump

r34

- Hotfix for lib variable

r33

- Removed LibStub support in accordance with other mods that have done the same such as LibAddonMenu, LibCustomMenu, and others.

r32

- API Bump
- Removed duplicate slash command
- Added check for use with LibStub

r31

- API Bump
- Address issue where Click Handlers require a specific attribute gamepadName (ZOSDanBaston)

r30

- API Bump

r29
- Add asserts when duplicate pin name used
- Add SetPinFilterHidden to hide pin filters for pve or pvp specific conetnt

r28
- Minor adjustment for mods using greyscale feature

r27 (Scootworks)
- Fix for texture name "/art/maps/guildmaps/eyevea_base_0.dds" being truncated to only "eyevea_base_0" rather then "guildmaps/eyevea_base_0"

r26 (Scootworks)
- Check for grey scale property prior to attempting to set it

r25 (Scootworks)
- Refactor code
- Removed all AUI dummy routines. They do nothing and support was removed in 2017.

r24 (Sharlikran)
- Revert to r22 because of regressions in r23

r23 (Scootworks)
- Refactor code

r22 (Scootworks)
- Add support for tool tips when using a gamepad

r21 (Scootworks, Sharlikran)
- Scootworks: Change the behavior of lib:MyPosition() for use with mods so it does not print a message to the chat window.
- Sharlikran: I do not feel lib:MyPosition() was intended to be used for this purpose as you can not provide the different arguments for GetZoneAndSubzone to produce the different map name formats.

r20 (Scootworks)
- Optimize GetZoneAndSubzone to reduce mysplit calls

r19 (Sharlikran)
- Update to GetZoneAndSubzone. No longer truncates map name in odd ways.
- Optional argument to preserve map ending such as blackreach_base_0 (Used with Destinations)
- Check Description for examples.

r18 (AM)
- removed libstub requirement (works with and without)
- added /lmppos and /lmploc
- added /mypos & /myloc if /mypos not defined
- changed /mypos to use 0.nnn decimal location co-ordinate system instead of nn.nnn

r17 (modified by Sensi)
- Removed AUI support. (It is no longer needed)

r16 (modified by Ayantir)
- Fixed tiny typo

r15 (modified by Ayantir)
- Added Battleground compatibility

r14 (modified by Sensi)
- fixed a memory leak in combination with AUI Minimap

r13 (modified by Sensi)
- updated for API to 100013 (Update 8 - Orsinium)
- add compatibility for "AUI Minimap" version 1.2
- the function "CreatePin" is only redirected when associated pin type is enabled

r12 (modified by Sensi)
- incorrect upload, do not use this version.

r11
- fixed compatibility issue with new version of AUI

r10
- updated for API to 100012 (Update 7 - Imperial City)
- updated LibStub to r4

r9
- another improvements for AUI compatibility (tanks for the code, Sensi)

r8
- fixed compatibility issue with AUI

r7
- updated for API to 100011 (Update 6)
- key "tooltip" in tooltip layout should now contain index number instead of tooltip control - Usually you will want to use number 1 for InformationTooltip.
- pinLayouData no longer supports key "color", it was replaced by "tint". Color was simple table with r,g,b,a values, tint is ZO_ColorDef object.

r6
- added scrollbox for world map filters

r5
- updated EMM minimap support for the latest beta EMM 0.9.9.3e

r4
- updated API version
- added support for beta version of EMM minimap (tested with EMM 0.9.9.3d)

r3
- updated API version
- updated LibStub to r2
- added ZOS disclosure

r2
- fixed bug in function lib:AddPinType()
- fixed a few typos in comments and in the sample code

r1
- initial release
Archived Files (39)
File Name
Version
Size
Uploader
Date
1.0 r38
10kB
Sharlikran
10/24/22 10:19 AM
1.0 r37
10kB
Sharlikran
07/31/22 09:06 AM
1.0 r36
10kB
Sharlikran
05/15/22 09:29 PM
1.0 r35
10kB
Sharlikran
04/18/22 10:55 AM
1.0 r34
10kB
Sharlikran
10/12/21 09:29 AM
1.0 r33
10kB
Sharlikran
10/10/21 09:11 PM
1.0 r32
10kB
Sharlikran
10/04/21 10:51 AM
1.0 r31
10kB
Sharlikran
05/28/21 04:21 PM
1.0 r30
10kB
Sharlikran
03/09/21 12:55 PM
1.0 r29
10kB
Sharlikran
06/23/20 09:18 AM
1.0 r28
9kB
Sharlikran
06/19/20 08:10 PM
1.0 r27
9kB
Sharlikran
06/15/20 11:05 PM
1.0 r26
9kB
Sharlikran
06/15/20 11:52 AM
1.0 r25
9kB
Sharlikran
06/14/20 09:51 AM
1.0 r24
10kB
Sharlikran
06/11/20 04:36 AM
1.0 r23
10kB
Sharlikran
06/10/20 10:41 AM
1.0 r22
10kB
Sharlikran
05/28/20 06:23 AM
1.0 r21
10kB
Sharlikran
05/19/20 11:01 PM
1.0 r20
9kB
Sharlikran
05/09/20 06:01 AM
1.0 r19
10kB
Sharlikran
05/08/20 01:29 PM
1.0 r18
9kB
AssemblerManiac
11/18/19 02:12 PM
1.0 r17
10kB
Sensi
06/10/17 09:14 PM
1.0 r17
10kB
Sensi
06/10/17 09:05 PM
1.0 r16
9kB
Ayantir
06/10/17 05:40 AM
1.0 r15
9kB
Ayantir
05/26/17 07:43 PM
1.0 r14
10kB
Sensi
01/29/16 08:09 AM
1.0 r13
10kB
Sensi
01/27/16 12:57 PM
1.0 r12
10kB
Sensi
01/26/16 03:41 PM
1.0 r11
10kB
Garkin
09/15/15 06:53 AM
1.0 r10
10kB
Garkin
08/31/15 09:00 AM
1.0 r9
10kB
Garkin
03/07/15 04:17 PM
1.0 r8
10kB
Garkin
03/05/15 11:45 AM
1.0 r7
10kB
Garkin
02/23/15 09:09 PM
1.0 r6
10kB
Garkin
10/31/14 10:34 AM
1.0 r5
9kB
Garkin
09/16/14 09:03 AM
1.0 r4
9kB
Garkin
09/16/14 08:24 AM
1.0 r3
8kB
Garkin
07/31/14 10:04 AM
1.0 r2
8kB
Garkin
06/13/14 06:04 PM
1.0 r1
8kB
Garkin
06/09/14 09:51 AM


Post A Reply Comment Options
Unread 06/15/20, 08:39 AM  
Blackwolfe

Forum posts: 37
File comments: 127
Uploads: 0
Ah, ok. I know my error messages showed some addons that weren't dungeon champions. I don't have votans group pins. Guess votan needs to update it.
Report comment to moderator  
Reply With Quote
Unread 06/15/20, 11:39 AM  
Raidendex

Forum posts: 2
File comments: 6
Uploads: 0
From looking at the code it's more of a fix on this lib's side that is needed probably, as other addons do not directly call the function, but it ends up here as more of a listener.

Line in question
local grayscale = ZO_MapPin.PIN_DATA[pinTypeId].grayscal

I'm guessing pinTypeId for custom pins is not part of that list... maybe a check is needed here if pinTypeIdin the list before accessing things.
Report comment to moderator  
Reply With Quote
Unread 06/15/20, 12:03 PM  
Blackwolfe

Forum posts: 37
File comments: 127
Uploads: 0
I get no error with votans group pins.

This with r25, not r26.
Last edited by Blackwolfe : 06/15/20 at 12:11 PM.
Report comment to moderator  
Reply With Quote
Unread 06/15/20, 01:12 PM  
Raidendex

Forum posts: 2
File comments: 6
Uploads: 0
Well it's fixed now, but you had to be in a group and seems like they had to be active in trial or battleground. I couldn't make it happen in a group with just my alt sitting there casting spells

Originally Posted by Blackwolfe
I get no error with votans group pins.

This with r25, not r26.
Report comment to moderator  
Reply With Quote
Unread 06/16/20, 03:15 AM  
Baertram
Super Moderator
 
Baertram's Avatar
ESOUI Super Moderator
AddOn Author - Click to view AddOns

Forum posts: 5004
File comments: 6062
Uploads: 78
Got no error with r26 but it somehow caused Votans Minimap to show mappins like worldbosses at wrong locations in Northern Elsweyr.
e.g. if I opened the map I was standing right in front of the tiger boss .
If I changed my view angle the Minimap told me I was still looking at it but the map said I was looking 180° in the other direction.
And if I moved it updated in the Minimap even more weird. Somehow like a mirror or "missplaced". I could run in circles and never reach it if I had followed the minimap's info

After a reloadui it was fixed in that zone.
Did not happen in another zone like Western Skyrim later, with the same char.

Not tested with r27 yet.
Last edited by Baertram : 06/16/20 at 03:16 AM.
Report comment to moderator  
Reply With Quote
Unread 06/16/20, 03:17 AM  
Ezech

Forum posts: 0
File comments: 18
Uploads: 0
Hi,

I get this error (r25, r26, r27, no issue with r24):

user:/AddOns/DungeonChampions/DungeonChampions.lua:207: attempt to index a nil value
stack traceback:
user:/AddOns/DungeonChampions/DungeonChampions.lua:207: in function 'QueueCreatePins'
user:/AddOns/DungeonChampions/DungeonChampions.lua:224: in function 'MapCallback_unknown'
EsoUI/Ingame/Map/WorldMap.lua:1500: in function 'ZO_WorldMapPins:RefreshCustomPins'
(tail call): ?
EsoUI/Ingame/Map/WorldMap.lua:3837: in function 'ZO_WorldMap_UpdateMap'
EsoUI/Ingame/Map/WorldMap.lua:5395: in function 'callback'
EsoUI/Libraries/Utility/ZO_CallbackObject.lua:116: in function 'ZO_CallbackObject:FireCallbacks'
EsoUI/Ingame/Map/WorldMap.lua:4614: in function '(anonymous)'
Report comment to moderator  
Reply With Quote
Unread 06/16/20, 06:19 AM  
Baertram
Super Moderator
 
Baertram's Avatar
ESOUI Super Moderator
AddOn Author - Click to view AddOns

Forum posts: 5004
File comments: 6062
Uploads: 78
Go to the addon's comments, read the comments, follow the inmstructions there. Especially the one by "Acadian" from yesterday.
Same "reason" for the error is mentioned in this libraries's description, at the top:

Important Note to mod authors

AUI support was removed in 2017 for Revision 17 by Sensi. Please remove all LibMapPin calls to AUI functions.

Originally Posted by Ezech
Hi,

I get this error (r25, r26, r27, no issue with r24):

user:/AddOns/DungeonChampions/DungeonChampions.lua:207: attempt to index a nil value
stack traceback:
user:/AddOns/DungeonChampions/DungeonChampions.lua:207: in function 'QueueCreatePins'
user:/AddOns/DungeonChampions/DungeonChampions.lua:224: in function 'MapCallback_unknown'
EsoUI/Ingame/Map/WorldMap.lua:1500: in function 'ZO_WorldMapPins:RefreshCustomPins'
(tail call): ?
EsoUI/Ingame/Map/WorldMap.lua:3837: in function 'ZO_WorldMap_UpdateMap'
EsoUI/Ingame/Map/WorldMap.lua:5395: in function 'callback'
EsoUI/Libraries/Utility/ZO_CallbackObject.lua:116: in function 'ZO_CallbackObject:FireCallbacks'
EsoUI/Ingame/Map/WorldMap.lua:4614: in function '(anonymous)'
Last edited by Baertram : 06/16/20 at 06:20 AM.
Report comment to moderator  
Reply With Quote
Unread 06/16/20, 08:36 AM  
Ezech

Forum posts: 0
File comments: 18
Uploads: 0
Originally Posted by Baertram
Go to the addon's comments, read the comments, follow the inmstructions there. Especially the one by "Acadian" from yesterday.
Works fine, many thanks.
Report comment to moderator  
Reply With Quote
Unread 06/23/20, 05:01 PM  
Marazota
AddOn Author - Click to view AddOns

Forum posts: 260
File comments: 1521
Uploads: 2
errors with new version
always after reloadui or login

Report comment to moderator  
Reply With Quote
Unread 06/23/20, 06:24 PM  
Sharlikran
 
Sharlikran's Avatar
AddOn Author - Click to view AddOns

Forum posts: 665
File comments: 2024
Uploads: 15
Originally Posted by Marazota
errors with new version
always after reloadui or login
This is a Library how the author of the mod writes their code is up to them. I don't troubleshoot that for them or assist with users that use other authors mods I did not write.

The error clearly states that a duplicate Pin name was assigned. Inform the author and until they update their mod you will need to disable it.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: