View Single Post
04/22/23, 11:27 AM   #2
sinnereso
AddOn Author - Click to view addons
Join Date: Oct 2022
Posts: 245
Been experimenting and have managed to somewhat get the flow im looking for with:

Code:
ZO_PreHook("JumpToFriend", function()
		MyAddon.TravelToPlayer()
		return true
	end)

function MyAddon.TravelToPlayer(displayName)
	if displayName ~= nil then
		--JumpToGroupMember(displayName)
		JumpToFriend(displayName)
		--JumpToGuildMember(displayName)
		return
	end
Its obviously not able to retrieve the friends list rowdata and displayname as im unable to figure out how to access that still but workin on it.

Ideally I'll be able to prehook the jumptogroup/friend/guildmember functions themselves which makes this fairly simple but I have a feeling I wont be able to harness the list data and displaynames that way to make it work. I am open to ideas though of course

Last edited by sinnereso : 04/22/23 at 11:36 AM.
  Reply With Quote