AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugin/Gameplay Ideas and Requests (https://forums.alliedmods.net/forumdisplay.php?f=60)
-   -   Most simple way to build an extra ladder (without recompile) (https://forums.alliedmods.net/showthread.php?t=340638)

CosmicD 11-30-2022 04:57

Most simple way to build an extra ladder (without recompile)
 
Hello,

There's a most annoying location where I want to build a ladder that survivors can climb onto. Right now there's a pipe with an infected-only ladder.

Is it possible to turn this ladder brush (not the model) into a regular ladder everyone can climb on without having to recompile the map ?

Marttt 11-30-2022 05:48

Re: Most simple way to build an extra ladder (without recompile)
 
Usually you use stripper to change a func_simpleladder to everyone

Something like

PHP Code:

modify:
{
    
match:
    {
        
"classname" "func_simpleladder"
    
}
    
replace:
    {
        
"team" "0"
    
}



finishlast 11-30-2022 11:48

Re: Most simple way to build an extra ladder (without recompile)
 
Martts example would alter all ladders, you might want to do that on the specific one.

If you need info about the existing ladder you can use stripper dump or the info function of this plugin for ladder creation.

If you want to create your own ladders you can use this:
https://forums.alliedmods.net/showthread.php?t=339877


All times are GMT -4. The time now is 11:41.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.