beefsteak 30 Posted May 20, 2021 Hey, so I've got my inventory counter working but the problem is it clears the number of items after banking. public void onStart() { private int countHides; } public int onLoop() { countBottoms = Inventory.count("Cowhide"); } public void onPaint(Graphics g){ g.setColor(Color.WHITE); g.drawString("# of Hides Looted: "+ countHides, 10, 50); } Is there a simple line of code that will save the number of hides when it banks and continue to count them? Thanks!
beefsteak 30 Author Posted May 20, 2021 took me a sec to understand, but I got it working now! Thanks @Hashtag
Recommended Posts
Archived
This topic is now archived and is closed to further replies.