How to hide any assistant
From ESOUI Wiki
If you want to hide all your currently shown assistants you can make use of the collectible manager:
function hideActiveAssistants() local activeAssistantId = GetActiveCollectibleByType(COLLECTIBLE_CATEGORY_TYPE_ASSISTANT) if activeAssistantId ~= 0 then local collectibleData = ZO_COLLECTIBLE_DATA_MANAGER:GetCollectibleDataById(activeAssistantId) collectibleData:Use() end end