PHP Code:
#include < amxmodx >
#include < engine >
public plugin_init( ) {
register_plugin( "Disable func_ladder", "0.0.1", "Exolent" );
new iEntity;
while( ( iEntity = find_ent_by_class( -1, "func_ladder" ) ) ) {
remove_entity( iEntity );
}
}
i found this and work xD
__________________