4ªU‚txt addoninfoñM4ŒÿÈÿÿnutscripts/vscriptsphysunblockerœóÃÒÿÈ¥ÿÿdirector_base_addonìLh}ÿm!ÿÿ"AddonInfo" { addonSteamAppID 550 addontitle "no team walls" addonversion 1 addonauthor "l0st" addonDescription "removes the survivor/infected specific invisible walls" addonContent_Script 1 } ::PhysUnblocker <- { function RemoveEverything() { for ( local physblocker = null; physblocker = Entities.FindByClassname( physblocker, "env_physics_blocker" ); ) { if ( !physblocker || !physblocker.IsValid() ) continue physblocker.Kill() } for ( local physblocker = null; physblocker = Entities.FindByClassname( physblocker, "env_player_blocker" ); ) { if ( !physblocker || !physblocker.IsValid() ) continue physblocker.Kill() } } function OnGameEvent_round_start_post_nav( opts ) { RemoveEverything() } function OnGameEvent_round_start( opts ) { RemoveEverything() } function OnGameEvent_player_connect_full( opts ) { RemoveEverything() } } // tls aint a problem no more function make_clip( ... ) { return false } function make_brush( ... ) { return false } __CollectEventCallbacks( PhysUnblocker, "OnGameEvent_", "GameEventCallbacks", RegisterScriptGameEventListener ) IncludeScript( "physunblocker" )