Thread Tools Display Modes
11/16/22, 11:51 AM   #1
sfhipchick
Join Date: Nov 2022
Posts: 2
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?
  Reply With Quote
11/16/22, 12:35 PM   #2
ZOS_DanBatson
ZOS Staff!
 
ZOS_DanBatson's Avatar
Yes this person is from ZeniMax!
Join Date: Jul 2015
Posts: 171
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.
  Reply With Quote
11/16/22, 12:52 PM   #3
sfhipchick
Join Date: Nov 2022
Posts: 2
Thumbs up

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

Thanks for pointing out the right click feature!

Last edited by sfhipchick : 11/16/22 at 12:57 PM.
  Reply With Quote
11/17/22, 04:39 AM   #4
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
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

Last edited by Baertram : 11/17/22 at 04:49 AM.
  Reply With Quote

ESOUI » AddOns » AddOn Search/Requests » Addon that has a button to Leave Group and Leave Dungeon

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off