View Single Post
05-29-10, 08:36 AM   #3
v6o
An Onyxian Warder
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 399
You could open up Chill effect Character/Core.lua and find

Code:
GearScore2:ClearAllPoints()
GearScore2:SetPoint("BOTTOM", CharacterFrameTab1, "TOP", 0, 6)
PersonalGearScore:ClearAllPoints()
PersonalGearScore:SetPoint("BOTTOMLEFT", GearScore2, "TOPLEFT", 0, 0)
and change it to

Code:
PersonalGearScore:ClearAllPoints()
PersonalGearScore:SetPoint("TOPLEFT", CharacterWristSlot, "BOTTOMLEFT", 10, -7)
GearScore2:ClearAllPoints()
GearScore2:SetPoint("TOPLEFT", PersonalGearScore, "BOTTOMLEFT", 0, 0)
...but thanks for suggesting my addon CharSheet+
__________________
I stopped playing back World of Warcraft in 2010 and I have no plans on returning.
This is a dead account and if you want to continue any of my addons or make a fork then feel free to do so.
This is your permission slip.

If you need to contact me, do so on Twitter @v6ooo

Best regards, v6.

Last edited by v6o : 05-29-10 at 08:38 AM. Reason: Whoops, anchor itself ahah
  Reply With Quote