Joseph Posted June 26, 2014 Posted June 26, 2014 I'm requesting a method that returns the exp per hour
Botre Posted June 26, 2014 Posted June 26, 2014 (edited) XperHour = TotalXGainedInRuntime * 3600000.0D / RunTime(inMs) Edited June 26, 2014 by Botrepreneur
Apaec Posted June 26, 2014 Posted June 26, 2014 (edited) XperHour = TotalXGainedInRuntime * 3600000.0D / RunTime(inMs) I think he meant in the API, right? If not then ye you're sorted. xD Edited June 26, 2014 by Apaec 1
Botre Posted June 26, 2014 Posted June 26, 2014 I think he meant in the API, right? If not then ye you're sorted. xD It could easily be implemented into the API's ExperienceTracker method indeed. If I can write my own XpTracker with an Xp/Hour method then I'm pretty sure the devs can do it too :p But I'd rather see perfect randoms, fixed world hopping and maybe webwalking first tbh. 1
NotoriousPP Posted June 26, 2014 Posted June 26, 2014 (edited) experienceTracker already has a exp per hour methods. But the only reason why i didnt use there method and i was requesting one is because of my furniture list. If i use the methods from the api i will be giving my users wrong infomation. Thanks for the method. naw i wasnt talking about that one. i knew about it though thats I'm requesting a method that returns the exp per hour If your talking about the experience tracker, then this should work: @Override public void onStart() throws InterruptedException { experienceTracker.start(Skill.HERBLORE); } @Override public void onPaint(Graphics2D g) { g.drawString(experienceTracker.getGainedXPPerHour(Skill.HERBLORE), 300, 436); //Extra Method, Need timer to format long drawString(Timer.format(experienceTracker.getTimeToLevel(Skill.HERBLORE)), 381, 466); } Edited June 26, 2014 by NotoriousPP 1
Joseph Posted June 26, 2014 Author Posted June 26, 2014 (edited) It could easily be implemented into the API's ExperienceTracker method indeed. If I can write my own XpTracker with an Xp/Hour method then I'm pretty sure the devs can do it too But I'd rather see perfect randoms, fixed world hopping and maybe webwalking first tbh. experienceTracker already has a exp per hour methods. But the only reason why i didnt use their method and i was requesting one is because of my furniture list. If i use the method from the api i will be giving my users wrong information. Thanks for the method. I think he meant in the API, right? If not then ye you're sorted. xD naw i wasnt talking about that one. i knew about it though thats If your talking about the experience tracker, then this should work: i know about it already, i explained why i need the method, thanks anyway Edited June 26, 2014 by josedpay