Posted on: 12-09-2012 - Updated on: 12-09-2012 - viewed 10388 times
Description:
Do you run a minimalistic UI without an experience bar, but need to know how much experience you need until the next level? This macro is perfect for you!
Simply make the macro, and click it!
author:
/run a=UnitXP("player") b=UnitXPMax("player") print(a.."/"..b.." ("..floor((a/b)*100).."%). "..b-a.." XP to go!")
/run local a,b=UnitXP(“player”),UnitXPMax(“player”);print(a..”/”..b..” (“..floor((a/b)*100)..”%). “..b-a..” XP to go!”)
The above code would be most appropriate, I forgot to localize the variables.