Skip to content

ConquerHackLeaderboardEntry

python
class ConquerHackLeaderboardEntry(BaseModel):
    name: str
    tiles: int
    isAlive: bool
    deathTick: Optional[int]
java
public class ConquerHackLeaderboardEntry {
    @NotNull public String name;
    public int tiles;
    public boolean isAlive;
    @Nullable public Tick deathTick;
}

Encapsulates information about a single entry in the ConquerHack leaderboard, which tracks the performance of players in a game.

Attributes

AttributeTypeDescription
namestrThe player's display name (username).
tilesintThe number of tiles the player currently owns.
isAliveboolWhether the player is currently alive in the game.
deathTickTick or None/nullThe tick at which the player was eliminated, or None/null if the player is still alive.