Download
(3 Kb)
Download
Updated: 03/17/17 09:03 PM
Compatibility:
Homestead (2.7)
One Tamriel (2.6)
Shadows of the Hist (2.5)
Dark Brotherhood (2.4)
Thieves Guild (2.3)
Orsinium (2.2.4)
Updated:03/17/17 09:03 PM
Created:07/24/15 09:20 PM
Monthly downloads:34
Total downloads:12,425
Favorites:16
MD5:
HOMEPort & HOUSEPort  Popular! (More than 5000 hits)
Version: 2.0.1
by: Noobanidus [More]
NEW: Now supports your own houses (purchased and unpurchased), as well as others' primary residences. Your own homes can be found using
Code:
/hp search <name>
Primary residences of a specific @name can also be saved. For example the following would attempt to port you to @Bob's primary residence when using the related hot-key or slash-command:
Code:
/hp save 1 @Bob
A simple and quick add-on with no interface that allows you to specify a "home" location and associate this location with a hot-key. Using that hot-key when viewing a wayshrine map will allow you to immediately travel there, without zooming out, panning, etc, until you find it, while using it outside of the wayshrine map will port you there (but potentially charge you a fee).

Currently, it supports 10 home locations, it only supports searching for locations via slash command. Each of the home locations can be bound to a specific key.

Slash Commands
Code:
/hp -- travel to first home location (if not at a wayshrine, will warn of recall cost)
/hp <num> -- travel to home location 1 through 10
/hp show <num> -- shows your currently saved home location for the specified number, or 1 of unspecified
/hp search <term> -- searches all wayshrines for those that match <term>, and provides their IDs.
/hp save <num> <ID> -- save the wayshrine ID <ID> as your home location <num> (use search to determine)
/hp save <num> <@name> -- save @name's primary residence as your home location <num>
To-Do
  • Localization!
  • Some kind of awesome graphical interface for selecting home locations

Harborages

When searching you'll get three, there's no names specified but these are the deduced locations:
  • 210 = Daggerfall Covenant
  • 211 = Aldmeri Dominion
  • 212 = Ebonheart Pact
(2.0.1) Fix a minor lua error. Default /hp to /hp 1.

[October, 2016] Significantly delayed API version update. Made sure that the addon is indeed still functioning properly.

[May 31st, 2016] Updated API version.

[March 15th, 2016] Updated API version.

[January 12th] Fix broken download.

[January 5th] Updated API version. Whoops for the belatedness.

