Parabot doesn't properly hook remaining prayer points
Created by: MitchvanWijngaarden
The Parabot client doesn't hook properly to current available prayer points.
This is most likely a 2006rebotted client bug, as there are scripts for different servers (such as: https://github.com/coolpopo/CoolFrostDrags/blob/1b6584307d9761cd58e01fafbd002a6562746dc5/coolfrostdrags/Pot.java#L49) that use Skill.PRAYER.getLevel()
to get a players current prayer points.
System.out.println(Skill.HITPOINTS.getLevel());
correctly returns current hitpoints.
e.g. 10 (out of 11)
System.out.println(Skill.PRAYER.getLevel());
returns maximum prayer points, rather than current.
e.g: 43 (out of 43) when current prayer points are 38
Both methods use the same interface method, so I assume that there is an invalid hook somewhere.