-
Notifications
You must be signed in to change notification settings - Fork 21
/
zp_weapon_janus11.sp
623 lines (518 loc) · 18.2 KB
/
zp_weapon_janus11.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
/**
* ============================================================================
*
* 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: Janus XI",
author = "qubka (Nikita Ushakov)",
description = "Addon of custom weapon",
version = "2.0",
url = "https://forums.alliedmods.net/showthread.php?t=290657"
}
/**
* @section Information about the weapon.
**/
#define WEAPON_IDLE_TIME 1.66
#define WEAPON_SWITCH_TIME 1.66
#define WEAPON_SWITCH2_TIME 1.66
#define WEAPON_ATTACK_TIME 0.3
#define WEAPON_ATTACK2_TIME 1.0
#define WEAPON_INSERT_TIME 0.43
#define WEAPON_INSERT_START_TIME 0.5
#define WEAPON_INSERT_END_TIME 0.86
/**
* @endsection
**/
// Animation sequences
enum
{
ANIM_IDLE,
ANIM_SHOOT1,
ANIM_START_RELOAD,
ANIM_SHOOT2,
ANIM_AFTER_RELOAD,
ANIM_DRAW,
ANIM_IDLE_SIGNAL,
ANIM_SHOOT_SIGNAL_1,
ANIM_START_RELOAD_SIGNAL,
ANIM_INSERT1,
ANIM_AFTER_RELOAD_SIGNAL,
ANIM_DRAW_SIGNAL,
ANIM_IDLE2,
ANIM_SHOOT2_1,
ANIM_DRAW2,
ANIM_CHANGE,
ANIM_CHANGE2,
ANIM_INSERT2,
ANIM_SHOOT_SIGNAL_2,
ANIM_INSERT_SIGNAL_1,
ANIM_INSERT_SIGNAL_2,
ANIM_SHOOT2_2
};
// Weapon states
enum
{
STATE_NORMAL,
STATE_SIGNAL,
STATE_ACTIVE
};
// Reload states
enum
{
RELOAD_START,
RELOAD_INSERT,
RELOAD_END
};
// Weapon index
int gWeapon;
// Sound index
int gSound;
// Cvars
ConVar hCvarJanusSignalCounter;
ConVar hCvarJanusActiveCounter;
ConVar hCvarJanusActiveMultiplier;
/**
* @brief Called when the plugin is fully initialized and all known external references are resolved.
* This is only called once in the lifetime of the plugin, and is paired with OnPluginEnd().
**/
public void OnPluginStart()
{
hCvarJanusSignalCounter = CreateConVar("zp_weapon_janus11_signal_counter", "10", "Amount of shots to activate second mode", 0, true, 0.0);
hCvarJanusActiveCounter = CreateConVar("zp_weapon_janus11_active_counter", "10", "Amount of shots in the second mode", 0, true, 0.0);
hCvarJanusActiveMultiplier = CreateConVar("zp_weapon_janus11_active_multiplier", "2.0", "Multiplier on the active state", 0, true, 0.0);
AutoExecConfig(true, "zp_weapon_janus11", "sourcemod/zombieplague");
}
/**
* @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))
{
LoadTranslations("janus.phrases");
if (ZP_IsMapLoaded())
{
ZP_OnEngineExecute();
}
}
}
/**
* @brief Called after a zombie core is loaded.
**/
public void ZP_OnEngineExecute()
{
gWeapon = ZP_GetWeaponNameID("janus11");
gSound = ZP_GetSoundKeyID("janusxi_shoot_sounds");
if (gSound == -1) SetFailState("[ZP] Custom sound key ID from name : \"janusxi_shoot_sounds\" wasn't find");
}
//*********************************************************************
//* Don't modify the code below this line unless *
//* you know _exactly_ what you are doing!!! *
//*********************************************************************
void Weapon_OnThink(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
SetEntPropFloat(client, Prop_Send, "m_flNextAttack", MAX_FLOAT);
SetEntPropFloat(weapon, Prop_Send, "m_flNextPrimaryAttack", MAX_FLOAT);
SetEntPropFloat(weapon, Prop_Send, "m_flNextSecondaryAttack", MAX_FLOAT);
static float flApplyModeTime;
if ((flApplyModeTime = GetEntPropFloat(weapon, Prop_Send, "m_flPostponeFireReadyTime")) && flApplyModeTime <= GetGameTime())
{
SetEntPropFloat(weapon, Prop_Send, "m_flPostponeFireReadyTime", 0.0);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_ACTIVE);
}
if (iClip == ZP_GetWeaponClip(gWeapon) || iAmmo <= 0)
{
if (iReloadMode == RELOAD_END)
{
Weapon_OnReloadFinish(client, weapon, iClip, iAmmo, iCounter, iStateMode, iReloadMode, flCurrentTime);
return;
}
}
switch (iReloadMode)
{
case RELOAD_INSERT :
{
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
ZP_SetViewAnimation(client, !iStateMode ? { ANIM_INSERT1, ANIM_INSERT2 } : { ANIM_INSERT_SIGNAL_1, ANIM_INSERT_SIGNAL_2 });
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_RELOAD_LOOP);
flCurrentTime += WEAPON_INSERT_TIME;
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoType", RELOAD_END);
}
case RELOAD_END :
{
SetEntProp(weapon, Prop_Send, "m_iClip1", iClip + 1);
SetEntProp(weapon, Prop_Send, "m_iPrimaryReserveAmmoCount", iAmmo - 1);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoType", RELOAD_INSERT);
}
}
}
void Weapon_OnHolster(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
SetEntPropFloat(weapon, Prop_Send, "m_flPostponeFireReadyTime", 0.0);
}
void Weapon_OnDeploy(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
ZP_SetWeaponAnimation(client, (iStateMode == STATE_ACTIVE) ? ANIM_DRAW2 : (iStateMode == STATE_SIGNAL) ? ANIM_DRAW_SIGNAL : ANIM_DRAW);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + ZP_GetWeaponDeploy(gWeapon));
SetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex", 0.0);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoType", RELOAD_START);
SetEntProp(client, Prop_Send, "m_iShotsFired", 0);
}
void Weapon_OnIdle(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
if (iReloadMode == RELOAD_START)
{
if (iClip <= 0)
{
if (iAmmo)
{
Weapon_OnReload(client, weapon, iClip, iAmmo, iCounter, iStateMode, iReloadMode, flCurrentTime);
return; /// Execute fake reload
}
}
}
if (GetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle") > flCurrentTime)
{
return;
}
ZP_SetWeaponAnimation(client, (iStateMode == STATE_ACTIVE) ? ANIM_IDLE2 : (iStateMode == STATE_SIGNAL) ? ANIM_IDLE_SIGNAL : ANIM_IDLE);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime + WEAPON_IDLE_TIME);
}
void Weapon_OnPrimaryAttack(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
if (iReloadMode > RELOAD_START)
{
Weapon_OnReloadFinish(client, weapon, iClip, iAmmo, iCounter, iStateMode, iReloadMode, flCurrentTime);
return;
}
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
if (iStateMode == STATE_ACTIVE)
{
if (iCounter > hCvarJanusActiveCounter.IntValue)
{
Weapon_OnFinish(client, weapon, iClip, iAmmo, iCounter, iStateMode, iReloadMode, flCurrentTime);
return;
}
ZP_SetViewAnimation(client, { ANIM_SHOOT2_1, ANIM_SHOOT2_2 });
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + (ZP_GetWeaponShoot(gWeapon) - WEAPON_ATTACK_TIME));
ZP_EmitSoundToAll(gSound, 2, client, SNDCHAN_WEAPON);
}
else
{
if (iClip <= 0)
{
EmitSoundToClient(client, SOUND_CLIP_EMPTY, SOUND_FROM_PLAYER, SNDCHAN_ITEM);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + 0.2);
return;
}
iClip -= 1; SetEntProp(weapon, Prop_Send, "m_iClip1", iClip);
if (iCounter > hCvarJanusSignalCounter.IntValue)
{
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_SIGNAL);
iCounter = -1;
ZP_EmitSoundToAll(gSound, 3, client, SNDCHAN_VOICE);
SetGlobalTransTarget(client);
PrintHintText(client, "%t", "janus activated");
EmitSoundToClient(client, SOUND_INFO_TIPS, SOUND_FROM_PLAYER, SNDCHAN_ITEM);
}
ZP_SetViewAnimation(client, (iStateMode == STATE_SIGNAL) ? { ANIM_SHOOT_SIGNAL_1, ANIM_SHOOT_SIGNAL_2 } : { ANIM_SHOOT1, ANIM_SHOOT2 });
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime + ZP_GetWeaponShoot(gWeapon));
ZP_EmitSoundToAll(gSound, 1, client, SNDCHAN_WEAPON);
}
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_FIRE_GUN_PRIMARY);
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime + WEAPON_ATTACK2_TIME);
SetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex", GetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex") + 1.0);
SetEntProp(client, Prop_Send, "m_iShotsFired", GetEntProp(client, Prop_Send, "m_iShotsFired") + 1);
SetEntProp(weapon, Prop_Data, "m_iClip2", iCounter + 1);
static char sName[NORMAL_LINE_LENGTH];
int view = ZP_GetClientViewModel(client, true);
ZP_GetWeaponModelMuzzle(gWeapon, sName, sizeof(sName));
UTIL_CreateParticle(view, _, _, "1", sName, 0.1);
ZP_GetWeaponModelShell(gWeapon, sName, sizeof(sName));
UTIL_CreateParticle(view, _, _, "2", sName, 0.1);
static float vVelocity[3]; int iFlags = GetEntityFlags(client);
float flSpread = 0.1; float flInaccuracy = 0.03;
float vKickback[] = { /*upBase = */1.5, /* lateralBase = */1.25, /* upMod = */0.15, /* lateralMod = */0.05, /* upMax = */4.5, /* lateralMax = */3.5, /* directionChange = */7.0 };
GetEntPropVector(client, Prop_Data, "m_vecVelocity", vVelocity);
if (GetVectorLength(vVelocity, true) <= 0.0)
{
}
else if (!(iFlags & FL_ONGROUND))
{
for (int i = 0; i < sizeof(vKickback); i++) vKickback[i] *= 1.3;
flInaccuracy = 0.02;
flSpread = 0.05;
}
else if (iFlags & FL_DUCKING)
{
for (int i = 0; i < sizeof(vKickback); i++) vKickback[i] *= 0.75;
flInaccuracy = 0.01;
}
else
{
for (int i = 0; i < sizeof(vKickback); i++) vKickback[i] *= 1.15;
}
ZP_CreateWeaponKickBack(client, vKickback[0], vKickback[1], vKickback[2], vKickback[3], vKickback[4], vKickback[5], RoundFloat(vKickback[6]));
Weapon_OnCreateBullet(client, weapon, 0, GetRandomInt(0, 1000), flSpread, flInaccuracy);
}
void Weapon_OnSecondaryAttack(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
if (iStateMode == STATE_SIGNAL)
{
if (iReloadMode > RELOAD_START)
{
Weapon_OnReloadFinish(client, weapon, iClip, iAmmo, iCounter, iStateMode, iReloadMode, flCurrentTime);
return;
}
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
ZP_SetWeaponAnimation(client, ANIM_CHANGE);
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_FIRE_GUN_SECONDARY);
SetEntProp(weapon, Prop_Data, "m_iClip2", 0);
flCurrentTime += WEAPON_SWITCH_TIME;
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
flCurrentTime -= 0.5;
SetEntPropFloat(weapon, Prop_Send, "m_flPostponeFireReadyTime", flCurrentTime);
}
}
void Weapon_OnReload(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
if (iStateMode == STATE_ACTIVE)
{
return;
}
if (iAmmo <= 0)
{
return;
}
if (iClip >= ZP_GetWeaponClip(gWeapon))
{
return;
}
if (GetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime") > flCurrentTime)
{
return;
}
if (iReloadMode == RELOAD_START)
{
ZP_SetWeaponAnimation(client, !iStateMode ? ANIM_START_RELOAD : ANIM_START_RELOAD_SIGNAL);
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_RELOAD_START);
flCurrentTime += WEAPON_INSERT_END_TIME;
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoType", RELOAD_INSERT);
}
}
void Weapon_OnReloadFinish(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
ZP_SetWeaponAnimation(client, !iStateMode ? ANIM_AFTER_RELOAD : ANIM_AFTER_RELOAD_SIGNAL);
ZP_SetPlayerAnimation(client, PLAYERANIMEVENT_RELOAD_END);
flCurrentTime += WEAPON_INSERT_START_TIME;
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex", 0.0);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoType", RELOAD_START);
SetEntProp(client, Prop_Send, "m_iShotsFired", 0);
}
void Weapon_OnFinish(int client, int weapon, int iClip, int iAmmo, int iCounter, int iStateMode, int iReloadMode, float flCurrentTime)
{
ZP_SetWeaponAnimation(client, ANIM_CHANGE2);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_NORMAL);
SetEntProp(weapon, Prop_Data, "m_iClip2", 0);
flCurrentTime += WEAPON_SWITCH2_TIME;
SetEntPropFloat(weapon, Prop_Send, "m_flTimeWeaponIdle", flCurrentTime);
SetEntPropFloat(weapon, Prop_Send, "m_fLastShotTime", flCurrentTime);
}
void Weapon_OnCreateBullet(int client, int weapon, int iMode, int iSeed, float flSpread, float flInaccuracy)
{
static float vPosition[3]; static float vAngle[3];
GetClientEyePosition(client, vPosition);
GetClientEyeAngles(client, vAngle);
ZP_FireBullets(client, weapon, vPosition, vAngle, iMode, iSeed, flInaccuracy, flSpread, 0.0, 0, GetEntPropFloat(weapon, Prop_Send, "m_flRecoilIndex"));
}
//**********************************************
//* Item (weapon) hooks. *
//**********************************************
#define _call.%0(%1,%2) \
\
Weapon_On%0 \
( \
%1, \
%2, \
\
GetEntProp(%2, Prop_Send, "m_iClip1"), \
\
GetEntProp(%2, Prop_Send, "m_iPrimaryReserveAmmoCount"), \
\
GetEntProp(%2, Prop_Data, "m_iClip2"), \
\
GetEntProp(%2, Prop_Data, "m_iSecondaryAmmoCount"), \
\
GetEntProp(%2, Prop_Data, "m_iSecondaryAmmoType"), \
\
GetGameTime() \
)
/**
* @brief Called after a custom weapon is created.
*
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponCreated(int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
SetEntProp(weapon, Prop_Data, "m_iClip2", 0);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount", STATE_NORMAL);
SetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoType", RELOAD_START);
SetEntPropFloat(weapon, Prop_Send, "m_flPostponeFireReadyTime", 0.0);
}
}
/**
* @brief Called on bullet of a weapon.
*
* @param client The client index.
* @param vBullet The position of a bullet hit.
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponBullet(int client, const float vBullet[3], int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
ZP_CreateWeaponTracer(client, weapon, "1", "muzzle_flash", "weapon_tracers_shot", vBullet, ZP_GetWeaponShoot(gWeapon));
}
}
/**
* @brief Called on deploy of a weapon.
*
* @param client The client index.
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponDeploy(int client, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
_call.Deploy(client, weapon);
}
}
/**
* @brief Called on holster of a weapon.
*
* @param client The client index.
* @param weapon The weapon index.
* @param weaponID The weapon id.
**/
public void ZP_OnWeaponHolster(int client, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
_call.Holster(client, weapon);
}
}
/**
* @brief Called on each frame of a weapon holding.
*
* @param client The client index.
* @param iButtons The buttons buffer.
* @param iLastButtons The last buttons buffer.
* @param weapon The weapon index.
* @param weaponID The weapon id.
*
* @return Plugin_Continue to allow buttons. Anything else
* (like Plugin_Changed) to change buttons.
**/
public Action ZP_OnWeaponRunCmd(int client, int &iButtons, int iLastButtons, int weapon, int weaponID)
{
if (weaponID == gWeapon)
{
_call.Think(client, weapon);
if (iButtons & IN_RELOAD)
{
_call.Reload(client, weapon);
iButtons &= (~IN_RELOAD); //! Bugfix
return Plugin_Changed;
}
if (iButtons & IN_ATTACK)
{
_call.PrimaryAttack(client, weapon);
iButtons &= (~IN_ATTACK); //! Bugfix
return Plugin_Changed;
}
if (iButtons & IN_ATTACK2)
{
_call.SecondaryAttack(client, weapon);
iButtons &= (~IN_ATTACK2); //! Bugfix
return Plugin_Changed;
}
_call.Idle(client, weapon);
}
return Plugin_Continue;
}
/**
* @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_NEVERGIB)
{
if (IsValidEdict(weapon))
{
if (GetEntProp(weapon, Prop_Data, m_iCustomID) == gWeapon)
{
if (GetEntProp(weapon, Prop_Data, "m_iSecondaryAmmoCount")) flDamage *= hCvarJanusActiveMultiplier.FloatValue;
}
}
}
}