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

[Plugin] TimeToLevel

kuchr3

New Member
Joined
Jan 15, 2010
Messages
70
Reaction score
6
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 :p

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".
 

Attachments

Last edited:
updated for the latest hb build (Honorbuddy 2.0.0.3052)
 
Great! :)

Btw. Could you color the Log Output? Would make it a lot more easyer to the TimeToLevel entry between the CC spam :D
 
What do we change exactly? I'm unsure when you said change 2 lines below.

//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
 
Last edited:
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
 
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 + "');");
 
Back
Top