ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   AddOn Search/Requests (https://www.esoui.com/forums/forumdisplay.php?f=165)
-   -   Addon that has a button to Leave Group and Leave Dungeon (https://www.esoui.com/forums/showthread.php?t=10371)

sfhipchick 11/16/22 11:51 AM

Addon that has a button to Leave Group and Leave Dungeon
 
I have been looking for an addon that makes it less awkward and annoying to get out of a group after doing a dungeon, and returning to where I was. Is there anything out there that I've missed in my searches?

Is this even something that can be made?

ZOS_DanBatson 11/16/22 12:35 PM

FWIW you can use the ExitInstanceImmediately function to leave the instance and go back to where you were. This option is already found in the vanilla UI from the group menu when right clicking a group member. An addon could make a button that would both leave the group and call this function in a single user action, in theory.

sfhipchick 11/16/22 12:52 PM

Having the ability to leave group at the same time would be really nice.

Thanks for pointing out the right click feature!

Baertram 11/17/22 04:39 AM

I do not know any button addon and non to quit the dungeon but the addon "Simple Group Leave" got some slash commands for the chat e.g.
/gl
/groupl
/groupleave
/leavegroup

https://www.esoui.com/downloads/info...shcommand.html

You could download this one and add the function call named above by Dan to the code in the file SimpleGroupLeave.lua,
inside function SimpleGroupLeaveAbandon:

Lua Code:
  1. SIMPLEGROUPLEAVE = {}
  2. SIMPLEGROUPLEAVE.version = 0.6
  3. SIMPLEGROUPLEAVE.author = 'DeanGrey, modified by Baertram'
  4.  
  5. function SimpleGroupLeaveAbandon()
  6.     if not IsUnitGrouped("player") then return end
  7.     GroupLeave() --leave the group
  8.     ExitInstanceImmediately() --Exit the instance
  9. end
  10. local leaveGroup = SimpleGroupLeaveAbandon
  11.  
  12. SLASH_COMMANDS["/gl"]           = leaveGroup
  13. SLASH_COMMANDS["/groupl"]       = leaveGroup
  14. SLASH_COMMANDS["/groupleave"]   = leaveGroup
  15. SLASH_COMMANDS["/leavegroup"]   = leaveGroup


All times are GMT -6. The time now is 12:32 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI