TimeToLevel - simple plugin A simple leveling Plugin that provides you the time required to gain a level. The output is limited to once every 3min, so you wont get spammed Features: + Post output into Hb's log (on by default) + Post output ingame into the first chattab (off by default) Open TimeToLevel.cs with your favorite editor and change the 2 lines below "//settings".
Great! Btw. Could you color the Log Output? Would make it a lot more easyer to the TimeToLevel entry between the CC spam
//settings private bool outputHB = true; private bool outputIngame = false; this means put it in hb = true this means put it into WoW = false - Kick if you're using a code editor (notepad++ or VB), that //settings should show up as //settings // you can simply edit it with nopepad if you like, too
Another neat way to do this is by using the TitanPanel addon for WoW. It can be found at curse and is updated for 4.0
Man thats still around? I haven't used that since classic. reminds me of CTRA if anyone raided in classic xD
I just modified bit of the code so the ingame notice will work. Code: if (outputHB) Logging.Write(Color.Violet, output); if (outputIngame) Lua.DoString("print('" + output + "');");