TActivePlayer.ID

From Soldat Community Wiki
Revision as of 19:40, 26 June 2013 by Squiddy (talk | contribs) (Example)
Jump to: navigation, search
property TActivePlayer.ID: Byte
 Acess mode: R

Description

Number representing the current ID of a player.

Example

 procedure OnJoin(Player: TActivePlayer; Team: TTeam);
 begin
  writeLn('Player with ID ' + inttostr(Player.ID) + ' just joined!');
 end;