2009-04-19 19:54:21 +02:00
|
|
|
/*
|
|
|
|
* ============================================================================
|
|
|
|
*
|
2009-07-05 08:49:23 +02:00
|
|
|
* Zombie:Reloaded
|
2009-04-19 19:54:21 +02:00
|
|
|
*
|
2009-06-12 05:51:26 +02:00
|
|
|
* File: damage.inc
|
|
|
|
* Type: Core
|
|
|
|
* Description: Modify damage stuff here.
|
|
|
|
*
|
2013-01-12 08:47:36 +01:00
|
|
|
* Copyright (C) 2009-2013 Greyscale, Richard Helgeby
|
2009-06-12 05:51:26 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-04-19 19:54:21 +02:00
|
|
|
*
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
/**
|
|
|
|
* @section Counter Strike: Source specific damage flags.
|
|
|
|
*/
|
|
|
|
#define DMG_CSS_FALL (DMG_FALL) // Client was damaged by falling.
|
|
|
|
#define DMG_CSS_BLAST (DMG_BLAST) // Client was damaged by explosion.
|
|
|
|
#define DMG_CSS_BURN (DMG_DIRECT) // Client was damaged by fire.
|
|
|
|
#define DMG_CSS_BULLET (DMG_NEVERGIB) // Client was shot or knifed.
|
|
|
|
#define DMG_CSS_HEADSHOT (1 << 30) // Client was shot in the head.
|
|
|
|
/**
|
|
|
|
* @endsection
|
|
|
|
*/
|
|
|
|
#endif
|
2009-04-19 19:54:21 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @section Suicide intercept defines.
|
|
|
|
*/
|
|
|
|
#define DAMAGE_SUICIDE_MAX_CMDS 5
|
|
|
|
#define DAMAGE_SUICIDE_MAX_LENGTH 16
|
|
|
|
/**
|
|
|
|
* @endsection
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2009-05-14 02:28:26 +02:00
|
|
|
* Array to store TraceAttack HookIDs.
|
2009-04-19 19:54:21 +02:00
|
|
|
*/
|
2009-05-14 02:28:26 +02:00
|
|
|
new g_iDamageTraceAttackHookID[MAXPLAYERS + 1] = {-1, ...};
|
2009-04-19 19:54:21 +02:00
|
|
|
|
2009-05-14 02:28:26 +02:00
|
|
|
/**
|
|
|
|
* Array to store OnTakeDamage HookIDs.
|
|
|
|
*/
|
|
|
|
new g_iDamageOnTakeDamageHookID[MAXPLAYERS + 1] = {-1, ...};
|
2009-04-19 19:54:21 +02:00
|
|
|
|
2009-06-26 04:38:03 +02:00
|
|
|
/**
|
|
|
|
* Array to keep track of normal/mother zombies.
|
|
|
|
*/
|
|
|
|
new bool:g_bDamageMotherZombie[MAXPLAYERS + 1];
|
|
|
|
|
2009-04-19 19:54:21 +02:00
|
|
|
/**
|
2009-05-14 02:28:26 +02:00
|
|
|
* Hook commands related to damage here.
|
2010-02-14 17:26:28 +01:00
|
|
|
* Note: This isn't OnCommandsHook because this depends on cvars.
|
2009-04-19 19:54:21 +02:00
|
|
|
*/
|
2010-02-14 17:26:28 +01:00
|
|
|
new bool:g_bSuicideCmdsHooked = false;
|
|
|
|
DamageLoad()
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
2010-02-14 17:26:28 +01:00
|
|
|
if (g_bSuicideCmdsHooked)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-04-19 19:54:21 +02:00
|
|
|
// Create command callbacks (intercepts) for listed suicide commands.
|
2009-05-14 02:28:26 +02:00
|
|
|
decl String:suicidecmds[DAMAGE_SUICIDE_MAX_CMDS * DAMAGE_SUICIDE_MAX_LENGTH];
|
2009-04-20 02:56:26 +02:00
|
|
|
GetConVarString(g_hCvarsList[CVAR_DAMAGE_SUICIDE_CMDS], suicidecmds, sizeof(suicidecmds));
|
2009-04-19 19:54:21 +02:00
|
|
|
|
|
|
|
// Create array to store cmds
|
|
|
|
new String:arrayCmds[DAMAGE_SUICIDE_MAX_CMDS][DAMAGE_SUICIDE_MAX_LENGTH];
|
|
|
|
|
|
|
|
// Explode string into array indexes.
|
2009-07-24 00:05:14 +02:00
|
|
|
new cmdcount = ExplodeString(suicidecmds, ",", arrayCmds, sizeof(arrayCmds), sizeof(arrayCmds[]));
|
2009-04-19 19:54:21 +02:00
|
|
|
|
2009-05-29 08:43:15 +02:00
|
|
|
// x = Array index.
|
2009-04-19 19:54:21 +02:00
|
|
|
// arrayCmds[x] = suicide command.
|
|
|
|
for (new x = 0; x <= cmdcount - 1; x++)
|
|
|
|
{
|
2009-07-24 00:05:14 +02:00
|
|
|
// Trim whitespace.
|
|
|
|
TrimString(arrayCmds[x]);
|
|
|
|
|
2009-04-19 19:54:21 +02:00
|
|
|
// Prepare intercept for this command.
|
|
|
|
RegConsoleCmd(arrayCmds[x], DamageSuicideIntercept);
|
|
|
|
}
|
2010-02-14 17:26:28 +01:00
|
|
|
|
|
|
|
// Important: If ZR can be unloaded some day, make sure to remove the listeners and set this to false.
|
|
|
|
g_bSuicideCmdsHooked = true;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Client is joining the server.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
2009-04-22 04:53:19 +02:00
|
|
|
*/
|
2009-04-19 19:54:21 +02:00
|
|
|
DamageClientInit(client)
|
|
|
|
{
|
2009-04-21 01:45:49 +02:00
|
|
|
// Hook damage callbacks.
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
SDKHook(client, SDKHook_TraceAttack, DamageTraceAttack);
|
|
|
|
SDKHook(client, SDKHook_OnTakeDamage, DamageOnTakeDamage);
|
|
|
|
|
|
|
|
// Set dummy values so it think it's hooked.
|
|
|
|
g_iDamageTraceAttackHookID[client] = 1;
|
|
|
|
g_iDamageOnTakeDamageHookID[client] = 1;
|
|
|
|
#else
|
|
|
|
g_iDamageTraceAttackHookID[client] = ZRTools_HookTraceAttack(client, DamageTraceAttack);
|
|
|
|
g_iDamageOnTakeDamageHookID[client] = ZRTools_HookOnTakeDamage(client, DamageOnTakeDamage);
|
|
|
|
#endif
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Client is leaving the server.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
*/
|
|
|
|
DamageOnClientDisconnect(client)
|
|
|
|
{
|
2009-05-14 02:28:26 +02:00
|
|
|
// Unhook damage callbacks, and reset variables.
|
|
|
|
|
|
|
|
if (g_iDamageTraceAttackHookID[client] != -1)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
SDKUnhook(client, SDKHook_TraceAttack, DamageTraceAttack);
|
|
|
|
#else
|
|
|
|
ZRTools_UnhookTraceAttack(g_iDamageTraceAttackHookID[client]);
|
|
|
|
#endif
|
|
|
|
|
2009-05-14 02:28:26 +02:00
|
|
|
g_iDamageTraceAttackHookID[client] = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (g_iDamageOnTakeDamageHookID[client] != -1)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
SDKUnhook(client, SDKHook_OnTakeDamage, DamageOnTakeDamage);
|
|
|
|
#else
|
|
|
|
ZRTools_UnhookOnTakeDamage(g_iDamageOnTakeDamageHookID[client]);
|
|
|
|
#endif
|
|
|
|
|
2009-05-14 02:28:26 +02:00
|
|
|
g_iDamageOnTakeDamageHookID[client] = -1;
|
|
|
|
}
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
2009-06-26 04:38:03 +02:00
|
|
|
/**
|
|
|
|
* A client was infected.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
* @param motherinfect True if the zombie is mother, false if not.
|
|
|
|
*/
|
|
|
|
DamageOnClientInfected(client, bool:motherinfect)
|
|
|
|
{
|
|
|
|
// Update if client is a mother zombie or not.
|
|
|
|
g_bDamageMotherZombie[client] = motherinfect;
|
|
|
|
}
|
|
|
|
|
2009-04-19 19:54:21 +02:00
|
|
|
/**
|
|
|
|
* Hook: TraceAttack
|
|
|
|
* Called right before the bullet enters a client.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
2009-05-11 04:47:09 +02:00
|
|
|
* @param inflictor The entity index of the inflictor.
|
|
|
|
* @param attacker The client index of the attacker.
|
|
|
|
* @param damage The amount of damage inflicted.
|
2009-04-19 19:54:21 +02:00
|
|
|
* @param hitbox The hitbox index.
|
2009-05-11 04:47:09 +02:00
|
|
|
* @param hitgroup The hitgroup index.
|
|
|
|
* @return Return ZRTools_Handled to stop bullet from hitting client.
|
|
|
|
* ZRTools_Continue to allow bullet to hit client.
|
2009-04-19 19:54:21 +02:00
|
|
|
*/
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
public Action:DamageTraceAttack(client, &attacker, &inflictor, &Float:damage, &damagetype, &ammotype, hitbox, hitgroup)
|
|
|
|
#else
|
2009-05-11 04:47:09 +02:00
|
|
|
public ZRTools_Action:DamageTraceAttack(client, inflictor, attacker, Float:damage, hitbox, hitgroup)
|
2009-11-04 21:37:26 +01:00
|
|
|
#endif
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
|
|
|
// If attacker isn't valid, then stop.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (!ZRIsClientValid(attacker))
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-24 05:02:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If client is attacking himself, then stop.
|
|
|
|
if(attacker == client)
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get zombie flag for each client.
|
2009-04-24 05:02:19 +02:00
|
|
|
new bool:clientzombie = InfectIsClientInfected(client);
|
|
|
|
new bool:attackerzombie = InfectIsClientInfected(attacker);
|
2009-04-19 19:54:21 +02:00
|
|
|
|
|
|
|
// If the flags are the same on both clients, then stop.
|
|
|
|
if (clientzombie == attackerzombie)
|
|
|
|
{
|
2009-04-23 06:39:11 +02:00
|
|
|
// If friendly fire is blocked, then allow damage.
|
|
|
|
new bool:damageblockff = GetConVarBool(g_hCvarsList[CVAR_DAMAGE_BLOCK_FF]);
|
|
|
|
if (!damageblockff)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-23 06:39:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop bullet from hurting client.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_HANDLED;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
2009-04-23 06:39:11 +02:00
|
|
|
// Here we know that attacker and client are different teams.
|
|
|
|
|
2013-01-05 02:44:46 +01:00
|
|
|
// Check if immunity module requires damage to be blocked.
|
|
|
|
if (ImmunityOnClientTraceAttack(client, attacker, damage, hitgroup, damagetype))
|
|
|
|
{
|
|
|
|
// Block damage.
|
|
|
|
return ACTION_HANDLED;
|
|
|
|
}
|
|
|
|
|
2009-06-26 09:00:05 +02:00
|
|
|
// If client is a human, then allow damage.
|
|
|
|
if (InfectIsClientHuman(client))
|
|
|
|
{
|
|
|
|
// Allow damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-06-26 09:00:05 +02:00
|
|
|
}
|
|
|
|
|
2009-04-23 06:39:11 +02:00
|
|
|
// If damage hitgroups cvar is disabled, then allow damage.
|
|
|
|
new bool:damagehitgroups = GetConVarBool(g_hCvarsList[CVAR_DAMAGE_HITGROUPS]);
|
|
|
|
if (!damagehitgroups)
|
|
|
|
{
|
|
|
|
// Allow damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-23 06:39:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If damage is disabled for this hitgroup, then stop.
|
2009-05-29 08:43:15 +02:00
|
|
|
new index = HitgroupToIndex(hitgroup);
|
|
|
|
|
|
|
|
// If index can't be found, then allow damage.
|
|
|
|
if (index == -1)
|
|
|
|
{
|
|
|
|
// Allow damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-05-29 08:43:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
new bool:candamage = HitgroupsCanDamage(index);
|
2009-04-23 06:39:11 +02:00
|
|
|
if (!candamage)
|
|
|
|
{
|
|
|
|
// Stop bullet from hurting client.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_HANDLED;
|
2009-04-23 06:39:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Allow damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hook: OnTakeDamage
|
|
|
|
* Called right before damage is done.
|
2009-05-11 04:47:09 +02:00
|
|
|
*
|
2009-04-19 19:54:21 +02:00
|
|
|
* @param client The client index.
|
2009-05-11 04:47:09 +02:00
|
|
|
* @param inflictor The entity index of the inflictor.
|
|
|
|
* @param attacker The client index of the attacker.
|
|
|
|
* @param damage The amount of damage inflicted.
|
|
|
|
* @param damagetype The type of damage inflicted.
|
|
|
|
* @param ammotype The ammo type of the attacker's weapon.
|
|
|
|
* @return Return ZRTools_Handled to stop the damage to client.
|
|
|
|
* ZRTools_Continue to allow damage to client.
|
2009-04-19 19:54:21 +02:00
|
|
|
*/
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
public Action:DamageOnTakeDamage(client, &attacker, &inflictor, &Float:damage, &damagetype)
|
|
|
|
#else
|
2009-05-11 04:47:09 +02:00
|
|
|
public ZRTools_Action:DamageOnTakeDamage(client, inflictor, attacker, Float:damage, damagetype, ammotype)
|
2009-11-04 21:37:26 +01:00
|
|
|
#endif
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
|
|
|
// Get classname of the inflictor.
|
|
|
|
decl String:classname[64];
|
|
|
|
GetEdictClassname(inflictor, classname, sizeof(classname));
|
|
|
|
|
|
|
|
// If entity is a trigger, then allow damage. (Map is damaging client)
|
|
|
|
if (StrContains(classname, "trigger") > -1)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
2009-07-17 03:34:56 +02:00
|
|
|
new action;
|
|
|
|
|
|
|
|
// Forward this hook to another module an return (or not) what it wants.
|
|
|
|
action = NapalmOnTakeDamage(client, damagetype);
|
|
|
|
|
2009-11-04 21:37:26 +01:00
|
|
|
// If the napalm module wants to return here, then return the int casted into the action type.
|
2009-07-17 03:34:56 +02:00
|
|
|
if (action > -1)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
#if defined USE_SDKHOOKS
|
|
|
|
return Action:action;
|
|
|
|
#else
|
|
|
|
return ZRTools_Action:action;
|
|
|
|
#endif
|
2009-07-17 03:34:56 +02:00
|
|
|
}
|
|
|
|
|
2009-04-23 06:39:11 +02:00
|
|
|
// Client was shot or knifed.
|
2009-05-11 04:47:09 +02:00
|
|
|
if (damagetype & DMG_CSS_BULLET)
|
2009-04-21 01:45:49 +02:00
|
|
|
{
|
2009-04-23 06:39:11 +02:00
|
|
|
// If attacker isn't valid, then allow damage.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (!ZRIsClientValid(attacker))
|
2009-04-21 01:45:49 +02:00
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-21 01:45:49 +02:00
|
|
|
}
|
|
|
|
|
2009-04-23 06:39:11 +02:00
|
|
|
// Get zombie flag for each client.
|
2009-04-24 05:02:19 +02:00
|
|
|
new bool:clientzombie = InfectIsClientInfected(client);
|
|
|
|
new bool:attackerzombie = InfectIsClientInfected(attacker);
|
2009-04-23 06:39:11 +02:00
|
|
|
|
|
|
|
// If client and attacker are on the same team, then let CS:S handle the rest.
|
|
|
|
if (clientzombie == attackerzombie)
|
2009-04-21 01:45:49 +02:00
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-21 01:45:49 +02:00
|
|
|
}
|
|
|
|
|
2009-04-23 06:39:11 +02:00
|
|
|
// We know that clientzombie is the opposite of attacker zombie.
|
|
|
|
|
|
|
|
// If the client is a zombie, then allow damage.
|
|
|
|
if (clientzombie)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-23 06:39:11 +02:00
|
|
|
}
|
|
|
|
|
2013-01-11 10:07:18 +01:00
|
|
|
// Check if immunity module blocked or modified the damage.
|
|
|
|
new Action:immunityAction = ImmunityOnClientDamage(client, attacker, damage);
|
|
|
|
if (immunityAction != Plugin_Continue)
|
2013-01-05 02:44:46 +01:00
|
|
|
{
|
2013-01-11 10:07:18 +01:00
|
|
|
// Damage was blocked or modified.
|
|
|
|
return immunityAction;
|
2013-01-05 02:44:46 +01:00
|
|
|
}
|
2009-04-23 06:39:11 +02:00
|
|
|
|
2013-01-05 02:44:46 +01:00
|
|
|
// Client is about to be infected, re-add HP so they aren't killed by
|
|
|
|
// knife. But only do this when immunity mode is disabled.
|
|
|
|
if (ClassGetImmunityMode(client) == Immunity_None)
|
|
|
|
{
|
|
|
|
new health = GetClientHealth(client);
|
|
|
|
SetEntityHealth(client, health + RoundToNearest(damage));
|
|
|
|
|
|
|
|
// Allow damage.
|
|
|
|
return ACTION_CONTINUE;
|
|
|
|
}
|
2009-04-21 01:45:49 +02:00
|
|
|
}
|
|
|
|
// Client was damaged by explosion.
|
2009-05-11 04:47:09 +02:00
|
|
|
else if (damagetype & DMG_CSS_BLAST)
|
2009-04-21 01:45:49 +02:00
|
|
|
{
|
2009-04-23 06:39:11 +02:00
|
|
|
// If blast damage is blocked, then stop.
|
|
|
|
new bool:damageblockblast = GetConVarBool(g_hCvarsList[CVAR_DAMAGE_BLOCK_BLAST]);
|
|
|
|
if (!damageblockblast)
|
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-23 06:39:11 +02:00
|
|
|
}
|
|
|
|
|
2009-04-21 01:45:49 +02:00
|
|
|
// If attacker isn't valid, then allow damage.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (!ZRIsClientValid(attacker))
|
2009-04-21 01:45:49 +02:00
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-21 01:45:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If client is a zombie, then allow damage.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (InfectIsClientInfected(client))
|
2009-04-21 01:45:49 +02:00
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-21 01:45:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_HANDLED;
|
2009-04-21 01:45:49 +02:00
|
|
|
}
|
2009-04-23 06:39:11 +02:00
|
|
|
// Client was damaged by falling.
|
2009-05-11 04:47:09 +02:00
|
|
|
else if (damagetype & DMG_CSS_FALL)
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
2009-04-23 06:39:11 +02:00
|
|
|
// If class has "nofalldamage" disabled, then allow damage.
|
|
|
|
new bool:blockfalldamage = ClassGetNoFallDamage(client);
|
|
|
|
if (!blockfalldamage)
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
2009-04-21 01:45:49 +02:00
|
|
|
|
2009-04-23 06:39:11 +02:00
|
|
|
// Stop damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_HANDLED;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Allow damage.
|
2009-11-04 21:37:26 +01:00
|
|
|
return ACTION_CONTINUE;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-01-21 02:48:13 +01:00
|
|
|
* Command callback (kill, spectate, jointeam, joinclass)
|
2009-04-19 19:54:21 +02:00
|
|
|
* Block command if plugin thinks they are trying to commit suicide.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
* @param argc The number of arguments in command string.
|
|
|
|
*/
|
|
|
|
public Action:DamageSuicideIntercept(client, argc)
|
|
|
|
{
|
2010-05-19 15:34:26 +02:00
|
|
|
// Get suicide interception settings.
|
|
|
|
new bool:suicideAfterInfect = GetConVarBool(g_hCvarsList[CVAR_SUICIDE_AFTER_INFECT]);
|
|
|
|
new bool:suicideZombie = GetConVarBool(g_hCvarsList[CVAR_DAMAGE_SUICIDE_ZOMBIE]);
|
|
|
|
new bool:suicideZombieMother = GetConVarBool(g_hCvarsList[CVAR_DAMAGE_SUICIDE_MZOMBIE]);
|
|
|
|
new bool:suicideHuman = GetConVarBool(g_hCvarsList[CVAR_DAMAGE_SUICIDE_HUMAN]);
|
2009-04-19 19:54:21 +02:00
|
|
|
|
2010-05-19 15:34:26 +02:00
|
|
|
// Check various criterias that will _allow_ the command. If no criterias
|
|
|
|
// match, block it.
|
2009-04-19 19:54:21 +02:00
|
|
|
|
2010-05-19 15:34:26 +02:00
|
|
|
// Check general criterias.
|
|
|
|
if ((suicideAfterInfect && !g_bZombieSpawned) || // Check if it should block suicides before mother zombie.
|
|
|
|
!ZRIsClientValid(client) || // Validate client (to stop console).
|
|
|
|
!IsPlayerAlive(client)) // Check if dead.
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
2010-05-19 15:34:26 +02:00
|
|
|
// Allow command.
|
2009-04-19 19:54:21 +02:00
|
|
|
return Plugin_Continue;
|
|
|
|
}
|
|
|
|
|
2010-05-19 15:34:26 +02:00
|
|
|
// Check zombie criterias.
|
2009-06-26 04:38:03 +02:00
|
|
|
if (InfectIsClientInfected(client))
|
|
|
|
{
|
2010-05-19 15:34:26 +02:00
|
|
|
if (g_bDamageMotherZombie[client] && !suicideZombieMother || // Check if suicide is allowed for mother zombies.
|
|
|
|
(!g_bDamageMotherZombie[client] && !suicideZombie)) // Check if suicide is allowed for regular zombies.
|
2009-06-26 04:38:03 +02:00
|
|
|
{
|
2010-05-19 15:34:26 +02:00
|
|
|
// Allow command.
|
|
|
|
return Plugin_Continue;
|
2009-06-26 04:38:03 +02:00
|
|
|
}
|
|
|
|
}
|
2009-04-19 19:54:21 +02:00
|
|
|
|
2010-05-19 15:34:26 +02:00
|
|
|
// Check human criterias.
|
|
|
|
// Allow suicide if player is a human and humans can suicide.
|
|
|
|
if (InfectIsClientHuman(client) && !suicideHuman)
|
2009-04-19 19:54:21 +02:00
|
|
|
{
|
2010-05-19 15:34:26 +02:00
|
|
|
// Allow command.
|
|
|
|
return Plugin_Continue;
|
2009-04-19 19:54:21 +02:00
|
|
|
}
|
|
|
|
|
2010-05-19 15:34:26 +02:00
|
|
|
// Tell client their command has been intercepted, and log.
|
|
|
|
TranslationPrintToChat(client, "Damage suicide intercept");
|
|
|
|
LogEvent(false, LogType_Normal, LOG_GAME_EVENTS, LogModule_Damage, "Suicide Intercept", "\"%L\" attempted suicide.", client);
|
|
|
|
|
|
|
|
// Block command.
|
|
|
|
return Plugin_Handled;
|
2009-05-01 11:22:45 +02:00
|
|
|
}
|