2008-10-04 22:59:11 +02:00
|
|
|
/**
|
|
|
|
* ====================
|
|
|
|
* Zombie:Reloaded
|
|
|
|
* File: events.inc
|
|
|
|
* Author: Greyscale
|
|
|
|
* ====================
|
|
|
|
*/
|
|
|
|
|
|
|
|
HookEvents()
|
|
|
|
{
|
|
|
|
HookEvent("round_start", RoundStart);
|
|
|
|
HookEvent("round_freeze_end", RoundFreezeEnd);
|
|
|
|
HookEvent("round_end", RoundEnd);
|
|
|
|
HookEvent("player_team", PlayerTeam, EventHookMode_Pre);
|
|
|
|
HookEvent("player_spawn", PlayerSpawn);
|
|
|
|
HookEvent("player_hurt", PlayerHurt);
|
|
|
|
HookEvent("player_death", PlayerDeath);
|
|
|
|
HookEvent("player_jump", PlayerJump);
|
2009-04-17 10:20:04 +02:00
|
|
|
HookEvent("weapon_fire", WeaponFire);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
UnhookEvents()
|
|
|
|
{
|
|
|
|
UnhookEvent("round_start", RoundStart);
|
|
|
|
UnhookEvent("round_freeze_end", RoundFreezeEnd);
|
|
|
|
UnhookEvent("round_end", RoundEnd);
|
|
|
|
UnhookEvent("player_team", PlayerTeam, EventHookMode_Pre);
|
|
|
|
UnhookEvent("player_spawn", PlayerSpawn);
|
|
|
|
UnhookEvent("player_hurt", PlayerHurt);
|
|
|
|
UnhookEvent("player_death", PlayerDeath);
|
|
|
|
UnhookEvent("player_jump", PlayerJump);
|
2009-04-17 10:20:04 +02:00
|
|
|
UnhookEvent("weapon_fire", WeaponFire);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action:RoundStart(Handle:event, const String:name[], bool:dontBroadcast)
|
2009-04-24 05:02:19 +02:00
|
|
|
{
|
2008-10-04 22:59:11 +02:00
|
|
|
ZR_PrintToChat(0, "Round objective");
|
2009-04-18 01:44:41 +02:00
|
|
|
|
|
|
|
// Forward event to sub-modules.
|
|
|
|
RoundEndOnRoundStart();
|
2009-04-22 04:53:19 +02:00
|
|
|
InfectOnRoundStart();
|
2009-04-24 05:02:19 +02:00
|
|
|
VEffectsOnRoundStart();
|
2009-04-18 01:44:41 +02:00
|
|
|
SEffectsOnRoundStart();
|
|
|
|
AntiStickOnRoundStart();
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action:RoundFreezeEnd(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
|
|
|
RemoveObjectives();
|
|
|
|
|
2009-04-17 01:09:52 +02:00
|
|
|
// Forward events to modules.
|
2009-04-18 01:44:41 +02:00
|
|
|
RoundEndOnRoundFreezeEnd();
|
2009-04-22 04:53:19 +02:00
|
|
|
InfectOnRoundFreezeEnd();
|
2008-12-20 20:46:05 +01:00
|
|
|
ZTeleEnable();
|
|
|
|
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action:RoundEnd(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Get all required event info.
|
2009-04-18 01:44:41 +02:00
|
|
|
new reason = GetEventInt(event, "reason");
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-18 01:44:41 +02:00
|
|
|
// Forward event to modules.
|
|
|
|
RoundEndOnRoundEnd(reason);
|
2009-04-22 04:53:19 +02:00
|
|
|
InfectOnRoundEnd();
|
2008-12-20 20:46:05 +01:00
|
|
|
ZTeleReset();
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action:PlayerTeam(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Get all required event info.
|
2008-10-04 22:59:11 +02:00
|
|
|
new index = GetClientOfUserId(GetEventInt(event, "userid"));
|
|
|
|
new team = GetEventInt(event, "team");
|
|
|
|
|
2009-04-22 04:53:19 +02:00
|
|
|
// Forward event to modules.
|
|
|
|
InfectOnClientTeam(index, team);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
return Plugin_Handled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Action:PlayerSpawn(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Get all required event info.
|
2008-10-04 22:59:11 +02:00
|
|
|
new index = GetClientOfUserId(GetEventInt(event, "userid"));
|
|
|
|
|
2009-04-24 05:02:19 +02:00
|
|
|
// Call post player_spawn
|
|
|
|
CreateTimer(0.0, PlayerSpawnPost, index);
|
|
|
|
|
2009-04-11 01:56:22 +02:00
|
|
|
// Reset FOV and overlay.
|
2008-10-04 22:59:11 +02:00
|
|
|
SetPlayerFOV(index, 90);
|
|
|
|
ClientCommand(index, "r_screenoverlay \"\"");
|
|
|
|
|
2009-04-16 22:21:32 +02:00
|
|
|
// Check if client is on a team.
|
|
|
|
if (ZRIsClientOnTeam(index))
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-04-16 22:21:32 +02:00
|
|
|
// Remove night vision.
|
|
|
|
NightVisionOn(index, false);
|
|
|
|
NightVision(index, false);
|
|
|
|
|
2009-04-17 12:16:44 +02:00
|
|
|
if (g_bZombieSpawned)
|
2009-04-16 22:21:32 +02:00
|
|
|
{
|
|
|
|
if (ZRIsClientOnTeam(index, CS_TEAM_T))
|
|
|
|
{
|
|
|
|
CS_SwitchTeam(index, CS_TEAM_CT);
|
|
|
|
CS_RespawnPlayer(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetPlayerAlpha(index, 255);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
2008-11-13 17:03:28 +01:00
|
|
|
}
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-11 01:56:22 +02:00
|
|
|
// Forward event to modules.
|
|
|
|
ClassOnClientSpawn(index);
|
2009-04-22 04:53:19 +02:00
|
|
|
InfectOnClientSpawn(index);
|
2009-04-17 01:09:52 +02:00
|
|
|
SEffectsOnClientSpawn(index);
|
2009-04-22 04:53:19 +02:00
|
|
|
AccountOnClientSpawn(index);
|
2009-04-16 22:21:32 +02:00
|
|
|
SpawnProtectOnClientSpawn(index);
|
|
|
|
RespawnOnClientSpawn(index);
|
|
|
|
ZHPOnClientSpawn(index);
|
2009-04-11 01:56:22 +02:00
|
|
|
ZTeleClientSpawned(index);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
ZR_PrintToChat(index, "!zmenu reminder");
|
|
|
|
}
|
|
|
|
|
2009-04-24 05:02:19 +02:00
|
|
|
public Action:PlayerSpawnPost(Handle:timer, any:client)
|
|
|
|
{
|
|
|
|
// Forward event to modules.
|
|
|
|
SEffectsOnClientSpawnPost(client);
|
|
|
|
}
|
|
|
|
|
2008-10-04 22:59:11 +02:00
|
|
|
public Action:PlayerHurt(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Get all required event info.
|
2008-10-04 22:59:11 +02:00
|
|
|
new index = GetClientOfUserId(GetEventInt(event, "userid"));
|
|
|
|
new attacker = GetClientOfUserId(GetEventInt(event, "attacker"));
|
2009-04-15 03:24:02 +02:00
|
|
|
new hitgroup = GetEventInt(event, "hitgroup");
|
2009-04-14 22:05:20 +02:00
|
|
|
new dmg_health = GetEventInt(event, "dmg_health");
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
decl String:weapon[32];
|
|
|
|
GetEventString(event, "weapon", weapon, sizeof(weapon));
|
|
|
|
|
2009-04-11 01:56:22 +02:00
|
|
|
// Forward event to modules.
|
|
|
|
ClassAlphaUpdate(index);
|
2009-04-22 04:53:19 +02:00
|
|
|
InfectOnClientHurt(index, attacker, weapon);
|
2009-04-17 01:09:52 +02:00
|
|
|
SEffectsOnClientHurt(index);
|
2009-04-16 22:21:32 +02:00
|
|
|
KnockbackOnClientHurt(index, attacker, weapon, hitgroup, dmg_health);
|
2009-04-17 10:20:04 +02:00
|
|
|
NapalmOnClientHurt(index, weapon);
|
|
|
|
ZHPOnClientHurt(index);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action:PlayerDeath(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-11 01:56:22 +02:00
|
|
|
// Get the weapon name.
|
2009-04-16 06:06:44 +02:00
|
|
|
decl String:weapon[32];
|
2008-10-04 22:59:11 +02:00
|
|
|
GetEventString(event, "weapon", weapon, sizeof(weapon));
|
2009-04-11 01:56:22 +02:00
|
|
|
|
2009-04-22 04:53:19 +02:00
|
|
|
// If client is being infected, then stop.
|
2008-10-04 22:59:11 +02:00
|
|
|
if (StrEqual(weapon, "zombie_claws_of_death", false))
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
return;
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
2009-04-22 04:53:19 +02:00
|
|
|
|
|
|
|
// Get all required event info.
|
|
|
|
new index = GetClientOfUserId(GetEventInt(event, "userid"));
|
|
|
|
new attacker = GetClientOfUserId(GetEventInt(event, "attacker"));
|
|
|
|
|
|
|
|
// Extinguish any flames to stop burning sounds.
|
|
|
|
ExtinguishEntity(index);
|
|
|
|
|
|
|
|
// If the attacker is valid, then continue.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (ZRIsClientValid(attacker))
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// If the client is a zombie, then continue.
|
2009-04-24 05:02:19 +02:00
|
|
|
if (InfectIsClientInfected(index))
|
2008-10-04 22:59:11 +02:00
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Add kill bonus to attacker's score.
|
|
|
|
new bonus = ClassGetKillBonus(attacker);
|
|
|
|
AddPlayerScore(attacker, bonus);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
2009-04-18 01:44:41 +02:00
|
|
|
}
|
2009-04-22 04:53:19 +02:00
|
|
|
|
|
|
|
// Forward event to modules.
|
|
|
|
ClassOnClientDeath(index);
|
|
|
|
RoundEndOnClientDeath();
|
|
|
|
SEffectsOnClientDeath(index);
|
|
|
|
SpawnProtectOnClientDeath(index);
|
|
|
|
RespawnOnClientDeath(index, attacker, weapon);
|
|
|
|
ZHPOnClientDeath(index);
|
2008-10-04 22:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public Action:PlayerJump(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Get all required event info.
|
|
|
|
new client = GetClientOfUserId(GetEventInt(event, "userid"));
|
|
|
|
|
2009-04-11 01:56:22 +02:00
|
|
|
new Float:distance = ClassGetJumpDistance(client);
|
|
|
|
new Float:height = ClassGetJumpHeight(client);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2009-04-11 01:56:22 +02:00
|
|
|
JumpBoost(client, distance, height);
|
|
|
|
}
|
2009-04-17 10:20:04 +02:00
|
|
|
|
|
|
|
public Action:WeaponFire(Handle:event, const String:name[], bool:dontBroadcast)
|
|
|
|
{
|
2009-04-22 04:53:19 +02:00
|
|
|
// Get all required event info.
|
2009-04-17 10:20:04 +02:00
|
|
|
decl String:weapon[32];
|
|
|
|
GetEventString(event, "weapon", weapon, sizeof(weapon));
|
|
|
|
|
|
|
|
// Forward event to modules.
|
|
|
|
NapalmOnWeaponFire(weapon);
|
|
|
|
}
|