Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Question Paying $5 in Bitcoin for help with simple question

Joined
Mar 31, 2017
Messages
3
How do you retrieve the total level of the acc being botted on?

I tried as such, but returns 0 always:

Code:
Player currentPlayer = Players.getLocal();
int currentTotalLevel = currentPlayer.getTotalLevel();
System.out.print("Total: " + currentTotalLevel);

Will wire $5 to anyone who can help me out. Post your wallet address if you have a solution and want free $5 in BTC
 
Joined
Dec 10, 2014
Messages
3,303
How do you retrieve the total level of the acc being botted on?

I tried as such, but returns 0 always:

Code:
Player currentPlayer = Players.getLocal();
int currentTotalLevel = currentPlayer.getTotalLevel();
System.out.print("Total: " + currentTotalLevel);

Will wire $5 to anyone who can help me out. Post your wallet address if you have a solution and want free $5 in BTC
Assuming you're talking about OSRS, the method is supported on RS3 only.
 
Joined
Mar 31, 2017
Messages
3
Im talking about RS3 actually, so any idea?

And how would you retrieve total level in osrs, just interests in case I want to port my script to osrs too, later
 
Joined
Dec 10, 2014
Messages
3,303
Im talking about RS3 actually, so any idea?

And how would you retrieve total level in osrs, just interests in case I want to port my script to osrs too, later
The hook may be broken then.
Another way of doing it may be
Code:
IntStream.of(Skills.getBaseLevels()).sum();
 
Top