Download
(31 Kb)
Download
Updated: 01/06/22 04:16 PM
Pictures
File Info
Compatibility:
Deadlands (7.2.5)
Updated:01/06/22 04:16 PM
Created:06/04/19 12:41 PM
Monthly downloads:678
Total downloads:50,966
Favorites:104
MD5:
HomeStationMarker  Popular! (More than 5000 hits)
Version: 7.2.1
by: ziggr [More]
Home Station Marker

An add-on for Elder Scrolls Online that draws 3D markers over crafting stations in a player home.



Adapted from Shinni's HarvestMap and Marify's Confirm Master Writ.

Originally written to help visitors find stations when crafting master writs with WritWorthy.

Follow development on GitHub

Export/Import: Finding stations in guild halls

Have a huge guild hall with hundreds of stations? You can now save a copy of your guild hall's station location list to Discord (or anywhere, it's just a text file). Then other players can import that location list to make it easier to find stations.

Guild Masters: /hsm export
  1. Visit your guild hall and type /hsm export to get a dump of all the stations in your house.
  2. Copy this text to a text file and store it on your guild's Discord server or pastebin or wherever.



Guild Members: /hsm import

To import a list of station locations, type /hsm import. This opens a window where you can paste the huge list of stations that you downloaded from your guild's discord server or wherever.
  1. Download a list of stations from your guild. This is a text file on your guild's discord server or pastebin or somewhere. Ask your guild master for it. Point them to this page if they've never heard of HomeStationMarker.
  2. Open the above text file and copy its contents to the clipboard.
  3. In ESO, type /hsm import to make the HomeStationMarker Import window appear.
  4. Paste text into the importer window
  5. Click "Import" to add the results to your saved variables.



Libraries

Required Libraries:

Optional Libraries, recommended:
  • Baertram's LibSets
    Allows you to type /hsm Alessia cl instead of /hsm 82 2 for Alessia's Bulwark clothier station.

FAQ

Why don't I see any markers?

