From 05f58e3e0eb502f87b7157ca796945685de07813 Mon Sep 17 00:00:00 2001 From: Lufou Date: Sat, 2 Sep 2023 18:25:41 +0200 Subject: [PATCH 1/3] Added FRMG0 to DamageType enum --- NwPluginAPI/Enums/DamageType.cs | 75 +++++++++++++++++---------------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/NwPluginAPI/Enums/DamageType.cs b/NwPluginAPI/Enums/DamageType.cs index 2224758..12d0636 100644 --- a/NwPluginAPI/Enums/DamageType.cs +++ b/NwPluginAPI/Enums/DamageType.cs @@ -23,42 +23,43 @@ public enum DamageType : int Revolver = 9, AK = 10, Shotgun = 11, - MolecularDisruptor = 12, - Com45 = 13, - Jailbird = 14, - Explosion = 15, - GrenadeExplosion = 16, - Recontainment = 17, - Recontain079 = 18, - Universal = 19, - Asphyxiated = 20, - Bleeding = 21, - PocketDecay = 22, - Decontamination = 23, - Hemorrhage = 24, - Poisoned = 25, - SeveredHands = 26, - Checkpoint = 27, - FriendlyFireDetector = 28, - Hypothermia = 29, - CardiacArrest = 30, - Falldown = 31, - Tesla = 32, - Scp207 = 33, - Scp173 = 34, - Scp106 = 35, - Scp049 = 36, - Scp096GateKill = 37, - Scp096SlapLeft = 38, - Scp096SlapRight = 39, - Scp096Charge = 40, - Scp0492 = 41, - Scp939Claw = 42, - Scp939LungeTarget = 43, - Scp939LungeSecondary = 44, - Scp018 = 45, - Warhead = 46, - PlayerLeft = 47, - ForcedDeath = 48, + FRMG0 = 12, + MolecularDisruptor = 13, + Com45 = 14, + Jailbird = 15, + Explosion = 16, + GrenadeExplosion = 17, + Recontainment = 18, + Recontain079 = 19, + Universal = 20, + Asphyxiated = 21, + Bleeding = 22, + PocketDecay = 23, + Decontamination = 24, + Hemorrhage = 25, + Poisoned = 26, + SeveredHands = 27, + Checkpoint = 28, + FriendlyFireDetector = 29, + Hypothermia = 30, + CardiacArrest = 31, + Falldown = 32, + Tesla = 33, + Scp207 = 34, + Scp173 = 35, + Scp106 = 36, + Scp049 = 37, + Scp096GateKill = 38, + Scp096SlapLeft = 39, + Scp096SlapRight = 40, + Scp096Charge = 41, + Scp0492 = 42, + Scp939Claw = 43, + Scp939LungeTarget = 44, + Scp939LungeSecondary = 45, + Scp018 = 46, + Warhead = 47, + PlayerLeft = 48, + ForcedDeath = 49, } } From f4b00a311f17d859d54c7839429aac23c5c53d3a Mon Sep 17 00:00:00 2001 From: Lufou Date: Sat, 2 Sep 2023 18:44:18 +0200 Subject: [PATCH 2/3] Added A7 weapon to DamageType enum --- NwPluginAPI/Enums/DamageType.cs | 75 +++++++++++++++++---------------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/NwPluginAPI/Enums/DamageType.cs b/NwPluginAPI/Enums/DamageType.cs index 12d0636..0a52cff 100644 --- a/NwPluginAPI/Enums/DamageType.cs +++ b/NwPluginAPI/Enums/DamageType.cs @@ -24,42 +24,43 @@ public enum DamageType : int AK = 10, Shotgun = 11, FRMG0 = 12, - MolecularDisruptor = 13, - Com45 = 14, - Jailbird = 15, - Explosion = 16, - GrenadeExplosion = 17, - Recontainment = 18, - Recontain079 = 19, - Universal = 20, - Asphyxiated = 21, - Bleeding = 22, - PocketDecay = 23, - Decontamination = 24, - Hemorrhage = 25, - Poisoned = 26, - SeveredHands = 27, - Checkpoint = 28, - FriendlyFireDetector = 29, - Hypothermia = 30, - CardiacArrest = 31, - Falldown = 32, - Tesla = 33, - Scp207 = 34, - Scp173 = 35, - Scp106 = 36, - Scp049 = 37, - Scp096GateKill = 38, - Scp096SlapLeft = 39, - Scp096SlapRight = 40, - Scp096Charge = 41, - Scp0492 = 42, - Scp939Claw = 43, - Scp939LungeTarget = 44, - Scp939LungeSecondary = 45, - Scp018 = 46, - Warhead = 47, - PlayerLeft = 48, - ForcedDeath = 49, + A7 = 13, + MolecularDisruptor = 14, + Com45 = 15, + Jailbird = 16, + Explosion = 17, + GrenadeExplosion = 18, + Recontainment = 19, + Recontain079 = 20, + Universal = 21, + Asphyxiated = 22, + Bleeding = 23, + PocketDecay = 24, + Decontamination = 25, + Hemorrhage = 26, + Poisoned = 27, + SeveredHands = 28, + Checkpoint = 29, + FriendlyFireDetector = 30, + Hypothermia = 31, + CardiacArrest = 32, + Falldown = 33, + Tesla = 34, + Scp207 = 35, + Scp173 = 36, + Scp106 = 37, + Scp049 = 38, + Scp096GateKill = 39, + Scp096SlapLeft = 40, + Scp096SlapRight = 41, + Scp096Charge = 42, + Scp0492 = 43, + Scp939Claw = 44, + Scp939LungeTarget = 45, + Scp939LungeSecondary = 46, + Scp018 = 47, + Warhead = 48, + PlayerLeft = 49, + ForcedDeath = 50, } } From c91d12d12632bdfac0b4df5f4ea00c4e6b5e6555 Mon Sep 17 00:00:00 2001 From: Lufou Date: Sat, 2 Sep 2023 19:16:06 +0200 Subject: [PATCH 3/3] Updated previous commits Changed order --- NwPluginAPI/Enums/DamageType.cs | 78 ++++++++++++++++----------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/NwPluginAPI/Enums/DamageType.cs b/NwPluginAPI/Enums/DamageType.cs index 0a52cff..8f3d05d 100644 --- a/NwPluginAPI/Enums/DamageType.cs +++ b/NwPluginAPI/Enums/DamageType.cs @@ -23,44 +23,44 @@ public enum DamageType : int Revolver = 9, AK = 10, Shotgun = 11, - FRMG0 = 12, - A7 = 13, - MolecularDisruptor = 14, - Com45 = 15, - Jailbird = 16, - Explosion = 17, - GrenadeExplosion = 18, - Recontainment = 19, - Recontain079 = 20, - Universal = 21, - Asphyxiated = 22, - Bleeding = 23, - PocketDecay = 24, - Decontamination = 25, - Hemorrhage = 26, - Poisoned = 27, - SeveredHands = 28, - Checkpoint = 29, - FriendlyFireDetector = 30, - Hypothermia = 31, - CardiacArrest = 32, - Falldown = 33, - Tesla = 34, - Scp207 = 35, - Scp173 = 36, - Scp106 = 37, - Scp049 = 38, - Scp096GateKill = 39, - Scp096SlapLeft = 40, - Scp096SlapRight = 41, - Scp096Charge = 42, - Scp0492 = 43, - Scp939Claw = 44, - Scp939LungeTarget = 45, - Scp939LungeSecondary = 46, - Scp018 = 47, - Warhead = 48, - PlayerLeft = 49, - ForcedDeath = 50, + MolecularDisruptor = 12, + Com45 = 13, + Jailbird = 14, + Explosion = 15, + GrenadeExplosion = 16, + Recontainment = 17, + Recontain079 = 18, + Universal = 19, + Asphyxiated = 20, + Bleeding = 21, + PocketDecay = 22, + Decontamination = 23, + Hemorrhage = 24, + Poisoned = 25, + SeveredHands = 26, + Checkpoint = 27, + FriendlyFireDetector = 28, + Hypothermia = 29, + CardiacArrest = 30, + Falldown = 31, + Tesla = 32, + Scp207 = 33, + Scp173 = 34, + Scp106 = 35, + Scp049 = 36, + Scp096GateKill = 37, + Scp096SlapLeft = 38, + Scp096SlapRight = 39, + Scp096Charge = 40, + Scp0492 = 41, + Scp939Claw = 42, + Scp939LungeTarget = 43, + Scp939LungeSecondary = 44, + Scp018 = 45, + Warhead = 46, + PlayerLeft = 47, + ForcedDeath = 48, + FRMG0 = 49, + A7 = 50, } }