Download
(35 Kb)
Download
Updated: 08/06/14 09:12 AM
Pictures
File Info
Compatibility:
Update 3 (1.3.3)
Updated:08/06/14 09:12 AM
Created:06/09/14 09:48 AM
Monthly downloads:27
Total downloads:3,328
Favorites:0
MD5:
Categories:Discontinued & Outdated, Map, Coords, Compasses
Lore Linker
Version: 1.2.1
by: sirinsidiator [More]
This addon allows you to create a link to the book you are currently looking at in chat with the press of a button.
If you are looking at or reading a book in the game world, it will also attach your current position to the link and other players can create a map pin for the book with one click.
Also the standard book popup has been improved with the addition of an icon and the book collection and category.

Links to normal books can only be created or processed once the Mages Guild quest line has been finished.
If you have used any version of LoreLinker before v1.2 you should review your audio settings as your UI Volume might have been set to 0.
I apologize if this has happened to you.


In order to create links you have to set a key bind in the controls menu.
Left clicking a book link, will open the popup as usual, whilst right clicking it will create the map pin and open the map showing the location of that pin.
Left clicking a pin on the map will also open the popup and right click will remove it from the map.
Writing "/llclear" in chat will remove all pins of books you already have in your library and "/llclear all" will remove all pins.
version 1.2.1
features
  • updated to latest api version

version 1.2
bugfixes
  • fixed some exceptions (e.g. when adding a book that is not in the lore library)
  • added proper error messages when a book cannot be linked or a map pin cannot be added
features
  • updated libGPS
  • changed link format in order to have a way to recognize old libGPS coordinates
    • new links use less than half the characters for position data in chat (note: character limit for chat is 350)
    • old versions of LoreLinker won't be able to read new links (WARNING: when you click a new link for a book already on your map, the current pin will be lost)
    • new versions can still read links created by older versions
  • added settings panel
  • automatically open map and center on book location when a book is added (can be disabled in settings)

version 1.1.1
bugfixes
  • fixed saved variables duplicating on every UI reload. the surplus copies will automatically disappear after updating (thanks Garkin)

version 1.1
features
  • updated to latest api version
  • added required add-on terms to manifest file
  • implemented linking of opened books
  • implemented improved book popup
  • implemented location sharing
  • implemented book map pins
  • added german localization
Optional Files (0)


Archived Files (4)
File Name
Version
Size
Uploader
Date
1.2
35kB
sirinsidiator
07/30/14 01:59 PM
1.1.1
6kB
sirinsidiator
06/28/14 06:47 AM
1.1
6kB
sirinsidiator
06/27/14 12:41 PM
1.0
1kB
sirinsidiator
06/09/14 09:48 AM


Post A Reply Comment Options
Unread 06/28/14, 05:24 AM  
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1566
File comments: 1119
Uploads: 41
Originally Posted by Garkin
There is a bug with saved variables. After couple login/logout it will look like this:
Warning: Spoiler

It is caused by comma added to the addon manifest. If you define more items on the same line, they should be separated just by space, comma will cause errors.

Warning: Spoiler
Thanks for the tip! It seems a bit strange that they don't support comma here, but use it for DependsOn
Report comment to moderator  
Reply With Quote
Unread 06/28/14, 03:46 AM  
Garkin
 
Garkin's Avatar
AddOn Author - Click to view AddOns

Forum posts: 832
File comments: 1097
Uploads: 33
There is a bug with saved variables. After couple login/logout it will look like this:
Lua Code:
  1. LoreLinker_Settings =
  2. {
  3.     ["pvePinsActive"] = true,
  4.     ["version"] = 1,
  5.     ["pvpPinsActive"] = true,
  6. }
  7. LoreLinker_Settings =
  8. {
  9.     ["pvpPinsActive"] = true,
  10.     ["version"] = 1,
  11.     ["pvePinsActive"] = true,
  12. }
  13. LoreLinker_Settings =
  14. {
  15.     ["pvePinsActive"] = true,
  16.     ["version"] = 1,
  17.     ["pvpPinsActive"] = true,
  18. }
  19. LoreLinker_Settings =
  20. {
  21.     ["pvePinsActive"] = true,
  22.     ["version"] = 1,
  23.     ["pvpPinsActive"] = true,
  24. }
  25. LoreLinker_Settings =
  26. {
  27.     ["pvePinsActive"] = true,
  28.     ["version"] = 1,
  29.     ["pvpPinsActive"] = true,
  30. }
  31. LoreLinker_Settings =
  32. {
  33.     ["pvePinsActive"] = true,
  34.     ["version"] = 1,
  35.     ["pvpPinsActive"] = true,
  36. }
  37. LoreLinker_Settings =
  38. {
  39.     ["pvePinsActive"] = true,
  40.     ["pvpPinsActive"] = true,
  41.     ["version"] = 1,
  42. }
It is caused by comma added to the addon manifest. If you define more items on the same line, they should be separated just by space, comma will cause errors.

Current version:
Code:
## Title: LoreLinker
## Author: sirinsidiator
## Version: 1.1
## APIVersion: 100007
## OptionalDependsOn: LibStub, LibGPS
## SavedVariables: LoreLinker_PinList, LoreLinker_Settings
##
## This Add-on is not created by, affiliated with or sponsored by ZeniMax Media Inc. or its affiliates. 
## The Elder Scrolls® and related logos are registered trademarks or trademarks of ZeniMax Media Inc. in the United States and/or other countries. 
## All rights reserved
##
## You can read the full terms at https://account.elderscrollsonline.com/add-on-terms

lib/LibStub/LibStub.lua
lib/LibGPS/LibGPS.lua
LoreLinker.lua
Bindings.xml
And how it should look like:
Code:
## Title: LoreLinker
## Author: sirinsidiator
## Version: 1.1
## APIVersion: 100007
## OptionalDependsOn: LibStub LibGPS
## SavedVariables: LoreLinker_PinList LoreLinker_Settings
##
## This Add-on is not created by, affiliated with or sponsored by ZeniMax Media Inc. or its affiliates. 
## The Elder Scrolls® and related logos are registered trademarks or trademarks of ZeniMax Media Inc. in the United States and/or other countries. 
## All rights reserved
##
## You can read the full terms at https://account.elderscrollsonline.com/add-on-terms

lib/LibStub/LibStub.lua
lib/LibGPS/LibGPS.lua
LoreLinker.lua
Bindings.xml
Last edited by Garkin : 06/28/14 at 03:47 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.