2009-04-16 07:35:18 +02:00
|
|
|
/*
|
|
|
|
* ============================================================================
|
|
|
|
*
|
|
|
|
* Zombie:Reloaded
|
|
|
|
*
|
|
|
|
* File: respawn.inc
|
|
|
|
* Description: Players come back to life
|
|
|
|
*
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array for storing respawn timer handles per client.
|
|
|
|
*/
|
|
|
|
new Handle:tRespawn[MAXPLAYERS + 1];
|
|
|
|
|
2009-04-16 22:21:32 +02:00
|
|
|
/**
|
|
|
|
* Array for flagging zombies who were killed by world.
|
|
|
|
*/
|
|
|
|
new bool:pKilledByWorld[MAXPLAYERS + 1];
|
|
|
|
|
2009-04-16 07:35:18 +02:00
|
|
|
/**
|
|
|
|
* Client is joining the server.
|
|
|
|
*/
|
|
|
|
RespawnClientInit(client)
|
|
|
|
{
|
|
|
|
// Reset timer handle.
|
|
|
|
tRespawn[client] = INVALID_HANDLE;
|
|
|
|
|
2009-04-16 22:21:32 +02:00
|
|
|
// Init pKilledByWorld for client.
|
|
|
|
pKilledByWorld[client] = false;
|
2009-04-16 07:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Client is spawning into the game.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
*/
|
|
|
|
RespawnOnClientSpawn(client)
|
|
|
|
{
|
|
|
|
// If timer is running, kill it.
|
|
|
|
if (tRespawn[client] != INVALID_HANDLE)
|
|
|
|
{
|
|
|
|
KillTimer(tRespawn[client]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset timer handle.
|
|
|
|
tRespawn[client] = INVALID_HANDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Client has been killed.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
*/
|
2009-04-16 22:21:32 +02:00
|
|
|
RespawnOnClientDeath(client, attacker, const String:weapon[])
|
2009-04-16 07:35:18 +02:00
|
|
|
{
|
2009-04-16 22:21:32 +02:00
|
|
|
// If client is a zombie, check if they were killed by world.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (InfectIsClientInfected(client))
|
2009-04-16 22:21:32 +02:00
|
|
|
{
|
|
|
|
// Set pKilledByWorld to true if attacker is not a valid client.
|
2009-04-24 05:02:19 +02:00
|
|
|
pKilledByWorld[client] = !ZRIsClientValid(attacker);
|
2009-04-16 22:21:32 +02:00
|
|
|
}
|
|
|
|
|
2009-04-16 07:35:18 +02:00
|
|
|
// If timer is running, kill it.
|
|
|
|
if (tRespawn[client] != INVALID_HANDLE)
|
|
|
|
{
|
|
|
|
KillTimer(tRespawn[client]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If player was infected, then stop.
|
|
|
|
if (StrEqual(weapon, "zombie_claws_of_death", false))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If respawn is disabled, stop here.
|
2009-04-20 02:56:26 +02:00
|
|
|
new bool:respawn = GetConVarBool(g_hCvarsList[CVAR_RESPAWN]);
|
2009-04-16 07:35:18 +02:00
|
|
|
if (!respawn)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start respawn timer.
|
2009-04-20 02:56:26 +02:00
|
|
|
new Float:delay = GetConVarFloat(g_hCvarsList[CVAR_RESPAWN_DELAY]);
|
2009-04-16 07:35:18 +02:00
|
|
|
tRespawn[client] = CreateTimer(delay, RespawnTimer, client, TIMER_FLAG_NO_MAPCHANGE);
|
|
|
|
}
|
2009-04-16 22:21:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns if a player is to be respawned as a zombie, because they were killed by world.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
* @return True if they were killed by world, false if not or cvar is disabled.
|
|
|
|
*/
|
|
|
|
RespawnKilledByWorld(client)
|
|
|
|
{
|
|
|
|
// Return true if both the cvar is enabled and the player was killed by world.
|
2009-04-20 02:56:26 +02:00
|
|
|
return (GetConVarBool(g_hCvarsList[CVAR_RESPAWN_ZOMBIE_WORLD]) && pKilledByWorld[client]);
|
2009-04-16 22:21:32 +02:00
|
|
|
}
|
|
|
|
|
2009-04-16 07:35:18 +02:00
|
|
|
/**
|
|
|
|
* Spawns a player into the round.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
*/
|
|
|
|
RespawnSpawnClient(client)
|
|
|
|
{
|
|
|
|
// If client isn't in-game, then stop.
|
|
|
|
if (!IsClientInGame(client))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spawn player.
|
|
|
|
CS_RespawnPlayer(client);
|
|
|
|
|
|
|
|
// Stop here if the first zombie hasn't spawned yet.
|
2009-04-17 12:16:44 +02:00
|
|
|
if (!g_bZombieSpawned)
|
2009-04-16 07:35:18 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get respawn team.
|
2009-04-20 02:56:26 +02:00
|
|
|
new bool:respawn_zombie = GetConVarBool(g_hCvarsList[CVAR_RESPAWN_ZOMBIE]);
|
2009-04-16 07:35:18 +02:00
|
|
|
|
|
|
|
// Get suicide respawn cvar
|
|
|
|
if (respawn_zombie)
|
|
|
|
{
|
2009-04-24 05:02:19 +02:00
|
|
|
InfectClient(client);
|
2009-04-16 07:35:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-04-20 02:56:26 +02:00
|
|
|
if (GetConVarBool(g_hCvarsList[CVAR_RESPAWN_ZOMBIE_WORLD]) && pKilledByWorld[client])
|
2009-04-16 07:35:18 +02:00
|
|
|
{
|
2009-04-24 05:02:19 +02:00
|
|
|
InfectClient(client);
|
2009-04-16 22:21:32 +02:00
|
|
|
pKilledByWorld[client] = false;
|
2009-04-16 07:35:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Timer callback, respawns a player.
|
|
|
|
*
|
|
|
|
* @param timer The timer handle.
|
|
|
|
* @param client The client index.
|
|
|
|
*/
|
|
|
|
public Action:RespawnTimer(Handle:timer, any:client)
|
|
|
|
{
|
|
|
|
// Reset timer handle.
|
|
|
|
tRespawn[client] = INVALID_HANDLE;
|
|
|
|
|
|
|
|
// If client isn't in-game, then stop.
|
|
|
|
if (!IsClientInGame(client))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If player isn't alive, then stop.
|
|
|
|
if (IsPlayerAlive(client))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get client team.
|
|
|
|
new team = GetClientTeam(client);
|
|
|
|
|
|
|
|
// If player isn't on a team, then stop.
|
|
|
|
if (team != CS_TEAM_T && team != CS_TEAM_CT)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spawn player.
|
|
|
|
RespawnSpawnClient(client);
|
2009-04-16 05:30:26 +02:00
|
|
|
}
|