PDA

View Full Version : Removing Griffins from xp bar?


evolutionsentra
09-03-2007, 09:24 PM
I searched just about every term that i could think of in the search bar but couldn't find anything. I remember seeing somewhere that you can can remove the griffins from the xp bar with a command. Anyone remember the command or point me in the right direction to find it?

-Allen

Kalos
09-03-2007, 09:26 PM
Go to the UI forum. They deal with the UI there, it's there thing. UI=User Interface, to which you are referring to.

Valas Azuviir
10-03-2007, 01:31 AM
*moves thread*

Eonblue
10-03-2007, 01:45 AM
You will need to find an bar mod. One I can personally suggest is Bongos.

Thargos
10-03-2007, 01:52 AM
ct mod does this.

JaedxRapture
10-03-2007, 05:59 AM
Here's the command you were referring to.
/script MainMenuBarLeftEndCap:Hide(); MainMenuBarRightEndCap:Hide();
Case-sensitive.


That won't update each time you load the game, though. If you want it to remove the gryphons on load, you have to create an addon for it, which is very simple. Just follow the steps below. (X = addon name. Replace X with a random name of your choice in the example.)

Create a new folder in your World of Warcraft/Interface/AddOns folder named X. Inside this folder, create two new text files, and name them X.toc and X.lua. Inside the TOC file, place something like the following.
## Interface: 20003
## Title: X
## Notes: Removes the Gryphons from the interface bar.
X.lua
And in the LUA file, place the following.
MainMenuBarLeftEndCap:Hide();
MainMenuBarRightEndCap:Hide();
Then start up the game and it should work fine.

**All folder and file names, as well as script commands are case-sensitive. If you get an error or undesired result, come back here check your cases and spelling.

HelterSkelter
10-03-2007, 08:26 AM
I searched just about every term that i could think of in the search bar but couldn't find anything. I remember seeing somewhere that you can can remove the griffins from the xp bar with a command. Anyone remember the command or point me in the right direction to find it?

-Allen


There is one called hide griffins it is old and out of date, you will need to install it then open the hidegriffons.toc file and change the first line to

## Interface: 20000

After that it will work fine.

JaedxRapture
10-03-2007, 08:45 AM
There is one called hide griffins it is old and out of date, you will need to install it then open the hidegriffons.toc file and change the first line to

## Interface: 20000

After that it will work fine.

20000 is out of date. 20003 is the current interface.