View Single Post
08/04/21, 02:51 PM   #3
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
Could try to prehook AddPromptToIncomingQueue and cancel the call when the interact type is INTERACT_TYPE_TRAVEL_TO_LEADER:

Lua Code:
  1. ZO_PreHook(PLAYER_TO_PLAYER, "AddPromptToIncomingQueue", function(self, interactType)
  2.     if interactType == INTERACT_TYPE_TRAVEL_TO_LEADER then
  3.         return true
  4.     end
  5. end)
  Reply With Quote