Thread: ExpBar
View Single Post
06-04-21, 04:58 AM   #1
Johanan
A Deviate Faerie Dragon
Join Date: Jun 2021
Posts: 15
ExpBar

Hello, I used to use this command in an addon to hide the experience/artifact/honor bar:
Code:
local b=MainMenuExpBar b:UnregisterAllEvents() b:Hide() b.Show=b.Hide
local b=ArtifactWatchBar b:UnregisterAllEvents() b:Hide() b.Show=b.Hide
local b=HonorWatchBar b:UnregisterAllEvents() b:Hide() b.Show=b.Hide
But it stopped working


Now I have found another command for the addon:
Code:
local b=StatusTrackingBarManager b:UnregisterAllEvents() b:Hide() b.Show=b.Hide
It works - removes all bars (experience, artifact, honor), but the action bar remains in place (should fall into the place of the exp bar), are there any other commands that remove the exp panel step by step, so that later the action bar will fall into the place of the exp bar?
  Reply With Quote