78 lines
1.1 KiB
INI
78 lines
1.1 KiB
INI
;--------------------------------------------------------------------
|
|
;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/
|
|
;--------------------------------------------------------------------
|
|
;FIX ELEVATOR BLOCK
|
|
;-------------------
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "lift_underground"
|
|
"classname" "func_movelinear"
|
|
}
|
|
replace:
|
|
{
|
|
"blockdamage" "99999"
|
|
}
|
|
}
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "underground_lift"
|
|
"classname" "func_movelinear"
|
|
}
|
|
replace:
|
|
{
|
|
"blockdamage" "99999"
|
|
}
|
|
}
|
|
|
|
|
|
;; _
|
|
|
|
;; fix boat softlock
|
|
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "lock_button1"
|
|
"classname" "func_button"
|
|
}
|
|
delete:
|
|
{
|
|
"OnPressed" "control2_sprite_green,Color,0 255 0,0,1"
|
|
"OnPressed" "lock_button3,Unlock,,18,1"
|
|
}
|
|
}
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "boat01path8"
|
|
"classname" "path_track"
|
|
}
|
|
insert:
|
|
{
|
|
"OnPass" "lock_button3,Lock,,0,1"
|
|
}
|
|
}
|
|
modify:
|
|
{
|
|
match:
|
|
{
|
|
"targetname" "lock_door1"
|
|
"classname" "func_door"
|
|
}
|
|
insert:
|
|
{
|
|
"OnFullyClosed" "control2_sprite_green,Color,0 255 0,0,1"
|
|
"OnFullyClosed" "lock_button3,Unlock,,0,1"
|
|
}
|
|
}
|
|
|
|
|