Player Management ================= .. note:: TODO: - Document variables LoggedIn ~~~~~~~~ .. code-block:: pascal function LoggedIn: Boolean; Returns True if Logged in. .. note:: by WT-Fakawi Example: .. code-block:: pascal NumberOfPlayers ~~~~~~~~~~~~~~~ .. code-block:: pascal procedure NumberOfPlayers(Number: Integer); Makes the Players array have Number indexes, also sets strings and other player array's too standard 100. .. note:: by BenLand100 / Wizzup? Example: .. code-block:: pascal PlayersActive ~~~~~~~~~~~~~ .. code-block:: pascal function PlayersActive: Integer; Numbers of players active in the Players array. .. note:: by ss23 Example: .. code-block:: pascal AllPlayersInactive ~~~~~~~~~~~~~~~~~~ .. code-block:: pascal procedure NumberOfPlayers(Number: Integer); Returns true if all players are inactive in the Players array. .. note:: by ZephyrsFury Example: .. code-block:: pascal PlayerWorked ~~~~~~~~~~~~ .. code-block:: pascal function PlayerWorked(player : integer) : integer; Returns the time a player has worked.. .. note:: by SRL Community Example: .. code-block:: pascal