95 lines
803 B
INI
95 lines
803 B
INI
|
|
; Fix controllable elevators
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "elevator_1"
|
|
}
|
|
replace:
|
|
{
|
|
"spawnflags" "530"
|
|
}
|
|
}
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "elevator_2"
|
|
}
|
|
replace:
|
|
{
|
|
"spawnflags" "530"
|
|
}
|
|
}
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "Platform 1"
|
|
}
|
|
replace:
|
|
{
|
|
"spawnflags" "530"
|
|
}
|
|
}
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "Platform 3"
|
|
}
|
|
replace:
|
|
{
|
|
"spawnflags" "530"
|
|
}
|
|
}
|
|
|
|
; No AFK killer
|
|
|
|
filter:
|
|
{
|
|
"targetname" "Afk killer"
|
|
}
|
|
|
|
|
|
|
|
;; _
|
|
|
|
;; increase nuke damage
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "Big explosion"
|
|
"classname" "trigger_hurt"
|
|
}
|
|
replace:
|
|
{
|
|
"damage" "100000"
|
|
}
|
|
}
|
|
|
|
;; prevent early debris movement
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
""health" "10000"
|
|
"damagetoenablemotion" "9999"
|
|
"classname" "func_physbox"
|
|
}
|
|
replace:
|
|
{
|
|
"damagetoenablemotion" "9850"
|
|
}
|
|
}
|
|
|
|
|