From 70b8683aa7f8b9f2f62582cbfaa48046e43f0926 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 9 Jan 2021 22:41:21 -0600 Subject: [PATCH] Add wep dmg event types --- scripts/shared/const.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index aeeb3a8f..d7499aec 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -20,4 +20,11 @@ const LOG_INFO = 1; const LOG_WARN = 2; const LOG_ERROR = 4; const LOG_VERBOSE = 8; -const LOG_DEBUG = 16; \ No newline at end of file +const LOG_DEBUG = 16; + +// Weapon Damage Event Types +const AG_WEAPON_DAMAGE_EVENT_NONE = 0; +const AG_WEAPON_DAMAGE_EVENT_NORMAL = 1; +const AG_WEAPON_DAMAGE_EVENT_TAZER = 2; +const AG_WEAPON_DAMAGE_EVENT_EXTINGUISH = 3; +const AG_WEAPON_DAMAGE_EVENT_MACE = 4; \ No newline at end of file