- Joined
- Nov 6, 2013
- Messages
- 16
- Thread Author
- #1
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:
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]