What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[Plugin] Time until Level

Ahh, not updated for 80+? I'll have a look at it, worked a treat till I hit 80 but now no messages anymore. Fairly simple, right at the top it has a check for 80, just change that to 85.
 
Last edited:
Thanks a lot for the fix, it works great :) Can't live without this plugin !
 
Got the following error when hitting "recompile all" after dropping the cs file into the plugins directory.

Plugin from C:\...\TimeUntilLevel v1.2.cs could not be compiled! Compiler errors:
File: TimeUntilLevel v1.2.cs Line: 42 Error: 'Styx.WoWInternals.WoWObjects.LocalPlayer' does not contain a definition for 'NextLevelXP' and no extension method 'NextLevelXP' accepting a first argument of type 'Styx.WoWInternals.WoWObjects.LocalPlayer' could be found (are you missing a using directive or an assembly reference?)
File: TimeUntilLevel v1.2.cs Line: 42 Error: 'Styx.WoWInternals.WoWObjects.LocalPlayer' does not contain a definition for 'XP' and no extension method 'XP' accepting a first argument of type 'Styx.WoWInternals.WoWObjects.LocalPlayer' could be found (are you missing a using directive or an assembly reference?)
 
Same:

v1.2.cs could not be compiled! Compiler errors:
File: TimeUntilLevel v1.2.cs Line: 42 Error: 'Styx.WoWInternals.WoWObjects.LocalPlayer' does not contain a definition for 'NextLevelXP' and no extension method 'NextLevelXP' accepting a first argument of type 'Styx.WoWInternals.WoWObjects.LocalPlayer' could be found (are you missing a using directive or an assembly reference?)
File: TimeUntilLevel v1.2.cs Line: 42 Error: 'Styx.WoWInternals.WoWObjects.LocalPlayer' does not contain a definition for 'XP' and no extension method 'XP' accepting a first argument of type 'Styx.WoWInternals.WoWObjects.LocalPlayer' could be found (are you missing a using directive or an assembly reference?)
 
Log copy/paste

i keep getting this in Log:

Code:
File: TimeUntilLevel v1.2.cs Line: 42 Error: 'Styx.WoWInternals.WoWObjects.LocalPlayer' does not contain a definition for 'XP' and no extension method 'XP' accepting a first argument of type 'Styx.WoWInternals.WoWObjects.LocalPlayer' could be found (are you missing a using directive or an assembly reference?)

is it a bug?
 
Found the fix, confirmed working by me.

change line 42 from:
Code:
float timeleft = ((Styx.WoWInternals.ObjectManager.Me.NextLevelXP - Styx.WoWInternals.ObjectManager.Me.XP) / Styx.Helpers.InfoPanel.XPPerHour) * 60;
to:
Code:
float timeleft = ((Styx.WoWInternals.ObjectManager.Me.NextLevelExperience - Styx.WoWInternals.ObjectManager.Me.Experience) / Styx.Helpers.InfoPanel.XPPerHour) * 60;

Basically a more recent release of HB changed 'XP' to 'Experience' in certain structures.

Or you can download the modified version from my attachment and replace the old version. (if this is an issue, let me know, or remove it)

Sorry, for some reason the attachment didn't get attached correctly, fixed.

Its right there on the previous page guys.
 
Version 1.2.1 works great!!! thanks for the fix SmCloud
 
Back
Top