[6, Sept '15] Not sure where 1.0.2 disappeared to, it may have been a local beta version I was working on. Currently, no problems with the recent API change, so bumped all the versions. EDIT: And actually uploaded the right file.
Optional Files (0)


Archived Files (9)
File Name
Version
Size
Uploader
Date
2.0.0
3kB
Noobanidus
03/06/17 11:56 PM
1.0.7
3kB
Noobanidus
10/23/16 04:29 AM
1.0.6
3kB
Noobanidus
05/31/16 08:18 AM
1.0.5
3kB
Noobanidus
03/14/16 10:18 PM
1.0.4.1
3kB
Noobanidus
01/12/16 01:06 AM
1.0.4
1kB
Noobanidus
01/05/16 04:35 AM
1.0.3.1
3kB
Noobanidus
09/06/15 03:25 AM
1.0.1
3kB
Noobanidus
07/26/15 04:44 AM
1.0.0
3kB
07/24/15 09:20 PM


Post A Reply Comment Options
Unread 07/31/20, 08:22 AM  
UusSanct

Forum posts: 2
File comments: 12
Uploads: 0
Hopefully some answers from questions below

Glad to see people still use this mod it really is useful

A request is see below is about specific houses on a friends account
As VoidBiscuit posted on reddit you can use the a chat command to teleport to those
https://www.reddit.com/r/elderscroll...ithout_addons/

To teleport to the primary house of @playername put the following in the chat
/script JumpToHouse("@playername")
To jump to a non primary house of a player
/script JumpToSpecificHouse("@playername", houseid)
This mod uses the JumpToHouse function but if you wanted you could change that however you would then need to update the save method of the /hp command and the logic for determining the type of location stored although that part might work as is
If i end up writing that change I will post it as a new mod but honestly this mod has worked so dam well for so long I really don't want to mess with it even though it really could use that and the LibChatMessage upgrade

Which brings me to another ask from the thread below how to copy settings between characters or even accounts - well first logon to each character you want to use homeport on and use /hp to save one point, then logout of game and find the homeport.lua file which should be in ..\Elder Scrolls Online\live\SavedVariables copy it to a backup file (in case you mess up you can just copy this back to the original) Now edit the file, I imagine if you look at this file for a few seconds you will be able to see what to do
I'll show an example file below, anyone familiar with this mod likely know those three location ids are the three waypoints for the Alik'r Desert Dolmen rotation. So, if you spent some time setting up /hp on "acharacter" you can copy the lines between the brackets and just overwrite the lines between brackets on the destination character and it would have the same /hp setup when you log back into game
Note: there appears to be an extra blank line after each bracket below however in the real file there are no blank lines this is just a result of this comments boards html
HomePort_SavedVariables =
{
["Default"] =
{
["@accountname1"] =
{
["acharacter"] =
{
["version"] = 1,
["home1"] = 155,
["home2"] = 60,
["home3"] = 59,
},
},
["@accountname2"] =
{
["anothercharacter"] =
{
["version"] = 1,
["home1"] = 155,
["home2"] = 60,
["home3"] = 59,
},
["yetanothercharacter"] =
{
["version"] = 1,
["home1"] = 155,
},
},
},
}
Last edited by UusSanct : 07/31/20 at 08:52 AM.
Report comment to moderator  
Reply With Quote
Unread 07/30/20, 05:22 PM  
Timray1971

Forum posts: 0
File comments: 3
Uploads: 0
Re: fix for chat messages

Originally Posted by UusSanct
If you are unable to see the output of /hp help
or any other messages that would be because of the way it prints to chat
I updated my version of HOMEPort to use LibChatMessage by sirinsidiator
and now it is working fine again and it was fairly easy to do
ok How do you update HOMEPort to use LibChatMessage

NVM you were right was easy
Last edited by Timray1971 : 07/30/20 at 07:01 PM.
Report comment to moderator  
Reply With Quote
Unread 07/26/20, 09:08 AM  
UusSanct

Forum posts: 2
File comments: 12
Uploads: 0
fix for chat messages

If you are unable to see the output of /hp help
or any other messages that would be because of the way it prints to chat
I updated my version of HOMEPort to use LibChatMessage by sirinsidiator
and now it is working fine again and it was fairly easy to do
Last edited by UusSanct : 07/26/20 at 05:09 PM.
Report comment to moderator  
Reply With Quote
Unread 06/15/19, 03:11 AM  
drpaulsw

Forum posts: 0
File comments: 3
Uploads: 0
Not working?

Any update for Elsweyr? I get a lot of LUA errros
Report comment to moderator  
Reply With Quote
Unread 02/17/19, 05:50 AM  
BearMund

Forum posts: 0
File comments: 5
Uploads: 0
Questions here

Hi there, Great addon btw. Just wondering if there is a list of wayshrine numbers? Or a way to see a specific number. Using the /hp search function does not turn list the waychrine I am at even typing out the whole name. Much appreciated.
Last edited by BearMund : 02/17/19 at 05:51 AM.
Report comment to moderator  
Reply With Quote
Unread 03/19/17, 06:46 PM  
wambo
AddOn Author - Click to view AddOns

Forum posts: 38
File comments: 456
Uploads: 3
Another idea.

Make it possible that /hp @Account teleports me to the player's home
Also is maybe an option that teleports me to the player? Like /tp @Account
Or does that interfere with another Addon (I dont know yet about ?)
Report comment to moderator  
Reply With Quote
Unread 03/17/17, 08:57 PM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Originally Posted by working925
I like the concept of this addon, but I am having trouble with it.

"/hp" - returns UI Error Port.lua:34. I want to travel to my primary residence Snugpod #296

"/hp search snugpod" - returns "#298: Snugpod". So that works

"/hp save 296 1" - returns "296 is not a valid home location"

""/hp save #296 1" - returns UI Error Port.lua:143


I want to save Snugpod to HomePort Hotkey 1

Edit: nvm, http://www.esoui.com/downloads/info1604-GoHome.html works fine
There's unfortunately no way, as far as I'm aware, to travel to your primary residence. The syntax for saving a location is /hp save 1 296 -- the other way around -- and travelling to a saved location is /hp 1. Hope that helps!
Report comment to moderator  
Reply With Quote
Unread 03/17/17, 04:53 PM  
working925

Forum posts: 1
File comments: 36
Uploads: 0
I like the concept of this addon, but I am having trouble with it.

"/hp" - returns UI Error Port.lua:34. I want to travel to my primary residence Snugpod #296

"/hp search snugpod" - returns "#298: Snugpod". So that works

"/hp save 296 1" - returns "296 is not a valid home location"

""/hp save #296 1" - returns UI Error Port.lua:143


I want to save Snugpod to HomePort Hotkey 1

Edit: nvm, http://www.esoui.com/downloads/info1604-GoHome.html works fine
Last edited by working925 : 03/17/17 at 05:12 PM.
Report comment to moderator  
Reply With Quote
Unread 03/12/17, 06:40 PM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Originally Posted by wambo
Hi there! Great Addon.

Is it (easily) possible to share the saved destinations between all my chars?
I tried Joviex Addon Settings transfer, but that didn't work.
I've put adding an option for settings to be account-wide to my list. Hopefully I'll get it done early this week!
Report comment to moderator  
Reply With Quote
Unread 03/12/17, 05:52 PM  
wambo
AddOn Author - Click to view AddOns

Forum posts: 38
File comments: 456
Uploads: 3
Hi there! Great Addon.

Is it (easily) possible to share the saved destinations between all my chars?
I tried Joviex Addon Settings transfer, but that didn't work.
Report comment to moderator  
Reply With Quote
Unread 01/12/16, 01:08 AM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Re: Issue with download link?

Originally Posted by Abras Granden
Great addon, very happy to see it updated! However -- the "Download Now" link is actually downloading your other recent update, AutoMaxImprovement.

Is this something you can correct or is it something ESOUI has to fix? Either way, would be nice to get the updated version. Thanks again!
Not sure if that was my mistake of ESOUI's, I'm going to assume mine. I've re-uploaded it and marked it as 1.0.4.1 with the 1.0.4 zip file. Sorry for any incovenience caused! I do intend to eventually get around to making a UI for setting keybind locations instead of using /slash commands.
Report comment to moderator  
Reply With Quote
Unread 01/09/16, 01:21 PM  
Abras Granden

Forum posts: 0
File comments: 7
Uploads: 0
Issue with download link?

Great addon, very happy to see it updated! However -- the "Download Now" link is actually downloading your other recent update, AutoMaxImprovement.

Is this something you can correct or is it something ESOUI has to fix? Either way, would be nice to get the updated version. Thanks again!
Report comment to moderator  
Reply With Quote
Unread 07/27/15, 10:12 PM  
Noobanidus
 
Noobanidus's Avatar
AddOn Author - Click to view AddOns

Forum posts: 23
File comments: 53
Uploads: 23
Originally Posted by OmniObsessed
Used it all day yesterday and it worked perfectly. Been wanting this for a long time now. Just too lazy to do it. Thank you!
No, thank you! I'm hoping to improve the interface -- allow you to set locations from the world map instead of via the command-line, or at the very least allowing you to search via a graphical interface. Likewise, some kind of tooltip that you can toggle that allows you to see what your locations are set to -- good if you have different ones for different toons.
Report comment to moderator  
Reply With Quote
Unread 07/27/15, 06:00 AM  
OmniObsessed

Forum posts: 9
File comments: 70
Uploads: 0
Used it all day yesterday and it worked perfectly. Been wanting this for a long time now. Just too lazy to do it. Thank you!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: