1. #1

    ElvUI Raid Control Panel

    How do I hide the ElvUI Raid Control Panel?

  2. #2
    wish i knew aswell

  3. #3
    Quote Originally Posted by cabana View Post
    How do I hide the ElvUI Raid Control Panel?
    I can not figure this out either.

  4. #4
    The LUA file for that portion is ...ElvUI\modules\misc\raidUtility.lua

    Lines 10-17 check to see if you are in a position that would warrant having the utility showing.

    Code:
    --Check if We are Raid Leader or Raid Officer
    local function CheckRaidStatus()
    	local inInstance, instanceType = IsInInstance()
    	if ((IsInGroup() and not IsInRaid()) or UnitIsGroupLeader('player') or UnitIsGroupAssistant("player")) and not (inInstance and (instanceType == "pvp" or instanceType == "arena")) then
    		return true
    	else
    		return false
    	end
    end
    If you change the 'true' on line 13 of the file to 'false' it should never display the utility. Anytime you update Elv you will need to go back and change it back again. No guarantees, but that's the section that makes the most sense to me.
    Last edited by Junkdepot; 2013-01-11 at 01:55 PM.
    Originally Posted by Zarhym
    Someone needs to take away your keyboard until you're better able to read the explicit meaning in sentences without implying whatever you want in order to be contrary.
    Quote Originally Posted by Archimtiros View Post
    It's like swatting flies with a shotgun.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •