View Single Post
02-07-17, 05:12 PM   #12
ircdirk
A Molten Giant
 
ircdirk's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2014
Posts: 823
Originally Posted by sporta View Post
Here you go. BTW if you notice the Arrow Y offset is at 100, this is the only way to get it to show on screen where it is visible...Thanks
Ok. I know whats wrong. Your hud is out of screen and since there is no reset position option u need to do it manualy:

1. close WOW
2. open #WOW folder#/WTF/Account/#your account number#/SavedVariables/Carbonite.lua in Notepad
3. search:

["NxHUD"] = {
["A"] = "TOP",
["_W"] = 8,
["FI"] = 1,
["FO"] = 0.15,
["H"] = 40,
["W"] = 232.999984741211,
["Hide"] = true,
["Y"] = -71.4000549316406,
["X"] = -112.000038146973,
["_H"] = 40,
["_Y"] = -0.17,
["_X"] = 999999,
},

4. replace

["Y"] = -71.4000549316406,
["X"] = -112.000038146973,


with

["Y"] = 100,
["X"] = 100,


5. save
6. run WOW and report back
*7. if needed set Arrow Y offset to 0

In future ill make option to reset Hud position.
__________________
Carbonite and Carbonite Classic Developer

Last edited by ircdirk : 02-07-17 at 05:25 PM.
  Reply With Quote