Skip to content

@lands.io/mod-sdk / PlayerInfo

Interface: PlayerInfo

Player identity information

Table of contents

Properties

Properties

clanId

Optional Readonly clanId: string


clanTag

Optional Readonly clanTag: string


clientID

Readonly clientID: null | string


flag

Readonly flag: string


id

Readonly id: string


name

Readonly name: string


playerType

Readonly playerType: PlayerType


skin

Readonly skin: number


Source Code

View full implementation
/**
 * Player identity information
 */
export interface PlayerInfo {
  readonly flag: string;
  readonly name: string;
  readonly playerType: PlayerType;
  readonly clientID: ClientID | null;
  readonly id: PlayerID;
  readonly skin: number;
  readonly clanId?: string;
  readonly clanTag?: string;
}