Nuclear Nezz 2061 Share Posted January 2, 2015 DreamBot Experience Tracker By Nezz What does it do!? It just tracks experience gained. If a script is running it will not reset the currently tracked experience. It'll show:Experience Gained, Experience Per Hour, and Experience Until Level Man, you're so cool! I'm just a normal human bean. Download: https://www.dropbox.com/s/uko8kp2k56l0sne/xpTracker.jar?dl=0 But how do I use it!? Put it in your local scripts folder. Go to (in client) Tools->Plugins and click XP Tracker Source: XPTracker.java package nezz.dreambot.plugin.xptracker; import java.awt.Graphics; import org.dreambot.api.methods.skills.Skill; import org.dreambot.api.plugin.Plugin; import org.dreambot.api.plugin.PluginManifest; @PluginManifest(author = "Nezz", name = "XP Tracker", version = 0) public class XPTracker extends Plugin{ @Override public void onStart(){ boolean scriptRunning = getClient().getInstance().getScriptManager().isRunning(); for(Skill s : Skill.values()){ getSkillTracker().start(s, !scriptRunning); } } private String formatNumber(Integer number){ String[] suffix = new String[] { "K", "M", "B" }; int size = (number.intValue() != 0) ? (int) Math.log10(number) : 0; if (size >= 3) { while (size % 3 != 0) { size = size - 1; } } return (size >= 3) ? +(Math.round((number / Math.pow(10, size)) * 10) / 10d) + suffix[(size / 3) - 1] : +number + ""; } @Override public void onPaint(Graphics g){ int baseY = 35; for(Skill s : Skill.values()){ if(getSkillTracker().getGainedExperience(s) > 0){ long gainedXP = getSkillTracker().getGainedExperience(s); long xpTilLvl = getSkills().experienceToLevel(s); long xpPerHour = getSkillTracker().getGainedExperiencePerHour(s); int gainedLvl = getSkillTracker().getGainedLevels(s); int curLevel = getSkills().getRealLevel(s); g.drawString(s.getName() + " " + curLevel + "(" + gainedLvl + ") : " + formatNumber((int)gainedXP) + "(" + formatNumber((int)xpPerHour)+")" + " :: " + formatNumber((int)xpTilLvl),5,baseY); baseY+=15; } } } } Link to comment Share on other sites More sharing options...
Pandemic 2803 Share Posted January 2, 2015 woo Link to comment Share on other sites More sharing options...
andrew 7 Share Posted January 4, 2015 Using this now Link to comment Share on other sites More sharing options...
Mohammed 21 Share Posted January 7, 2015 noice Link to comment Share on other sites More sharing options...
TheScrub 2 Share Posted January 8, 2015 uggly graphics update it! Link to comment Share on other sites More sharing options...
Nuclear Nezz 2061 Author Share Posted January 8, 2015 uggly graphics update it! nothin wrong with the graphics ;-; Link to comment Share on other sites More sharing options...
qbots 239 Share Posted January 9, 2015 nothin wrong with the graphics ;-; Everything wrong with the graphics. Link to comment Share on other sites More sharing options...
TheScrub 2 Share Posted January 9, 2015 nothin wrong with the graphics ;-; cool animations please! Link to comment Share on other sites More sharing options...
Nuclear Nezz 2061 Author Share Posted January 9, 2015 Everything wrong with the graphics. cool animations please! y'all are so picky. Link to comment Share on other sites More sharing options...
qbots 239 Share Posted January 9, 2015 y'all are so picky. Dawg, I just want more than ugly blue text Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.