diff --git a/addons/sourcemod/configs/TF2Classic-CritVsCond.cfg b/addons/sourcemod/configs/TF2Classic-CritVsCond.cfg deleted file mode 100644 index be30514..0000000 --- a/addons/sourcemod/configs/TF2Classic-CritVsCond.cfg +++ /dev/null @@ -1,15 +0,0 @@ - -"Weapons" -{ - "" - { - "cond" "" - "minicrit" "" - } - "" - { - "cond" "" - "minicrit" "" - "selfcond" "" - } -} \ No newline at end of file diff --git a/addons/sourcemod/configs/TF2Classic-DamageConditions.cfg b/addons/sourcemod/configs/TF2Classic-DamageConditions.cfg new file mode 100644 index 0000000..837e1f8 --- /dev/null +++ b/addons/sourcemod/configs/TF2Classic-DamageConditions.cfg @@ -0,0 +1,23 @@ +"Weapons" +{ + // revolver that deals mini-crits to disguised spies and applies marked-for-death to yourself + "24" // spy stock revolver + { + "mode" "victim" + "crittype" "none" + "cond" "3" // TF_COND_DISGUISED + "gib" "always" + + "addcond" + { + "cond" "30" // TF_COND_MARKEDFORDEATH + "duration" "5.0" + } + + "addcond_self" + { + "cond" "30" // TF_COND_MARKEDFORDEATH + "duration" "5.0" + } + } +}