Tillerson Posted March 23, 2016 Share Posted March 23, 2016 After many days and weeks of successful script, the experienceTrackers will randomly stop working and stay at zero. experienceTracker.getGainedXPPerHour(Skill.STRENGTH) will continue to return 0 for no reason, so it's not a problem with it displaying on the screen. All the other skill tracking functions stop working correctly as well. Persists even after restarting the client, and the jar is up to date. The actual value of the This has happened on mirror mode and injection. The only way it goes back to normal is to create an entirely new project and copy/paste the classes over, then it works fine. Anyone know why this keeps happening? Quote Link to comment Share on other sites More sharing options...
Token Posted March 23, 2016 Share Posted March 23, 2016 Are you using static variables? Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted March 23, 2016 Share Posted March 23, 2016 Show some of the code Quote Link to comment Share on other sites More sharing options...
Tillerson Posted March 27, 2016 Author Share Posted March 27, 2016 in onStart... experienceTracker.start(Skill.STRENGTH); in onPaint... long xpGainedPerHour = experienceTracker.getGainedXPPerHour(Skill.STRENGTH); g.drawString("" + xpGainedPerHour, 5, 250); Quote Link to comment Share on other sites More sharing options...