Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
Update sandstorm stripper (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
notkoen authored Jun 29, 2023
1 parent 21f5d4e commit ea54a73
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions stripper/ze_sandstorm_go_v1_5x3.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
;fix missing grenade explosion sound
modify:
{
match:
{
"classname" "ambient_generic"
"targetname" "Nade_Sound"
}
replace:
{
"Message" "weapons/hegrenade/explode4.wav"
}
}

;fix fire not slowing zombies
add:
{
"classname" "logic_relay"
"targetname" "Slowdown_Patch"
"spawnflags" "2"
"OnTrigger" "!activatorRunScriptCodeforeach(v,_ in {SetHealth=0}){EntFireByHandle(self,v,(self.GetHealth()-1).tostring(),0.0,null,null);}0-1"
"OnTrigger" "!activatorRunScriptCodeforeach(v,_ in {SetHealth=0}){EntFireByHandle(self,v,(self.GetHealth()+1).tostring(),0.0,null,null);}0.1-1"
}

modify:
{
match:
{
"classname" "trigger_hurt"
"targetname" "fire_tr"
}
insert:
{
"OnHurtPlayer" "Slowdown_PatchTrigger0-1"
}
}

;Fix Heal burning human for the entire of Heal's lifetime which could cause 1 hp players to die
modify:
{
Expand Down

0 comments on commit ea54a73

Please sign in to comment.