Add ConVarSuppression

This commit is contained in:
BotoX
2017-07-05 22:54:29 +02:00
parent 2549a5e5aa
commit 83c05dc81e
3 changed files with 133 additions and 15 deletions
+7 -7
View File
@@ -38,7 +38,7 @@ enum ZR_RespawnCondition
/**
* Spawns a player into the round.
*
*
* @param client The client index.
* @param condition Optional. Set respawn condition, defaults to current
* ZR settings. See ZR_RespawnCondition for details.
@@ -49,7 +49,7 @@ native void ZR_RespawnClient(int client, ZR_RespawnCondition condition = ZR_Reps
/**
* Called right before ZR is about to respawn a player.
* Here you can modify any variable or stop the action entirely.
*
*
* @param client The client index.
* @param condition Respawn condition. See ZR_RespawnCondition for
* details.
@@ -60,7 +60,7 @@ forward Action ZR_OnClientRespawn(int &client, ZR_RespawnCondition &condition);
/**
* Called after ZR respawned a player.
*
*
* @param client The client index.
* @param condition Current condition of the respawned player. See
* ZR_RespawnCondition for details.
@@ -69,10 +69,10 @@ forward void ZR_OnClientRespawned(int client, ZR_RespawnCondition condition);
/**
* Set if a player died by a suicide or world damage.
* Note: This will change the respawn condition.
* Note: This value is reset to default by ZR when a zombie player dies.
*
*
* @param client The client index.
* @param suicide True to say the player suicided, false if killed by another
* player.
@@ -85,9 +85,9 @@ native void ZR_SetKilledByWorld(int client, bool suicide);
* Get whether the player died by a suicide or world damage.
*
* Note: This value is only valid after death event, and before respawn.
*
*
* @param client The client index.
*
*
* @return True if the player died by suicide, false if killed by
* another player.
* @error Invalid client index or not connected.