-
Notifications
You must be signed in to change notification settings - Fork 21
/
zp_weapon_molotov.sp
171 lines (151 loc) · 4.55 KB
/
zp_weapon_molotov.sp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/**
* ============================================================================
*
* Zombie Plague
*
*
* Copyright (C) 2015-2023 qubka (Nikita Ushakov)
*
* 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/>.
*
* ============================================================================
**/
#include <sourcemod>
#include <sdktools>
#include <sdkhooks>
#include <zombieplague>
#pragma newdecls required
#pragma semicolon 1
/**
* @brief Record plugin info.
**/
public Plugin myinfo =
{
name = "[ZP] Weapon: Molotov",
author = "qubka (Nikita Ushakov)",
description = "Addon of custom weapon",
version = "2.0",
url = "https://forums.alliedmods.net/showthread.php?t=290657"
}
// Item index
int gWeapon; int gDublicat;
/**
* @brief Called after a library is added that the current plugin references optionally.
* A library is either a plugin name or extension name, as exposed via its include file.
**/
public void OnLibraryAdded(const char[] sLibrary)
{
if (!strcmp(sLibrary, "zombieplague", false))
{
if (ZP_IsMapLoaded())
{
ZP_OnEngineExecute();
}
}
}
/**
* @brief Called after a zombie core is loaded.
**/
public void ZP_OnEngineExecute()
{
gWeapon = ZP_GetWeaponNameID("molotov");
gDublicat = ZP_GetWeaponNameID("inc grenade");
if (gWeapon == -1 || gDublicat == -1) SetFailState("[ZP] Custom weapon ID from name : \"molotov\" or \"inc grenade\" wasn't find");
}
/**
* @brief Called before show a weapon in the weapons menu.
*
* @param client The client index.
* @param weaponID The weapon index.
*
* @return Plugin_Handled to disactivate showing and Plugin_Stop to disabled showing. Anything else
* (like Plugin_Continue) to allow showing and selecting.
**/
public Action ZP_OnClientValidateWeapon(int client, int weaponID)
{
if (weaponID == gWeapon)
{
if (ZP_IsPlayerHasWeapon(client, gDublicat) != -1)
{
return Plugin_Handled;
}
}
else if (weaponID == gDublicat)
{
if (ZP_IsPlayerHasWeapon(client, gWeapon) != -1)
{
return Plugin_Handled;
}
}
return Plugin_Continue;
}
/**
* @brief Called when a client became a zombie/human.
*
* @param client The client index.
* @param attacker The attacker index.
**/
public void ZP_OnClientUpdated(int client, int attacker)
{
if (ZP_IsPlayerHuman(client))
{
UTIL_ExtinguishEntity(client);
}
}
/**
* @brief Called before a client take a fake damage.
*
* @param client The client index.
* @param attacker The attacker index. (Not validated!)
* @param inflicter The inflicter index. (Not validated!)
* @param flDamage The amount of damage inflicted.
* @param iBits The ditfield of damage types.
* @param weapon The weapon index or -1 for unspecified.
*
* @note To block damage reset the damage to zero.
**/
public void ZP_OnClientValidateDamage(int client, int &attacker, int &inflictor, float &flDamage, int &iBits, int &weapon)
{
if (iBits & DMG_BURN || iBits & DMG_DIRECT)
{
if (ZP_IsPlayerZombie(client))
{
if (GetEntProp(client, Prop_Data, "m_nWaterLevel") > WLEVEL_CSGO_FEET || GetEntityMoveType(client) == MOVETYPE_NONE)
{
UTIL_ExtinguishEntity(client);
}
else
{
float flSlowdown; float flDuration; int iD = GetEntProp(inflictor, Prop_Data, m_iCustomID);
if (iD == gDublicat)
{
flDamage *= ZP_GetWeaponDamage(gDublicat);
flSlowdown = ZP_GetWeaponKnockBack(gDublicat);
flDuration = ZP_GetWeaponModelHeat(gDublicat);
}
else if (iD == gWeapon)
{
flDamage *= ZP_GetWeaponDamage(gWeapon);
flSlowdown = ZP_GetWeaponKnockBack(gWeapon);
flDuration = ZP_GetWeaponModelHeat(gWeapon);
}
else return;
if (iBits & DMG_BURN) UTIL_IgniteEntity(client, flDuration);
SetEntPropFloat(client, Prop_Send, "m_flStamina", min(flSlowdown, 100.0));
return;
}
}
flDamage *= 0.0;
}
}