Skills

object Skills

Skills

Functions

experience
Link copied to clipboard
fun experience(index: Int): Int

Returns the experience of the skill at the provided index. The index is to be obtained via org.powerbot.script.rt4.Constants.

experienceAt
Link copied to clipboard
fun experienceAt(level: Int): Int

Determines the experience required for the specified level.

experienceAtNextLevel
Link copied to clipboard
fun experienceAtNextLevel(index: Int): Int
experiences
Link copied to clipboard
fun experiences(): IntArray

Returns an array of current experience of skills which do consider boosts/reductions. The indexes are to be obtained via org.powerbot.script.rt4.Constants.

experienceUntilNextLevel
Link copied to clipboard
fun experienceUntilNextLevel(index: Int): Int
expsAt
Link copied to clipboard
fun expsAt(): IntArray

Returns an array of experience required to complete levels in runecape. The index is the level and the value stored at the index is the experience to complete that level. Example: exps_at()1 would be 83.

level
Link copied to clipboard
fun level(index: Int): Int

Returns the level of a skill at a given index with boosts/reductions. The index is to be obtained via org.powerbot.script.rt4. Example: level(Constants.SKILLS_STRENGTH) would return 50, if my strenght level is currently 50/70.

levelAt
Link copied to clipboard
fun levelAt(exp: Int): Int

Determines the level at the specified amount of exp.

levels
Link copied to clipboard
fun levels(): IntArray

Returns an array of levels of skills which do consider boosts/reductions. The indexes are to be obtained via org.powerbot.script.rt4.

realLevel
Link copied to clipboard
fun realLevel(index: Int): Int

Returns the level of a skill at a given index without boosts/reductions. The index is to be obtained via org.powerbot.script.rt4. Example: realLevel(Constants.SKILLS_STRENGTH) would return 70, if my strenght level is currently 50/70.

realLevels
Link copied to clipboard
fun realLevels(): IntArray

Returns an array of levels of skills which do not consider boosts/reductions. The indexes are to be obtained via org.powerbot.script.rt4.