View Single Post
Marttt
Veteran Member
Join Date: Jan 2019
Location: Brazil
Old 10-04-2021 , 14:17   Re: (L4D2) Stripper- How can I place a ladder?
Reply With Quote #4

Yes, the snippet below makes all ladders "climbable" by survivors.
In your specific case you have to find one and maybe filter by hammerid.
Usually, people add a prop_dynamic in the wall to make it more "realistic"

example:

PHP Code:
/*** Add more survivor ladders ***/
modify:
{
    
match:
    {
        
"classname" "func_simpleladder"
    
}
    
replace:
    {
        
"team" "0"
    
}
}

add:
/*** ladder 7033 ***/
{
"classname" "prop_dynamic"
//"classname" "prop_physics_override"
//"spawnflags" "8"
"origin" "1220 397 224"
"angles" "0 180 0"
"model" "models/props_unique/metalladderbarge.mdl"
"disableshadows" "1"

This example is a test I did on Tank Challenge map, which is nice map to put in practise these things.
__________________

Last edited by Marttt; 10-04-2021 at 14:18.
Marttt is offline