Forum > Serverside Modding

[QUESTION] XPBar & Druid Inspect bug :/

(1/2) > >>

asdface:
Hi everyone,

on my server i activated the "all race all class" patch and the max lvl is 255.
BUT when somebody is above 80 the xp bar is disappear..
AND when a druid( above Level 103 ) wants to inspect self he/she get's a wowerror :/

So.. i don't know what i need to do with the xp bar and with the inspect bug...
somebody please help me :/

/
Yes i know there are to scripts but i want to fix it..

Supora:
use search please.
Guide for XPBar

asdface:

--- Quote from: "Supora" ---use search please.
Guide for XPBar
--- End quote ---

thanks and sorry :/ :)

Morfium:
It's a little bit late, but maybe I have a fix for your druid problem.
If you mean looking at the character sheet (Press C) and not inspecting yourself.

There used to be that same error on a server I once played at.

Method #1 is:
Type this in your window:

--- Code: ---/console PlayerStatLeftDropDown Melee
/console PlayerStatRightDropDown Spell
/reload
--- End code ---

I think it has something to do with the BaseStat view of the character sheet that gets an error for druids.

Method #2 if #1 fails:
in the folder:
World of Warcraft / WTF / Account / AccountName / RealmName/ Name of Druid
in the file:
SavedVariables.lua

Change:

--- Code: ---SHOW_KEYRING = 0
PLAYERSTAT_LEFTDROPDOWN_SELECTION = "PLAYERSTAT_BASE_STATS"
PLAYERSTAT_RIGHTDROPDOWN_SELECTION = "PLAYERSTAT_MELEE_COMBAT"
SHOW_BATTLEFIELD_MINIMAP = "0"

--- End code ---

to:


--- Code: ---SHOW_KEYRING = 0
PLAYERSTAT_LEFTDROPDOWN_SELECTION = "PLAYERSTAT_SPELL_COMBAT"
PLAYERSTAT_RIGHTDROPDOWN_SELECTION = "PLAYERSTAT_SPELL_COMBAT"
SHOW_BATTLEFIELD_MINIMAP = "0"
--- End code ---

Not the most elegant solution as every player needs to do that, but I hoppe it solves your problem.

asdface:

--- Quote from: "Morfium" ---It's a little bit late, but maybe I have a fix for your druid problem.
If you mean looking at the character sheet (Press C) and not inspecting yourself.

There used to be that same error on a server I once played at.

Method #1 is:
Type this in your window:

--- Code: ---/console PlayerStatLeftDropDown Melee
/console PlayerStatRightDropDown Spell
/reload
--- End code ---

I think it has something to do with the BaseStat view of the character sheet that gets an error for druids.

Method #2 if #1 fails:
in the folder:
World of Warcraft / WTF / Account / AccountName / RealmName/ Name of Druid
in the file:
SavedVariables.lua

Change:

--- Code: ---SHOW_KEYRING = 0
PLAYERSTAT_LEFTDROPDOWN_SELECTION = "PLAYERSTAT_BASE_STATS"
PLAYERSTAT_RIGHTDROPDOWN_SELECTION = "PLAYERSTAT_MELEE_COMBAT"
SHOW_BATTLEFIELD_MINIMAP = "0"

--- End code ---

to:


--- Code: ---SHOW_KEYRING = 0
PLAYERSTAT_LEFTDROPDOWN_SELECTION = "PLAYERSTAT_SPELL_COMBAT"
PLAYERSTAT_RIGHTDROPDOWN_SELECTION = "PLAYERSTAT_SPELL_COMBAT"
SHOW_BATTLEFIELD_MINIMAP = "0"
--- End code ---

Not the most elegant solution as every player needs to do that, but I hoppe it solves your problem.
--- End quote ---

thx for it but i had a solution for it ( #1 ) before i posted this... i just tought there would a solution to fix this in a patch ( .mpq ) ... or in a modded wow client... :/

Navigation

[0] Message Index

[#] Next page

Go to full version