Welcome!

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

Sign up now!

Broken method list.

Joined
Nov 6, 2013
Messages
16
Legacy Mode (RS3)
Error: didn't work on legacy mode on other modes i assume it works.
Class: com.runemate.game.api.rs3.local.hud.interfaces.Summoning
Method: getPoints()
Fix:
Code:
  /**
    *
    * @return returns the remaining amount of summoning points must be on legacy mode.
    */
   public static int getSummoningPointsLegacyMode() {
     InterfaceComponent ic = Interfaces.getAt(1506, 4, 7);
     if (ic != null)
       return Integer.valueOf(ic.getText());
     // throw error
     return 0;
   }
[/spoiler]
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
And how do you calculate your maximum summoning points in legacy rs? Can you find a way so I can adjust the full api?
 
Mod Automation
Joined
Jul 26, 2013
Messages
3,049
At a summoning level of 1 I have 10 summoning points, does that scale?
Yes. Not sure what the effect of boosts like potions and special foods would have on it, as well as skill draining effects.
 
Joined
Nov 26, 2014
Messages
616
Pretty sure legacy mode summoning points is interface 1506-4-7

Edit:

Sorry, didnt read OP's code

Max summoning points is summoning level
 
Top