HighscoresEntry

@Serializable
data class HighscoresEntry(val rank: Int, val name: String, val level: Int, val world: String, val vocation: Vocation, val value: Long, val additionalValue: String?) : BaseCharacter, CharacterLevel(source)

An entry in the Highscores.

Constructors

Link copied to clipboard
constructor(rank: Int, name: String, level: Int, world: String, vocation: Vocation, value: Long, additionalValue: String?)

Properties

Link copied to clipboard

Additional information displayed in some categories, such as Loyalty Title.

Link copied to clipboard
open override val level: Int

The level of the character.

Link copied to clipboard
open override val name: String

The name of the character.

Link copied to clipboard
val rank: Int

The rank of the character. Multiple entries might have the same rank if they are tied.

Link copied to clipboard

The party shared experience range of the character.

Link copied to clipboard
open val url: String

The URL to the character's information page.

Link copied to clipboard
val value: Long

The value of the entry (e.g. distance level, magic level, experience)

Link copied to clipboard

The vocation of the character.

Link copied to clipboard

The world of the character.