HomeStationMarker starts out not knowing any station locations. Once it has some station locations recorded to SavedVariables, it can show markers for those stations.
  1. Run around the player house and interact with a few crafting stations, such as Enchanting or Armor Master Blacksmithing.
  2. /hsm enchanting or /hsm armor bs to show the above marker.
    (This command requires Baertram's LibSets.)

In your own house, or any house in which you are trusted enough to have "Decorator" access, you can replace step 1 with /hsm scanlocs to immediately teach HomeStationMarker the location of every crafting station in the house.

Learning a station location after requesting a marker for it will not show a marker for that station. The marker will appear next time you enter the house or /reloadui.

Why are the markers not perfectly aligned with their stations?

When HomeStationMarker records a crafting station's location from you interacting with that station, HomeStationMarker actually records your player's position, not the crafting station's.

The API to learn a station's location is restricted to a house's owner or guests with "Decorator" access. For all other players, this is as close as I can get it.

Slash Commands

A few commands to help while testing, probably not useful to players:

/hsm <set> <station>

Toggle a marker above the given station. Can omit either argument.
  • /hsm alchemy toggles a marker over an alchemy station
  • /hsm alessia's blacksmithing toggles a marker over the Alessia's Bulwark blacksmithing station

This is mostly for testing/debugging this add-on. The simplistic string matching here was designed for, and tested on, EN English only. If it doesn't work in DE German, sorry.

Requires Baertram's LibSets

Crafting station abbreviations

Nobody wants to type "Jewelry Crafting Station".
  • two-letters: bs, cl, ww, jw, al, en, pr
  • first few letters: black, cloth, wood, jewel

Set abbreviations
  • first few letters: alessia, twice-born, eternal
  • tbs, nmg, juli, kags, seducer

Uppercase and punctuation ignored.

/hsm forgetlocs [all]

Forget all station locations for current house, or all houses if /hsm forgetlocs all. Use /hsm forgetlocs in a house after moving any crafting stations. Deletes all markers in current house (or all houses if /hsm forgetlocs all) as a necessary side effect.

/hsm scanlocs

Teach HomeStationMarker the location of every crafting station in this house.

Requires "Decorator" access, which you automatically have in your own houses, and rarely ever have in anybody else's house.

Not Supported

I have no desire to add these ever:
  • custom markers
  • colors
  • per-add-on sets of markers

No thank you. That's an additional API and complexity that I don't want to spend my days supporting.

API

Code:
HomeStationMarker.AddMarker(setId, stationId)
    Increment ref count for <setId, stationId>.
    Show a marker for that station if in player housing and its
    location is known.
    Return true if shown, false if not shown or was already shown.

HomeStationMarker.DeleteMarker(setId, stationId)
    Decrement ref count for <setId, stationId>.
    Hide any marker for that station if refcount hits 0.
    Return true if refcount hit zero and there was a request for that marker.

HomeStationMarker.DeleteAllMarkers()
    Reset all ref counts to zero.
    Delete all requests for markers.
    Hide any markers.

- setId:     integer set bonus ID, such as 82 for Alessia's Bulwark.
             nil or string "no_set" for set-less stations such as Alchemy
             or Enchanting.

- stationId: integer crafting type such as CRAFTING_TYPE_BLACKSMITHING or 1.
Why RefCount?

Reference counts free up other code from worrying about whether they need a station for two or more crafting requests, and whether the completion of a request means it is time to remove the marker or not. Let the refcounts do the worrying for you.

Ref counts also help if multiple add-ons use HomeStationMarker: what if WritWorthy needed a station, but some other add-on also needed that same station. If either one removed the marker, the other add-on's requested marker would end up lost.

RefCount/Marker Desync

The above 3 API functions are the only ones that touch or see the ref counts.
Slash commands such as /hsm <set> <station> bypass the ref count and toggle the marker regardless of API requests.

FPS Cost

Each marker slows down your frames per second.

This add-on also slows down frames per second while in player housing:

zo_callLater : a periodic task updates each marker rotation 8 times per second. Only registered within player housing.

EVENT_CRAFTING_STATION_INTERACT
EVENT_CLIENT_INTERACT_RESULT
EVENT_DYEING_STATION_INTERACT_START
EVENT_RETRAIT_STATION_INTERACT_START : Event listeners record station location each time you interact with a crafting station or assistant. This listener is only registered within player housing.

EVENT_PLAYER_ACTIVATED : An event listener hides all of a house's markers when you exit player housing, shows that house's previously hidden markers when you enter player housing.

Scene Listener : An event listener that shows/hides all markers when the HUD is shown/hidden while in player housing. Hides the markers when you're in the inventory/bank/dialog/whatever scene, unhides when you're back to walking around the house.

SavedVariables
  • station locations: for each player house: each known crafting station's location
7.2.1 2022-01-06
  • Update 32/ESO 7.2.0/API 100035/Deadlands
  • Factotum assistants
  • Crow assistants
  • Daedric enchanting station
  • Solitude Grill provisioning station
  • Thank you, pesakm, for all these additions!

7.0.4 2021-06-08
  • DE FR RU placeholder strings

7.0.3 2021-06-07
  • Elsweyr Grill now shows up as a provisioning station
  • Strip CR carriage return characters during import
  • /kowtow to pesakm for the wave of fixes

7.0.2 2021-05-30
  • No longer store refcounts in saved variables. Add-ons that use HomeStationMarker must be updated to restore markers after every load (WritWorthy 7.0.3 2021-05-30 has already been updated).
  • /hsm export shows new exporter window with current house's station location list suitable for copying and sending to other players.
  • /hsm import shows new importer window where other players can paste and import text copied from the above exporter window.

7.0.1 2021-04-28
  • Update 30/ESO 7.0.0/API 100035/Blackwood
  • Jewelry station set detection fix from DeadMoroz. Thank you so much!

6.0.2 2020-08-28
  • RU translation by DrakeRulo. Thank you!

6.0.1 2020-06-03
  • `/hsm clear` to clear all markers and refcounts. Retains station locations.

5.3.1 2020-02-28
  • Fix EN-only bug where `/hsm scanlocs` did not correctly register with LibSlashCommander.

5.2.1 2019-11-24
  • Baertram's DE translations. Thank you!

5.0.2 2019-06-06
  • Stop replacing perfectly good /hsm scanlocs location data with less good data from a player's location while interacting with a station.
  • Gather assistant, transmute station, outfitter/dye station, and mundus stone locations from interacting with them.
  • Add Elsweyr assistants Ezabi and Fezez.

5.0.1 2019-06-04
  • Initial release.
Archived Files (11)
File Name
Version
Size
Uploader
Date
7.0.4
30kB
ziggr
06/08/21 12:09 PM
7.0.3
28kB
ziggr
06/07/21 08:45 AM
7.0.2
28kB
ziggr
05/30/21 12:56 PM
7.0.1
21kB
ziggr
04/28/21 11:14 AM
6.0.2
21kB
ziggr
08/28/20 05:11 PM
6.0.1
20kB
ziggr
06/03/20 09:23 PM
5.3.1
20kB
ziggr
02/28/20 11:32 PM
5.3.1
153kB
ziggr
02/28/20 03:19 PM
5.2.1
20kB
ziggr
11/24/19 03:22 PM
5.0.2
20kB
ziggr
06/06/19 11:51 AM
5.0.1
16kB
ziggr
06/04/19 12:41 PM


Post A Reply Comment Options
Unread 08/28/20, 07:15 AM  
DrakeRulo

Forum posts: 0
File comments: 26
Uploads: 0
Report comment to moderator  
Reply With Quote
Unread 07/18/20, 11:24 PM  
Alassirana

Forum posts: 0
File comments: 29
Uploads: 0
alternate craft stations

At the urging of some of my guildmates, I changed out the standard cooking station for my elsweyr grill, which counts as a cooking station, but it doesn't show up to home station markers when using that for writs. I'm assuming that is also true of the 2 other 'alternate' cooking stations. I think there may also be another station with an alternate (alchemy), that would need to be similarly addressed. Could we get it so that these stations show up when we put them in? It makes it slightly easier when doing master writs if we realize we need to stop at those stations without having to look first.


thank you in advance for your effort.

Alassirana
Report comment to moderator  
Reply With Quote
Unread 07/13/20, 12:14 PM  
ziggr
 
ziggr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 275
Uploads: 10
To reset locations, /hsm forgetlocs then /hsm scanlocs .

Originally Posted by Frompa
how do i clear markers for stations ive moved? I have them floating around in my house for no reason
Report comment to moderator  
Reply With Quote
Unread 07/12/20, 05:16 PM  
Frompa

Forum posts: 3
File comments: 32
Uploads: 0
how do i clear markers for stations ive moved? I have them floating around in my house for no reason
Report comment to moderator  
Reply With Quote
Unread 06/03/20, 09:25 PM  
ziggr
 
ziggr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 275
Uploads: 10
/hsm clear

HomeStationMarker 6.0.1 just released with new /hsm clear command to clear all markers and refcounts.

Locations are not cleared. Use /hsm forgetlocs if you want something that drastic.

Originally Posted by AshleyDead
I have markers for writs I had to complete manually, or deselected from writworthy, tried disabling HomeStationMarker, reloading UI and re-enabling and they are still there. Is there another step I can take before re-installing?
Report comment to moderator  
Reply With Quote
Unread 06/03/20, 02:16 PM  
AshleyDead

Forum posts: 0
File comments: 1
Uploads: 0
Marker reset

I have markers for writs I had to complete manually, or deselected from writworthy, tried disabling HomeStationMarker, reloading UI and re-enabling and they are still there. Is there another step I can take before re-installing?
Report comment to moderator  
Reply With Quote
Unread 05/27/20, 05:19 AM  
DrakeRulo

Forum posts: 0
File comments: 26
Uploads: 0
Re: Error code when i use a any stations or when i log a character...

Originally Posted by Malvenue
(My game is in french)
Same for russian game.
Report comment to moderator  
Reply With Quote
Unread 05/20/20, 05:19 AM  
Gandamir

Forum posts: 12
File comments: 43
Uploads: 0
Reset Counts with Slash Command?

Hello,

I was wondering if there was a slash command to reset all item counts? I occasionally get out of sync when using WritWorthy and doing a large quantity of master writs.

Being able to tell HSM that I know for sure that everything is at 0 would be a nice way to clear this up so I don't have to edit the save file.

Thanks for a great time saving addon!
Report comment to moderator  
Reply With Quote
Unread 05/03/20, 04:10 AM  
Malvenue

Forum posts: 0
File comments: 1
Uploads: 0
Error code when i use a any stations or when i log a character...

Hello,
Thank's for your great add on and the time to you give for that
(My game is in french)
When i log any character or when i use any station, the add on give me that error code :

user:/AddOns/HomeStationMarker/HomeStationMarker.lua:201: attempt to index a nil value
stack traceback:
user:/AddOns/HomeStationMarker/HomeStationMarker.lua:201: in function 'HomeStationMarker.RegisterSlashCommands'
|caaaaaa<Locals> self = [table:1]{saved_var_version = 2, name = "HomeStationMarker", log_to_chat = F, inited = T, clientlang = "fr", SET_ID_ASSISTANTS = "assistants", saved_var_name = "HomeStationMarkerVars", debug_scan = F, SET_ID_NONE = "no_set", SET_ID_MUNDUS = "mundus", SET_ID_MISC = "misc"}, lsc = [table:2]{COMMAND_TYPE_BUILT_IN = 1, ERROR_INVALID_TYPE = "Invalid argument type", COMMAND_TYPE_EMOTE = 3, COMMAND_TYPE_ADDON = 4, ERROR_AUTOCOMPLETE_RESULT_NOT_VALID = "Autocomplete provider returned...", ERROR_CIRCULAR_HIERARCHY = "Circular hierarchy detected", COMMAND_TYPE_CHAT_SWITCH = 2, ERROR_CALLED_WITHOUT_CALLBACK = "Tried to call command while no...", ERROR_HAS_NO_PARENT = "Command does not have a parent...", ERROR_ALREADY_HAS_PARENT = "Command already has a parent", ERROR_AUTOCOMPLETE_NOT_ACTIVE = "Tried to get autocomplete resu...", WARNING_ALREADY_HAS_ALIAS = "Warning: Overwriting existing ..."}, langSlashCommandsEN = [table:3]{SC_FORGET_LOCS_ALL_CMD = "forgetlocs_all", SC_FORGET_LOCS_CMD = "forgetlocs", SC_SCAN_LOCS_CMD = "scanlocs", SC_STATION = "station", SC_SET = "set", SC_FORGET_LOCS = "Forget all station locations f...", SC_FORGET_LOCS_ALL = "Forget all station locations f...", SC_SCAN_LOCS = "Scan furnishings to learn stat...", SC_SET_STATION = "%s <%s> <%s>"} </Locals>|r
user:/AddOns/HomeStationMarker/HomeStationMarker.lua:1517: in function 'HomeStationMarker.OnAddOnLoaded'
|caaaaaa<Locals> event = 65536, addonName = "HomeStationMarker", self = [table:1] </Locals>|r
Last edited by Malvenue : 05/03/20 at 04:13 AM.
Report comment to moderator  
Reply With Quote
Unread 04/25/20, 03:40 AM  
Dark Wizard

Forum posts: 0
File comments: 48
Uploads: 0
This addon is causing problems with loading screens. After activating - I select character, press log in and waiting for ~20 minutes and stil "Requesting character load".

I can use only activating it ingame - reloadui and then deactivate.



UPDATE: Seems the problem is not with addon, but in servers...
Last edited by Dark Wizard : 04/25/20 at 04:13 AM.
Report comment to moderator  
Reply With Quote
Unread 04/11/20, 05:19 AM  
kaaylim

Forum posts: 5
File comments: 7
Uploads: 0
Error

Hi,

I've just installed the addon and have this error:

Code:
bad argument #1 to 'pairs' (table/struct expected, got nil)
stack traceback:
[C]: in function 'pairs'
user:/AddOns/HomeStationMarker/HomeStationMarker.lua:755: in function 'HomeStationMarker.InteractTargetToKey'
|caaaaaa<Locals> target_name = "atelier de joaillerie (adepte ...", self = [table:1]{saved_var_name = "HomeStationMarkerVars", SET_ID_ASSISTANTS = "assistants", inited = T, clientlang = "fr", log_to_chat = F, debug_scan = F, periodic_rotate = T, saved_var_version = 2, SET_ID_NONE = "no_set", SET_ID_MISC = "misc", SET_ID_MUNDUS = "mundus", name = "HomeStationMarker"}, t = [table:2]{} </Locals>|r
user:/AddOns/HomeStationMarker/HomeStationMarker.lua:734: in function 'HomeStationMarker.OnClientInteractResult'
|caaaaaa<Locals> event = 131078, result = 0, target_name = "atelier de joaillerie (adepte ...", self = [table:1] </Locals>|r
And when I try to interact with a station :

bad argument #1 to 'pairs' (table/struct expected, got nil)
stack traceback:
[C]: in function 'pairs'
user:/AddOns/HomeStationMarker/HomeStationMarker.lua:755: in function 'HomeStationMarker.InteractTargetToKey'
|caaaaaa<Locals> target_name = "atelier de joaillerie (adepte ...", self = [table:1]{saved_var_name = "HomeStationMarkerVars", SET_ID_ASSISTANTS = "assistants", inited = T, clientlang = "fr", log_to_chat = F, debug_scan = F, periodic_rotate = T, saved_var_version = 2, SET_ID_NONE = "no_set", SET_ID_MISC = "misc", SET_ID_MUNDUS = "mundus", name = "HomeStationMarker"}, t = [table:2]{} </Locals>|r
user:/AddOns/HomeStationMarker/HomeStationMarker.lua:734: in function 'HomeStationMarker.OnClientInteractResult'
|caaaaaa<Locals> event = 131078, result = 0, target_name = "atelier de joaillerie (adepte ...", self = [table:1] </Locals>|r
My game is in French.

Cheers
Report comment to moderator  
Reply With Quote
Unread 03/31/20, 12:11 PM  
Snow

Forum posts: 0
File comments: 66
Uploads: 0
JC Stations for new Cyrodiil Sets not added

Hi,
HomeStationMarker refuses to add the jewlery craftings stations of the new cyrodiil sets: set ids 480, 481 and 482.

According to LibDebugLoggers Log, the problem is that it does not get a set_id for the jc stations.
If I understand your code correct you use GetSmithingPatternResultLink to determin the id.
On all other set stations: /script d(GetSmithingPatternResultLink(unpack({ 3,1,2,1,1,0 })))
gives a vaild link, but not on the three new ones - [Empty String] is returned.
I got a valid link on the new ones when I change the patternIndex from 3 to 4, but this does not work on the old stations.

Hope you find a way around this. - Maybe this is the same problem preventing Writworthy to autocraft jc writs on the new stations.

Regard
Snow
Report comment to moderator  
Reply With Quote
Unread 03/11/20, 03:55 PM  
LokiAndBlack

Forum posts: 2
File comments: 17
Uploads: 0
Originally Posted by ziggr
Jewelry stations: yeah, some times HomeStationMarker refuses to mark a station. I have yet to figure that bug out.
Well it is rather it marks none of my 30 writs in queue simply not any at all. good luck in finding bug, I promise to help newbies further =)
Report comment to moderator  
Reply With Quote
Unread 03/11/20, 12:07 PM  
ziggr
 
ziggr's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 275
Uploads: 10
Jewelry stations: yeah, some times HomeStationMarker refuses to mark a station. I have yet to figure that bug out.

Donation: no thank you. I have all that I could ever need. Pay it forward. Make the game a nicer place for the next guildie who needs some help getting through a boss, or hand some food or training gear to a newbie you see out in the wild.

Originally Posted by LokiAndBlack
Thanks!
Why the jewelry writs are not highlighted when I add them into queue in writworthy? And do you have paypal.me link? I would like to send you few coins for a coffee to support your hard work =)
Report comment to moderator  
Reply With Quote
Unread 03/11/20, 12:47 AM  
LokiAndBlack

Forum posts: 2
File comments: 17
Uploads: 0
Thanks!
Why the jewelry writs are not highlighted when I add them into queue in writworthy? And do you have paypal.me link? I would like to send you few coins for a coffee to support your hard work =)
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: