28 virtual void Save(
float);
29 virtual void Restore(
string,
string);
59 virtual string Title(
void);
This entity class is the lowest client/player class.
Definition: Client.h:34
Internal Editor game rule.
Definition: GameRules_Editor.h:23
Internal Home game rule.
Definition: GameRules_Home.h:23
virtual void RestoreComplete(void)
Called when the entity has been successfully restored from a savegame file.
Definition: GameRules_Home.qc:57
virtual void LevelNewParms(void)
Overridable: Called to set up new level parms for any ncPlayer.
Definition: GameRules_Home.qc:35
virtual bool PlayerRequestRespawn(ncPlayer)
Overridable: called when a ncPlayer requests a respawn.
Definition: GameRules_Home.qc:225
virtual void Save(float)
Handles saving a copy of this entity to a given filehandle.
Definition: GameRules_Home.qc:40
virtual void LevelChangeParms(ncPlayer)
Overridable: Called to store parms for a specific ncPlayer.
Definition: GameRules_Home.qc:30
virtual string Title(void)
Returns the title of the gamemode running.
Definition: GameRules_Home.qc:118
virtual void ChatMessageAll(ncClient cl, string strMessage)
Called by Nuclide when the server has received a chat message that is to be distributed amongst all c...
Definition: GameRules_Home.qc:125
virtual void PlayerSpawn(ncPlayer)
Overridable: Called when a ncPlayer spawns, called sometime after joining.
Definition: GameRules_Home.qc:76
void ncGameRule_Home(void)
Definition: GameRules_Home.qc:20
virtual void ChatMessageTeam(ncClient cl, string strMessage)
Called by Nuclide when the server has received a chat message that is to be distributed amongst all c...
Definition: GameRules_Home.qc:168
virtual void FrameStart(void)
Overridable: Called every server frame.
Definition: GameRules_Home.qc:112
virtual void LevelDecodeParms(ncPlayer)
Overridable: Called to decode parms for a specific ncPlayer.
Definition: GameRules_Home.qc:25
virtual void Shutdown(void)
Overridable: Called from SV_Shutdown().
Definition: GameRules_Home.qc:107
virtual bool ConsoleCommand(ncPlayer, string)
Overridable: Called when the server issues a console command.
Definition: GameRules_Home.qc:186
virtual void Precache(void)
Overridable: Called from initents().
Definition: GameRules_Home.qc:69
virtual bool ClientCommand(ncClient, string)
Overridable: Called when a client issues a client command.
Definition: GameRules_Home.qc:234
virtual void InitPostEnts(void)
Overridable: Called when all map entities have initialized.
Definition: GameRules_Home.qc:63
virtual void Restore(string, string)
Similar to ncIO::SpawnKey() but for save-game fields.
Definition: GameRules_Home.qc:46
This entity class represents every player client.
Definition: Player.h:142