Advertisement
Guest User

L4D2 Map Fix and PvP Changelog

a guest
Sep 23rd, 2020 (edited)
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 321.34 KB | None | 0 0
  1. MAP FIX CHANGELOG :: VSCRIPT, LUMP FILES & MORE
  2.  
  3. Left 4 Dead 2 maps have been updated with bug and exploit fixes in addition to quality of life enhancements.
  4. Survivor and Infected clips have been extensively re-worked to patch all out of bounds exploits.
  5.  
  6. Versus map fixes are aggressive (but fair) and Coop is extremely lax.
  7.  
  8. Credits and documentation resources can be found later in this changelog or in thread:
  9.  
  10. Dev Thread: Map fixes for Valve
  11. https://steamcommunity.com/app/550/discussions/1/1651043320659915818/
  12.  
  13. Community (non-Valve) maps remain 100% un-changed, but do have access to new entity creation functions for patching.
  14.  
  15. ------------------------------------------------------------------------------------------------------------------------
  16. ------------------------------------------------------------------------------------------------------------------------
  17.  
  18. IF YOU DON'T WANT TO READ 8000+ LINES...
  19.  
  20. You can visually render all the VScript map changes by following these steps:
  21.  
  22. 1. Right-click L4D2 in Steam Library > Properties > "SET LAUNCH OPTIONS..."
  23.  
  24. 2. Enter "-dev" (without the quotes) into the textbox
  25.  
  26. 3. Load any map via console, like "map c8m1_apartment versus"
  27.  
  28. 4. In console type "script ShowUpdate()"
  29.  
  30. 5. In console type "sb_all_bot_game 1" to prevent server shutdown
  31.  
  32. Using "versus" the above will render everything, but note that "coop" won't have new Infected ladders and will also
  33. have far less shortcut/exploit fixes -- "survival" has a small amount of exclusive clips for specific maps.
  34.  
  35. MrFailzz made a Coop/speedrunner-focused changelog with navmesh changes here:
  36.  
  37. https://hackmd.io/@MrFailzz/rJ5S7EZHw
  38.  
  39. If you only play Coop, please read MrFailzz' changelog instead!
  40.  
  41. ------------------------------------------------------------------------------------------------------------------------
  42. ------------------------------------------------------------------------------------------------------------------------
  43.  
  44. FREQUENTLY ASKED QUESTIONS
  45.  
  46. Q Is Coop exploit X patched?
  47.  
  48. A Most likely yes if it allowed you to go out of bounds. Otherwise no, so most shortcuts are still possible.
  49.  
  50. Q Is Versus exploit X patched?
  51.  
  52. A Most likely yes... extreme diligence was placed on unearthing every method of Infected attaacking from
  53. underneath the map, or Survivors reaching unattackable space.
  54.  
  55. Q Why was X fixed?
  56.  
  57. A Fixes are only spawned in for the modes they're relevant. Relevancy was determined through playtesting by
  58. both casual and competitive Versus players and speedrunners. In rare cases old exploits were restored
  59. like deleting Dark Carnival 3's swan room shelf blocker, because navmesh edits fixed the problem better.
  60.  
  61. Q Will the VScript fixes break any addons?
  62.  
  63. A The update will be incompatible with these addons:
  64.  
  65. Survivor Ragdolls (Global) https://steamcommunity.com/sharedfiles/filedetails/?id=1932686022
  66. Survivor Shoving Script https://steamcommunity.com/sharedfiles/filedetails/?id=1975951464
  67.  
  68. But I've already notified the authors they'll have to update to using mapspawn_addon.nut instead of
  69. mapspawn.nut. Preserved entities have also been changed, so round-persistence needs to run on "worldspawn"
  70. instead of say an "info_target".
  71.  
  72. Q Can the new VScript exploit fixes be opted out of?
  73.  
  74. A Yes, just create an empty mapspawn.nut file. This is intended to give server admins a grace period for
  75. reconciling redundancies within their Stripper:Source configs which will now have a lot of overlap.
  76.  
  77. Q Can I offer map change suggestions?
  78.  
  79. A Soon you'll be able to Subscribe to the Community Update Team's Workshop item at
  80.  
  81. https://steamcommunity.com/sharedfiles/filedetails/?id=1959405608
  82.  
  83. to prototype potential new exploit/bug and QoL additions to the game -- this isn't new content, just fixes,
  84. and Kerry Davis himself is a contributor!
  85.  
  86. Q Haven't community configs already fixed all exploits?
  87.  
  88. A Lots of fixes are converted from ZoneMod and other Stripper:Source community configs, but not all.
  89. This update includes a general clipping rework to patch even hypothetical future exploits, and
  90. recently-emerging exploits like crouching through displacements of which existing configs do not
  91. comprehensively cover. Also, solutions which work for competitive configs rarely translate well into
  92. vanilla -- Dark Carnival 2's hedge LOS blockers and Parish 3's fence covers are great examples which
  93. transitioned from ZoneMod to vanilla seamlessly, but the Midnight Riders bus did not.
  94.  
  95. Q Was any campaign singled out for favoritism?
  96.  
  97. A No, even Crash Course has a lot of great new ladders and a couple of unique attacks, in addition to
  98. completely overhauled breakwall textures which were originally missing.
  99.  
  100. Q Was the setpause/unpause DoS spam fixed?
  101.  
  102. A Yes, and the reason it took a while is because of doors -- when rate limiting was turned on, spamming
  103. doors would trip the command counter and L4D2 doesn't allow reversing the direction of a door in motion
  104. but open/close commands were still being spammed... requiring doors to be fixed.
  105.  
  106. Q How do you edit pre-existing maps?
  107.  
  108. A You can modify them from decompiled sources such as the ones at
  109.  
  110. https://github.com/spumer/left_4_dead_2__decompiled_maps
  111.  
  112. or by using in-game editors. SourceMod with Stripper:Source installed is what most are familiar with,
  113. but this update uses new VScript files anv_mapfixes.nut and anv_versus.nut for that instead.
  114.  
  115. Q How do the new VScript files work together?
  116.  
  117. A L4D2 now uses mapspawn.nut. Every time any map loads anv_mapfixes.nut is run in worldspawn scope to
  118. maintain round-persistence and avoid Mutation Game Event conflicts. Director.GetMapName() checks if it's
  119. a Valve map then Director.GetGameModeBase() spawns in mode-specific fixes. If it's not a Valve map, it
  120. does nothing. When HasPlayerControlledZombies() is true, anv_versus.nut is also run to spawn in
  121. Versus-specific entities, like ladders, and deletes only specific func_playerinfected_clip as needed
  122. to minimize the introduction of exploits that need further fixing.
  123.  
  124. ------------------------------------------------------------------------------------------------------------------------
  125. ------------------------------------------------------------------------------------------------------------------------
  126.  
  127. VSCRIPT ENTITY CONTRIBUTIIONS
  128.  
  129. Tsuey:
  130.  
  131. Framework and functions, pre-QA Infected ladders, Clipping rework, exploit and logic fixes
  132.  
  133. Jacob:
  134.  
  135. R&D, Versus balance tweaks and extensive QA work and polish, LOS fix brushes, Tank warp fixes
  136.  
  137. With further entity contributions from NF, ReneTM, JAiZ, CircleSquared, and Tabbernaut
  138.  
  139. And script contributions from Rayman1103 and Daroot Leafstorm
  140.  
  141. Special thanks to Sir and Wicket for the sourced ZoneMod 1.9.8 ladders
  142.  
  143. New Propper models in active use:
  144.  
  145. "models/props/effects/tankwall_128_2_128.mdl" -- Syberian Husky
  146. "models/props/effects/tankwall_48_1_48.mdl" -- Syberian Husky
  147. "models/props_update/plywood_128.mdl" -- Jacob
  148. "models/props_update/c1m2_wrongway_rooftop1.mdl" -- Jacob
  149. "models/props_update/c1m2_wrongway_rooftop2.mdl" -- Jacob
  150. "models/props_update/c1m2_wrongway_wall.mdl" -- Jacob
  151. "models/props_update/c2m2_fairgroundwall.mdl" -- Jacob
  152. "models/props_update/c2m4_barn_overhang.mdl" -- NF
  153. "models/props_update/c2m5_infectedroom.mdl" -- Syberian Husky
  154. "models/props_update/c2m5_infectedroom_doorway.mdl" -- Jacob
  155. "models/props_update/c3m3_nodrawfence.mdl" -- Syberian Husky
  156. "models/props_update/c5m2_billboard_nodraw.mdl" -- Syberian Husky
  157. "models/props_update/c8m1_rooftop_1.mdl" -- Syberian Husky
  158. "models/props_update/c8m1_rooftop_2.mdl" -- Syberian Husky
  159. "models/props_update/c8m1_rooftop_3.mdl" -- Syberian Husky
  160. "models/props_update/c8m1_rooftop_4.mdl" -- Jacob
  161. "models/props_update/c8m2_generatorroom.mdl" -- NF
  162. "models/props_update/c8m4_skylight_rooftop.mdl" -- Jacob
  163. "models/props_update/c9m1_nodraw_window.mdl" -- Jacob
  164. "models/props_update/c10m4_hellcade_nodraw.mdl" -- Tsuey
  165. "models/props_update/c11m1_greenhouse_nodraw.mdl" -- Tsuey
  166. "models/props_update/c11m1_greenhouse_plywood.mdl" -- NF
  167. "models/props_update/c11m3_nodraw_cinderwall.mdl" -- Jacob
  168. "models/props_update/c11m3_wrongway_curb.mdl" -- Jacob
  169. "models/props_update/c11m3_wrongway_fence.mdl" -- Jacob
  170.  
  171. Thanks to all playtesters and everyone on the L4D2 Community Update Team!
  172.  
  173. ------------------------------------------------------------------------------------------------------------------------
  174. ------------------------------------------------------------------------------------------------------------------------
  175.  
  176. Functions called by mapspawn.nut have extended L4D2 VScript with a powerful suite of one-line tools for entity handling.
  177.  
  178. + BSP recompiles are no longer necessary when problems can be solved by cloning existing brushes.
  179.  
  180. + Maps now patched with "anv_mapfixes.nut" instead of _commentary.txt files -- speedy code goes in, speedy fix comes out.
  181.  
  182. + New global variables powered by "mapspawn.nut":
  183.  
  184. g_MapName Identical to "Director.GetMapName().tolower()"
  185. g_MutaMode Identical to "Director.GetGameMode()"
  186. g_BaseMode Identical to "Director.GetGameModeBase()"
  187. g_Chapter Stores each "friendly name" (only for Valve campaigns)
  188. g_UpdateName Prefixes "anv_mapfixes" to new entities
  189. g_UpdateRanOnce Run code only once outside of "mapspawn.nut"
  190.  
  191. + Added new feature-full entity maker and edit functions in "anv_functions.nut":
  192.  
  193. Almost everything is a String:
  194.  
  195. * Denotes optional parameters (wherever possible i.e. often Angles)
  196.  
  197. ^ Denotes non-String parameters (floats or integers i.e. "Init state")
  198.  
  199. ? Denotes user-friendly String options
  200.  
  201. "Clips who?" = Everyone | Survivors | SI Players | SI Players and AI | All and Physics
  202. "Team blocked?" = Everyone | Survivors | Infected
  203. "Start state?" = Apply | Remove
  204. "Push what?" = Everything | Survivor | Infected | Physics
  205. "Hurt who?" = Everyone | Survivor | Infected | Ghost
  206. "Option?" = Duck | Walk | Jump
  207. "Prop type?" = dynamic | dynamic_ovr | physics | physics_ovr
  208. "Shadows?" = shadow_yes | shadow_no
  209. "Solidity?" = solid_yes | solid_no
  210. "Team climb?" = 0 (Both) | 1 (Survivor) | 2 (Infected)
  211. "Axis?" = x+ | x- | y+ | y-
  212.  
  213. make_clip Targetname Clips who? ^Init state Box mins Box maxs Origin *Angles
  214.  
  215. make_brush Targetname Box mins Box maxs Origin ! Blocks stuff clips don't i.e. bullet hitreg
  216.  
  217. make_navblock Targetname Team blocked? Start state? Box mins Box maxs Origin
  218.  
  219. make_trigpush Targetname Push what? ^Speed Push Direction Box mins Box maxs Origin
  220. *Angles *Filter Override ! Angles have unknown mild influence but mostly don't work
  221.  
  222. make_trighurt Targetname Hurt who? Box mins Box maxs Origin ! Creates an insta-kill volume
  223.  
  224. make_trigduck Targetname Box mins Box maxs Origin ! Auto-crouch into small passages
  225.  
  226. make_trigmove Targetname Option? Box mins Box maxs Origin ! Enforces movement Option
  227.  
  228. make_prop Prop type? Targetname Model path Origin *Angles *Shadows? *Solidity?
  229. *Render color *^FadeMinDist *^FadeMaxDist *^Mass scale
  230. ! Targetname with "_solidify" prefix only for 1:1 copied prop_statics; prop_dynamics with prefix will not render!
  231.  
  232. make_decal Texture path Origin
  233.  
  234. SafelyExists Entity handle ! Ensures no crashes or red console errors when deleting or modifying entities
  235.  
  236. kill_entity Entity handle ! Used for removing Versus defibrillators or func_breakable skylights to add Ladders
  237.  
  238. clone_model Entity handle ! Returns guaranteed-precached "*#" model of any entity that SafelyExists ("null" if not found)
  239.  
  240. kill_funcinfclip Desired radius ! Checksum uniquely referring to them to VERY selectively delete bothersome Versus clips
  241.  
  242. find_ladder Desired VSSM *^Radius ! See code documentation on VSSM, bad input will produce nothing
  243.  
  244. patch_ladder Desired VSSM Offset origin *New normal ! 0 1 0 North | 0 -1 0 South | 1 0 0 West | -1 0 0 East
  245.  
  246. make_ladder Ladder name Desired VSSM Offset origin *Offset angles *New normal *^Team climb? *^Radius
  247. ! Only modify Normal if the clone was rotated -- if none, the original's is ported over
  248.  
  249. InfectedLadders_Spawn ! No parameters: Relies on InfectedLadders() being declared then delay-loads them for ALL gamemodes
  250. ! Infected ladders are relevant to ALL gamemodes since they can be connected to NAV mesh and used by bots!
  251. DEPRECATED
  252.  
  253. InfectedHumEnts_Spawn ! No parameters: Relies on InfectedHumEnts() being declared and produces them on Versus / VS Survival / Scavenge
  254. ! Reserved for exception handling; make_prop() already handles the "_solidify" prefixes!
  255. DEPRECATED
  256.  
  257. patch_nav_obscured Origin nav area ! Runs once b/c "OBSCURED" permanently applied
  258.  
  259. patch_nav_checkpoint Origin nav area ! Runs once b/c "CHECKPOINT" permanently applied
  260.  
  261. patch_spawninfront Origin Box mins Box maxs ! Stop Commons spawning inside Survivors in end safe rooms
  262.  
  263. make_atomizer Targetname Origin Model path ^Delete timer ! Disintegrates Tank/Charger chokepoint blockades
  264.  
  265. make_axiswarp Targetname Axis? ^Offset Box mins Box maxs Origin ! Bandaid fixes
  266.  
  267. modify_trigfilter Origin *Filter name *Class name
  268.  
  269. unsolidify_prop Entity handle ! Un-solidifies a specific dynamic/physics prop
  270.  
  271. unsolidify_model Model path ! Un-solidifies all props with this model
  272.  
  273. SpawnGlobalFilters ! No parameters: Creates a "filter_activator_team" for Survivor & Infected
  274. ! Named "anv_globalfixes_filter_survivor" & "anv_globalfixes_filter_infected"
  275.  
  276. StringToVector_Valve String Delimiter
  277.  
  278. VectorToString_Valve ^Vector
  279.  
  280. con_comment Comment ! Does printl() with \newline after only if "developer() > 0"
  281.  
  282. devchap Mode ! Developer indication of if "TUTORIAL", "ALL MODES", "BASE VERSUS", etc.
  283. ! Always notifies of Anniversary Map Fixes update w/ more details if "developer 1"
  284.  
  285. + Valve maps only: Survivor and Infected given new activator filters with names consistent across all maps!
  286.  
  287. + VS Survival includes everything from Versus except new hittabes on c2m5, c3m3, and c10m5 are deleted.
  288.  
  289. + Launch Option -dev for verbose entity dumps or render: "script_execute z_developer_showupdate" >> "script ShowUpdate()"
  290.  
  291. ------------------------------------------------------------------------------------------------------------------------
  292. ------------------------------------------------------------------------------------------------------------------------
  293.  
  294. Versus-related Kerry C++ changes:
  295.  
  296. + Fixed chargers bumping off survivors if they started charging from too close.
  297. + Fixed a longstanding bug that affected boss spawn rates on several maps.
  298.  
  299. ------------------------------------------------------------------------------------------------------------------------
  300.  
  301. Versus global CVAR changes:
  302.  
  303. + Infected ghost timers are now always 20 seconds. (Previously ranged from 20-30)
  304. + Jockey leap recharge after incapping a survivor reduced from 30 to 25 seconds.
  305. + Jockey ride damage reworked from 4 every 1 second, to 2 every 0.5 seconds. (Same damage per second)
  306. + Reduced duration of bile jar effect on player controlled infected from 20 to 15 seconds.
  307. + Reduced fire damage vs tank from 80 damage / second to 66 damage / second.
  308. + Tank initial frustration "grace period" increased from 10 to 15 seconds.
  309. + Removed tank spawn variation between teams.
  310.  
  311. ------------------------------------------------------------------------------------------------------------------------
  312.  
  313. Versus map Tank/Witch spawns:
  314.  
  315. + Set tank chance to 100% on Hard Rain 4.
  316. + Added a chance for tank to spawn on No Mercy 4.
  317. + Added a chance for witches to spawn on No Mercy and Death Toll finales.
  318.  
  319. ------------------------------------------------------------------------------------------------------------------------
  320.  
  321. Versus "anv_tankwarps.nut" exposed spawns warped to safety (excludes Taaannnk!! Mutation):
  322.  
  323. + c1m2_streets
  324.  
  325. Move tank spawn at ceda truck drop to the top of the stairs (~44% boss flow)
  326.  
  327. + c2m2_fairgrounds
  328.  
  329. Move tank spawn inside carousel fence to behind the carousel (~80% boss flow)
  330.  
  331. + c2m3_coaster
  332.  
  333. Move tank spawn in the swan room to the next room forward (~25% boss flow)
  334. Move tank spawn after the coaster one way drop to the button area (76-79% boss flow)
  335. Additional warp for the coaster one way drop area (80-83% boss flow)
  336.  
  337. + c5m5_bridge
  338.  
  339. Move all bridge tank spawns a bit further down the bridge to discourage rushing
  340.  
  341. + c12m4_barn
  342.  
  343. Move tank spawn from hillside before event area to top of trains (~60% boss flow)
  344.  
  345. + c13m4_cutthroatcreek
  346.  
  347. Move tank spawns back a bit to discourage rushing
  348.  
  349. ------------------------------------------------------------------------------------------------------------------------
  350.  
  351. File "anv_maptrigs.nut" exploit/bug fixes:
  352.  
  353. + c1m1_hotel (Versus):
  354.  
  355. Prevent the earliest press-forward balcony window shortcut with a particle deterrent.
  356.  
  357. + c2m4_barns (Versus):
  358.  
  359. Prevent various common hops straight to barns roof with a large clip.
  360.  
  361. + c2m5_concert (All Modes):
  362.  
  363. Prevent interior stadium trigger from deleting players by re-creating it.
  364.  
  365. + c12m4_barn (All Modes):
  366.  
  367. Prevent skipping bridge horde by forcing it even if fence is jumped.
  368.  
  369. + c13m3_memorialbridge (Versus/Coop):
  370.  
  371. Prevent using water (or ladder) as a cushion to shortcut jump off bridge.
  372.  
  373. ------------------------------------------------------------------------------------------------------------------------
  374.  
  375. Map-specific VScript files:
  376.  
  377. + c8m4_elevatorfix.nut
  378.  
  379. Re-enables jumping in elevator. Injects a lot of I/O to juggle clips and teleport triggers that
  380. prevent Survivors from falling through elevator, warping through skybox, and other hazards.
  381.  
  382. + c11m5_versus_planecrash.nut
  383.  
  384. Injects logic_relay "planecrash_trigger" to spawn ladders, LOS fixes and collision for plane debris.
  385. Triggers push Infected away and navblockers ensure Commons can path through it all.
  386.  
  387. + anv_standards.nut
  388.  
  389. Comment tutorial for "map tutorial_standards_vs versus" on vanilla Versus entity rework standards.
  390.  
  391. ------------------------------------------------------------------------------------------------------------------------
  392.  
  393. Combined entity overview (Various Modes):
  394.  
  395. + 820 infected ladders
  396. + Added access to several new areas for infected
  397. + 141 spots you can permanently fall into
  398. + 40 displacement areas you can crouch through to unattackably leave map
  399. + 64 edges/steps smoothened to improve player (and AI) movement
  400. + 70 navmesh-related exploits
  401. + 260 general improvements to Valve's clipping
  402. + Insta-kill triggers in the places you'd expect, i.e. c10m4 Death Charge
  403. + 20 shortcuts (yes like half of these are Coaster)
  404. + 10 stuck-warps (i.e. Tanks)... some await future solutions like c1m1
  405. + 50 non-shortcut common hops to unattackably leave map
  406. + 30 bad or unusable Infected ladders corrected
  407. + 200 LOS fixes for when you should be able to spawn but can't
  408. + 7 safe room griefing exploits to camp door / avoid auto-open
  409. + Tank rock / Charger props blocking chokes will be deleted after 60 secs
  410.  
  411. Statistics:
  412.  
  413. 10 files
  414. 11,173 lines of code/comments
  415. 3,606 new entities
  416. 110 func_playerinfected_clip deleted
  417.  
  418. ------------------------------------------------------------------------------------------------------------------------
  419. ------------------------------------------------------------------------------------------------------------------------
  420.  
  421. LUMP FILE FIXES
  422.  
  423. Lump file patching https://developer.valvesoftware.com/wiki/Patching_levels_with_lump_files was used instead
  424. of VScript for more laborious fixes like adding more Versus breakwall textures. Most are outlined here.
  425.  
  426. General:
  427.  
  428. + Lots and lots of adjustments to floating items/weapons.
  429.  
  430. + Lots and lots of Survival-only clipping (some ported to VScript where relevant, i.e. events/finales).
  431.  
  432. + Several Scavenge-only fixes for accessing start/end safe rooms or cans going inaccessibly out of bounds.
  433.  
  434. + All func_illusionary breakwalls were converted to func_brush so second Versus round sees them, too.
  435.  
  436. c1m2_streets:
  437.  
  438. + All Whitaker stuff
  439.  
  440. + Breakwall textures at event area
  441.  
  442. c1m3_mall:
  443.  
  444. + Extra func_orator deleted (which was also solid in front of alarm button)
  445.  
  446. c1m4_atrium:
  447.  
  448. + Can no longer incap a teammate in the safe room and start elevator to avoid finale start.
  449.  
  450. c2m2_fairgrounds:
  451.  
  452. + Un-solidified func_orator at start
  453.  
  454. + Breakwall textures at event area and clip kill I/O added
  455.  
  456. c2m3_coaster:
  457.  
  458. + Breakwall texture for one-way drop wall
  459.  
  460. + One-way drop wall can now be destroyed by any Infected
  461.  
  462. c2m5_concert:
  463.  
  464. + Integrated _commentary.txt logic into lump file to prevent Survivor bots going to wrong chopper.
  465.  
  466. + Integrated _commentary.txt logic into lump file to eliminate one-second early escape window.
  467.  
  468. + Both Versus teams will now have the chopper arrive on the same side.
  469.  
  470. c4m1_milltown_a:
  471.  
  472. + Resolved issue where two separate doors open as if they were one.
  473.  
  474. c5m2_park:
  475.  
  476. + Starting safe room will stop offering a selection between identical guns.
  477.  
  478. c5m3_cemetery:
  479.  
  480. + End safe room ammo pile will no longer hover into the air for second Versus round.
  481.  
  482. c5m4_quarter:
  483.  
  484. + Breakwall textures at event area
  485.  
  486. + Breakwalls are always destructible (Ghosts being unable to enter is intentional for balance)
  487.  
  488. c5m5_bridge:
  489.  
  490. + Added a new func_orator "papa_gator"
  491.  
  492. + Infected ladders on the bridge now exist for second Versus round.
  493.  
  494. c6m1_riverbank:
  495.  
  496. + Deleted footlockers from Scavenge and Survival to resolve edict limit crash.
  497.  
  498. c6m3_port:
  499.  
  500. + Finale will now start even if a teammate is incapped inside the elevator.
  501.  
  502. c7m1_docks:
  503.  
  504. + Breakwall textures on all windows in final room
  505.  
  506. c8m2_subway:
  507.  
  508. + Breakwall textures on two breakable windows in generator room with I/O to delete light beams
  509.  
  510. c8m5_rooftop:
  511.  
  512. + Resolved the point_template that kept spawning in 100's of duplicate exploit fix brushes.
  513.  
  514. + Scavenge gascans will now respawn if lost by falling.
  515.  
  516. + Spitter acid balls will no longer linger on the bottom of the map.
  517.  
  518. c9m1_alleys:
  519.  
  520. + Breakwall textures at event area
  521.  
  522. c9m2_lots:
  523.  
  524. + Breakwall textures added to outsides of all garage doors
  525.  
  526. + Breakwall textures added and I/O fixed on two wooden doors
  527.  
  528. c10m3_ranchhouse:
  529.  
  530. + Scavenge players can no longer start the church event by pressing the invisible safe door.
  531.  
  532. c10m4_mainstreet:
  533.  
  534. + Breakwall textures at event area storefront
  535.  
  536. c11m4_terminal:
  537.  
  538. + Breakwall texture added to classroom wall (Kerry himself was aggravated he couldn't find it)
  539.  
  540. c11m5_runway:
  541.  
  542. + Infected ladders are moved out of view when the C130 takeoff outro starts.
  543.  
  544. ------------------------------------------------------------------------------------------------------------------------
  545. ------------------------------------------------------------------------------------------------------------------------
  546.  
  547. VSCRIPT FIXES
  548.  
  549. This work is dedicated to two lost brothers and all those tragically lost in these horrific times of COVID-19.
  550.  
  551. Somehow we'll survive together.
  552.  
  553. Keep in mind:
  554.  
  555. 1. It's recommended to use "script ShowUpdate()" instead of reading this changelog
  556.  
  557. 2. Where "All" refers to all modes and "PvP" refers to any mode with Human-controlled Infected
  558.  
  559. 3. Provided "setpos_exact" values can be pasted into console in-game to teleport straight to the fix
  560.  
  561. 4. All clips are initially enabled except those which explicitly state "initially disabled"
  562.  
  563. 5. Every new entity is logged below, even though sometimes several are for the same fix
  564.  
  565. ------------------------------------------------------------------------------------------------------------------------
  566. ------------------------------------------------------------------------------------------------------------------------
  567.  
  568. DEAD CENTER - HOTEL || c1m1_hotel
  569.  
  570. All:
  571.  
  572. Clip "_cliphang_window" blocks Survivors @ setpos_exact 2335 6420 2804
  573.  
  574. Clip "_cliphang_ledge" blocks Survivors @ setpos_exact 1222 6232 2912
  575.  
  576. Clip "_barricadefire_bypass" blocks Survivors @ setpos_exact 1326 5624 2528
  577.  
  578. PvP:
  579.  
  580. TRIG: Anti-shortcut "_shortcut_balcrail_trigonce" deletes trighurt at lower floor.
  581.  
  582. INFO: Fire particle "_shortcut_balcrail_particle" acts as visual deterrent.
  583.  
  584. Insta-kill "_shortcut_balcrail_trighurt" Everyone @ setpos_exact 1641 6432 2576
  585.  
  586. Clip "_shortcut_balcrail_survivorclip" blocks Survivors @ setpos_exact 1646 6560 2481
  587.  
  588. LOGIC: Anti-doorbreak trighurt will be deleted 4 seconds after elevator starts.
  589.  
  590. Insta-kill "_elevator_exploit_bean" Ghost @ setpos_exact 2169 5713 2352
  591.  
  592. QOL: The 2nd fire door is open immediately for Versus-only QoL.
  593.  
  594. ------------------------------------------------------------------------------------------------------------------------
  595.  
  596. DEAD CENTER - STREETS || c1m2_streets
  597.  
  598. All:
  599.  
  600. Clip "_mindthegap_lolvalve" blocks Infected @ setpos_exact -2472 137 64
  601.  
  602. Clip "_stuckwarpassist_walltovoid" blocks Infected @ setpos_exact -5056 1500 1344
  603.  
  604. Clip "_booster_mallroof" blocks Survivors @ setpos_exact -9218 -4415 1024
  605.  
  606. Clip "_nav_cedaramp_in" blocks Infected + AI @ setpos_exact -4268 2566 75
  607.  
  608. Clip "_nav_cedaramp_out" blocks Infected + AI @ setpos_exact -4322 2567 102
  609.  
  610. Clip "_colastore_clipgap" blocks Survivors @ setpos_exact -6792 -3215 616
  611.  
  612. Clip "_colastore_clipawn" blocks Survivors @ setpos_exact -7017 -1699 599
  613.  
  614. Clip "_ladderqol_railing" blocks Infected @ setpos_exact -2614 2319 300
  615.  
  616. Clip "_save4lesscurb_smoother1" blocks Everyone @ setpos_exact -6515 -2681 384
  617.  
  618. Clip "_save4lesscurb_smoother2" blocks Everyone @ setpos_exact -6515 -2302 384
  619.  
  620. Clip "_save4lesscurb_smoother3" blocks Everyone @ setpos_exact -6899 -1601 384
  621.  
  622. Clip "_ladderqol_smootherl" blocks Everyone @ setpos_exact -6059 -2238 430
  623.  
  624. Clip "_ladderqol_smootherm" blocks Everyone @ setpos_exact -6060 -2586 427
  625.  
  626. Clip "_ladderqol_smootherr" blocks Everyone @ setpos_exact -6056 -2960 412
  627.  
  628. Clip "_whitakercurb_smoother1" blocks Everyone @ setpos_exact -5525 -2349 448
  629.  
  630. Clip "_whitakercurb_smoother2" blocks Everyone @ setpos_exact -5525 -1719 448
  631.  
  632. Clip "_booster_bridgestairsa" blocks Survivors @ setpos_exact -5572 932 768
  633.  
  634. Clip "_booster_bridgestairsb" blocks Survivors @ setpos_exact -5512 1016 832
  635.  
  636. Clip "_booster_building" blocks Survivors @ setpos_exact -5064 1408 1344
  637.  
  638. PvP:
  639.  
  640. Deleted func_playerinfected_clip @ setpos_exact 2047 2287 703
  641.  
  642. Deleted func_playerinfected_clip @ setpos_exact 2047 1791 703
  643.  
  644. Deleted func_playerinfected_clip @ setpos_exact -3409 1791 511
  645.  
  646. Deleted func_playerinfected_clip @ setpos_exact -3889 2287 511
  647.  
  648. Deleted func_playerinfected_clip @ setpos_exact -3905 2015 511
  649.  
  650. Deleted func_playerinfected_clip @ setpos_exact -1049 1023 447
  651.  
  652. Deleted func_playerinfected_clip @ setpos_exact -1537 -1 383
  653.  
  654. Tank/Charger chokepoint atomizer created @ setpos_exact -7475 -4582 384
  655.  
  656. Brush "_losfix_backstreet_van" created @ setpos_exact -2182 687 9
  657.  
  658. Brush "_losfix_endstreet_bus" created @ setpos_exact -8352 -2283 395
  659.  
  660. Brush "_losfix_endstreet_fence" created @ setpos_exact -7071 -3944 389
  661.  
  662. Brush "_losfix_endstreet_gen1" created @ setpos_exact -7143 -4150 393
  663.  
  664. Brush "_losfix_endstreet_gen2" created @ setpos_exact -8699 -4013 393
  665.  
  666. Brush "_losfix_endstreet_van" created @ setpos_exact -7893 -2305 394
  667.  
  668. Brush "_losfix_sidestreet_van1" created @ setpos_exact -1209 3992 131
  669.  
  670. Brush "_losfix_sidestreet_van2" created @ setpos_exact -1180 4061 132
  671.  
  672. Brush "_losfix_sidestreet_van3" created @ setpos_exact -1162 4126 138
  673.  
  674. Brush "_losfix_skybridge_bus" created @ setpos_exact -5310 -609 460
  675.  
  676. Brush "_losfix_stairs_gen1" created @ setpos_exact -4974 1669 392
  677.  
  678. Brush "_losfix_stairs_gen2" created @ setpos_exact -4994 1651 392
  679.  
  680. Brush "_losfix_starting_truck" created @ setpos_exact 1165 2493 571.5
  681.  
  682. Brush "_losfix_tanker1" created @ setpos_exact -6939 -1040 444
  683.  
  684. Brush "_losfix_tanker2" created @ setpos_exact -6894 -964 444
  685.  
  686. Brush "_losfix_tanker3" created @ setpos_exact -6844 -888 444
  687.  
  688. Brush "_losfix_tanker4" created @ setpos_exact -6797 -820 444
  689.  
  690. Brush "_losfix_tanker5" created @ setpos_exact -6753 -801 444
  691.  
  692. Brush "_losfix_tanker6" created @ setpos_exact -6753 -736 444
  693.  
  694. Brush "_losfix_tanker7" created @ setpos_exact -6675 -619 444
  695.  
  696. Brush "_losfix_tanker8" created @ setpos_exact -6631 -579 444
  697.  
  698. Brush "_losfix_tanker9" created @ setpos_exact -6623 -505 426
  699.  
  700. Clip "_clipgap_deadendfence" blocks Infected @ setpos_exact -1168 5160 383
  701.  
  702. Clip "_ladder_copvines_clip" blocks Infected @ setpos_exact -284 3211 719
  703.  
  704. Clip "_ladder_endbillboard_clipB" blocks Infected @ setpos_exact -7470 -150 696
  705.  
  706. Clip "_ladder_endbillboard_clipT" blocks Infected @ setpos_exact -7471 -150 714
  707.  
  708. Clip "_ladder_saferoomperch_clip" blocks Everyone @ setpos_exact -8190 -4353 384
  709.  
  710. Clip "_ladder_tankhedge_jumpclip" blocks Infected @ setpos_exact 2644 3327 640
  711.  
  712. Clip "_ladderqol_railingtop" blocks Infected @ setpos_exact -2614 2318 348
  713.  
  714. Clip "_ladderqol_railleftbot" blocks Infected @ setpos_exact -1154 2322 320
  715.  
  716. Clip "_ladderqol_raillefttop" blocks Infected @ setpos_exact -1154 2321 368
  717.  
  718. Clip "_skybridgebus_clip" blocks Infected @ setpos_exact -5164 -485 595
  719.  
  720. Clip "_sneaky_hunter" blocks Infected @ setpos_exact -9207 -4402 1024
  721.  
  722. Clip "_yeswaychoke_clip" blocks Infected @ setpos_exact -3636 1800 523
  723.  
  724. Clip "_yeswaycorner_clip" blocks Infected @ setpos_exact 3703 2048 704
  725.  
  726. Clip "_yeswayturnpike_clipa" blocks Infected @ setpos_exact -384 512 704
  727.  
  728. Clip "_yeswayturnpike_clipb" blocks Infected @ setpos_exact -876 48 456
  729.  
  730. LADDER: _ladder_acbuildfront_cloned_acbuildside
  731.  
  732. LADDER: _ladder_copfenceright_cloned_copfenceleft
  733.  
  734. LADDER: _ladder_copvines_cloned_startvines
  735.  
  736. LADDER: _ladder_dumpsterfront_cloned_dumpsterback
  737.  
  738. LADDER: _ladder_dynamictanker_cloned_roundthehedge
  739.  
  740. LADDER: _ladder_endbillboardB_cloned_save4lessleft
  741.  
  742. LADDER: _ladder_endbillboardT_cloned_save4lessright
  743.  
  744. LADDER: _ladder_endfence_cloned_carthedge
  745.  
  746. LADDER: _ladder_endfenceconcrete_cloned_endvanconcrete
  747.  
  748. LADDER: _ladder_fencedinplatform_cloned_longfencefarleft
  749.  
  750. LADDER: _ladder_hedgesreturn_cloned_skystairsback
  751.  
  752. LADDER: _ladder_longfencefarright_cloned_longfencefarleft
  753.  
  754. LADDER: _ladder_oneway_cloned_stairsbus
  755.  
  756. LADDER: _ladder_overpassleft_cloned_overpassright
  757.  
  758. LADDER: _ladder_postdropcut_cloned_turnpikemid
  759.  
  760. LADDER: _ladder_saferoomperch_cloned_save4less
  761.  
  762. LADDER: _ladder_saferoomperchoob_cloned_save4less
  763.  
  764. LADDER: _ladder_skybridgebus_cloned_endbusright
  765.  
  766. LADDER: _ladder_skybridgechance_cloned_yellowbrickcones
  767.  
  768. LADDER: _ladder_skybridgedodge_cloned_yellowbrickcones
  769.  
  770. LADDER: _ladder_skybridgestains_cloned_endslopeleft
  771.  
  772. LADDER: _ladder_skystairsfront_cloned_skystairsback
  773.  
  774. LADDER: _ladder_slopeleftvine_cloned_save4lessright
  775.  
  776. LADDER: _ladder_stairvines_cloned_dumpstervines
  777.  
  778. LADDER: _ladder_startareavines_cloned_dumpsterright
  779.  
  780. LADDER: _ladder_startfencefar_cloned_startfenceback
  781.  
  782. LADDER: _ladder_startfencefront_cloned_startfenceback
  783.  
  784. LADDER: _ladder_starthedgesfront_cloned_starthedgesback
  785.  
  786. LADDER: _ladder_tankerfrontleft_cloned_tankerfenceleft
  787.  
  788. LADDER: _ladder_tankerfrontmid_cloned_tankerfencemid
  789.  
  790. LADDER: _ladder_tankerfrontright_cloned_tankerfenceright
  791.  
  792. LADDER: _ladder_tankhedge_cloned_stairsbus
  793.  
  794. LADDER: _ladder_tentbus_cloned_stairsbus
  795.  
  796. LADDER: _ladder_truckandtent_cloned_carthedge
  797.  
  798. LADDER: _ladder_turnpikeleft_cloned_turnpikemid
  799.  
  800. LADDER: _ladder_turnpikeright_cloned_turnpikemid
  801.  
  802. LADDER: _ladder_whitakerback_cloned_tinyendladder
  803.  
  804. LADDER: _ladder_whitakergunshop_cloned_eventicemachine
  805.  
  806. LADDER: _ladder_whitakerquick_cloned_hedgeparklot
  807.  
  808. LADDER: _ladder_yeswaychokefence_cloned_yellowbrickcones
  809.  
  810. LADDER: _ladder_yeswaychokeroof_cloned_tankerfencemid
  811.  
  812. LADDER: _ladder_yeswaycornerinner_cloned_roundthehedge
  813.  
  814. LADDER: _ladder_yeswaycornerouter_cloned_save4lessright
  815.  
  816. LADDER: _ladder_yeswayturnpikesign_cloned_turnpikemid
  817.  
  818. Static prop "_propladder_blocka" W/ "models/props_fortifications/concrete_block001_128_reference.mdl" @ setpos_exact -2296 2341 288
  819.  
  820. Static prop "_propladder_blockb" W/ "models/props_fortifications/concrete_block001_128_reference.mdl" @ setpos_exact -2426 2341 287
  821.  
  822. Static prop "_propladder_blockc" W/ "models/props_fortifications/concrete_block001_128_reference.mdl" @ setpos_exact -2816 2340 288
  823.  
  824. Static prop "_propladder_blockd" W/ "models/props_fortifications/concrete_block001_128_reference.mdl" @ setpos_exact -2946 2339 289
  825.  
  826. Static prop "_propladder_blocke" W/ "models/props_fortifications/concrete_block001_128_reference.mdl" @ setpos_exact -3076 2339 295
  827.  
  828. Static prop "_propladder_blockf" W/ "models/props_fortifications/concrete_block001_128_reference.mdl" @ setpos_exact -3203 2339 302
  829.  
  830. Static prop "_endbillboard_crashedvan" W/ "models/props_vehicles/van_interior.mdl" @ setpos_exact -7350 0 400
  831.  
  832. Static prop "_endbillboard_streetlight" W/ "models/props_urban/streetlight001.mdl" @ setpos_exact -7434 -95 370
  833.  
  834. Static prop "_endbillboard_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7622 -143 824
  835.  
  836. Static prop "_losblocker_skybridgebus" W/ "models/props_vehicles/bus01_2.mdl" @ setpos_exact -5180 -508 447
  837.  
  838. Static prop "_propladder_endplywood1" W/ "models/props_highway/plywood_01.mdl" @ setpos_exact -7018.5 -3914 471.5
  839.  
  840. Static prop "_propladder_endplywood2" W/ "models/props_highway/plywood_01.mdl" @ setpos_exact -7069.5 -3818 522.5
  841.  
  842. Static prop "_propladder_endvan" W/ "models/props_vehicles/van.mdl" @ setpos_exact -7003 -3900 383
  843.  
  844. Static prop "_propladder_endvanglass" W/ "models/props_vehicles/van_glass.mdl" @ setpos_exact -7003 -3900 383
  845.  
  846. Static prop "_propladder_whitakergunshop_plywood" W/ "models/props_highway/plywood_03.mdl" @ setpos_exact -4798 -1600 623
  847.  
  848. Static prop "_yesdraw_disproof_hunt1" W/ "models/props_update/c8m1_rooftop_1.mdl" @ setpos_exact -6032 1264 1344
  849.  
  850. Static prop "_yesdraw_disproof_hunt2" W/ "models/props_update/c8m1_rooftop_1.mdl" @ setpos_exact -6032 1744 1344
  851.  
  852. Static prop "_yesdraw_disproof_hunt3" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact -5280 1264 1344
  853.  
  854. Static prop "_yesdraw_disproof_hunt4" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact -5280 1744 1344
  855.  
  856. Static prop "_yesdraw_skybroof_hunt1" W/ "models/props_update/c8m1_rooftop_1.mdl" @ setpos_exact -4368 3312 1728
  857.  
  858. Static prop "_yesdraw_skybroof_hunt2" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact -3616 3312 1728
  859.  
  860. Static prop "_yeswaychoke_fence1" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact -3870 1887 512
  861.  
  862. Static prop "_yeswaychoke_fence2" W/ "models/props_urban/fence_cover001_64.mdl" @ setpos_exact -3870 1983 512
  863.  
  864. Static prop "_yeswaychoke_roof1" W/ "models/props_update/c1m2_wrongway_rooftop1.mdl" @ setpos_exact -3900 2044 532
  865.  
  866. Static prop "_yeswaychoke_roof2" W/ "models/props_update/c1m2_wrongway_rooftop2.mdl" @ setpos_exact -3652 2052 532
  867.  
  868. Static prop "_yeswaychoke_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -3538 2042 574
  869.  
  870. Static prop "_yeswaychoke_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -3648 2042 574
  871.  
  872. Static prop "_yeswaychoke_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -3758 2042 574
  873.  
  874. Static prop "_yeswaycorner_wall" W/ "models/props_update/c1m2_wrongway_wall.mdl" @ setpos_exact 3072 2048 608
  875.  
  876. Static prop "_yeswaycorner_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3703 2048 768
  877.  
  878. Static prop "_yeswayturnpike_hedgea" W/ "models/props_foliage/urban_hedge_256_128_high.mdl" @ setpos_exact -599 1037 502
  879.  
  880. Static prop "_yeswayturnpike_hedgeb" W/ "models/props_foliage/urban_hedge_256_128_high.mdl" @ setpos_exact -860 1037 426
  881.  
  882. Static prop "_yeswayturnpike_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -816 32 496
  883.  
  884. Static prop "_yeswayturnpike_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -1200 32 496
  885.  
  886. Ladder found @ "-5168 162.0004 448" and shifted w/ offset @ "0 -4 0"
  887.  
  888. Ladder found @ "-7200 -126 506" and shifted w/ offset @ "0 0 -1000"
  889.  
  890. Ladder found @ "-7440 -126 510" and shifted w/ offset @ "0 0 -1000"
  891.  
  892. Ladder found @ "-7968 -126 510" and shifted w/ offset @ "0 0 -1000"
  893.  
  894. Ladder found @ "-8224 -126 510" and shifted w/ offset @ "0 0 -1000"
  895.  
  896. LOGIC: LOS tanker fixes will be deleted upon its destruction.
  897.  
  898. FIX/ANTI-GRIEF: Removed trigger which disables common infected spawns in Save 4 Less area for Versus only.
  899.  
  900. Deleted ([123] trigger_once) @ setpos_exact -5128 -992 548
  901.  
  902. Survival:
  903.  
  904. Clip "_tanker_blowfish" blocks Survivors @ setpos_exact -6740 -758 681
  905.  
  906. ------------------------------------------------------------------------------------------------------------------------
  907.  
  908. DEAD CENTER - MALL || c1m3_mall
  909.  
  910. All:
  911.  
  912. Decal "decals/vent01" painted @ setpos_exact 1279 -2411 280
  913.  
  914. Clip "_commonhop_maproom" blocks Survivors @ setpos_exact 3673 -2517 424
  915.  
  916. Clip "_cliprework_skylighta" blocks Survivors @ setpos_exact 6464 -2591 559
  917.  
  918. Clip "_cliprework_skylightb" blocks Survivors @ setpos_exact 4173 -2627 793
  919.  
  920. Clip "_cliprework_skylightc" blocks Survivors @ setpos_exact 2274 -672 793
  921.  
  922. Clip "_cliprework_skylightd" blocks Survivors @ setpos_exact 1465 -3418 794
  923.  
  924. PvP:
  925.  
  926. Deleted ([323] func_breakable) @ setpos_exact -1016.5 -4510.5 561
  927.  
  928. Deleted ([322] func_breakable) @ setpos_exact -1155.47 -4510.5 561
  929.  
  930. Deleted ([320] func_breakable) @ setpos_exact -1400.5 -4510.5 561
  931.  
  932. Deleted ([280] func_breakable) @ setpos_exact 2558.5 -408.5 561
  933.  
  934. Deleted ([237] func_breakable) @ setpos_exact 3964.5 -2910.5 561
  935.  
  936. Deleted ([252] func_breakable) @ setpos_exact 4099.47 -2337.5 561
  937.  
  938. Deleted ([238] func_breakable) @ setpos_exact 4103.5 -2910.5 561
  939.  
  940. Deleted ([250] func_breakable) @ setpos_exact 4344.5 -2337.5 561
  941.  
  942. Deleted ([240] func_breakable) @ setpos_exact 4348.54 -2910.5 561
  943.  
  944. Deleted ([249] func_breakable) @ setpos_exact 4483.47 -2337.5 561
  945.  
  946. Deleted ([340] func_breakable) @ setpos_exact 4487.5 -2910.5 561
  947.  
  948. Brush "_losfix_end_gen" created @ setpos_exact -1940 -4434 544
  949.  
  950. Clip "_ladderqol_lastroom_left" blocks Infected @ setpos_exact -1280 -4503 509
  951.  
  952. Clip "_ladderqol_lastroom_right" blocks Infected @ setpos_exact -1280 -3945 509
  953.  
  954. Clip "_ladderqol_maproom_left" blocks Infected @ setpos_exact 4224 -2903 509
  955.  
  956. Clip "_ladderqol_maproom_right" blocks Infected @ setpos_exact 4224 -2345 509
  957.  
  958. Clip "_ladderqol_oneway_left" blocks Infected @ setpos_exact 1993 -672 509
  959.  
  960. Clip "_ladderqol_oneway_right" blocks Infected @ setpos_exact 2551 -672 509
  961.  
  962. Clip "_skylighta_blocker1" blocks Infected @ setpos_exact 6463 -2592 586
  963.  
  964. Clip "_skylighta_blocker2" blocks Infected @ setpos_exact 6463 -2592 586
  965.  
  966. Clip "_skylighta_blocker3" blocks Infected @ setpos_exact 6463 -2592 586
  967.  
  968. Clip "_skylighta_blocker4" blocks Infected @ setpos_exact 6463 -2592 586
  969.  
  970. LADDER: _ladder_kappels_cloned_headroomvent
  971.  
  972. LADDER: _ladder_lastroomSE_cloned_lastroomNE
  973.  
  974. LADDER: _ladder_lastroomSW_cloned_lastroomNW
  975.  
  976. LADDER: _ladder_maproomNE_cloned_onewayNW
  977.  
  978. LADDER: _ladder_maproomNW_cloned_onewaySW
  979.  
  980. LADDER: _ladder_maproomSE_cloned_onewayNE
  981.  
  982. LADDER: _ladder_maproomSW_cloned_onewaySE
  983.  
  984. LADDER: _ladder_scaffold_cloned_sodavent
  985.  
  986. LADDER: _ladder_toystoreceiling_cloned_ventexcessheight
  987.  
  988. Static prop "_cosmetic_breakwall1" W/ "models/props_interiors/breakwall_interior_noboards.mdl" @ setpos_exact 238.1 -2505.6 344
  989.  
  990. Static prop "_cosmetic_breakwall2" W/ "models/props_interiors/breakwall_interior_noboards.mdl" @ setpos_exact 236.9 -2504.9 348
  991.  
  992. Static prop "_ladder_toyvent1" W/ "models/props_exteriors/guardshack_break07.mdl" @ setpos_exact 1271 -2310 431
  993.  
  994. Static prop "_ladder_toyvent2" W/ "models/props_exteriors/guardshack_break07.mdl" @ setpos_exact 1279 -2304 518
  995.  
  996. Static prop "_ladder_toyvent3" W/ "models/props_exteriors/guardshack_break02.mdl" @ setpos_exact 1158 -2421 554
  997.  
  998. Static prop "_ladder_toyvent4" W/ "models/props_vents/vent_cluster006.mdl" @ setpos_exact 1412 -2172 560.35
  999.  
  1000. Static prop "_ladder_toyvent5" W/ "models/props_vents/vent_cluster006.mdl" @ setpos_exact 1043 -2538 561
  1001.  
  1002. trigger_playermovement "_duckqol_justforkidz" with Option Duck @ setpos_exact 1191.3 -2026 521
  1003.  
  1004. ------------------------------------------------------------------------------------------------------------------------
  1005.  
  1006. DEAD CENTER - ATRIUM || c1m4_atrium
  1007.  
  1008. All:
  1009.  
  1010. Clip "_booster_storefrontleft" blocks Survivors @ setpos_exact -4256 -4464 196
  1011.  
  1012. Clip "_booster_storefrontright" blocks Survivors @ setpos_exact -3344 -3280 196
  1013.  
  1014. Clip "_booster_pillarclip" blocks Survivors @ setpos_exact -3434 -3533 472
  1015.  
  1016. Clip "_booster_cedaplastic" blocks Survivors @ setpos_exact -2787 -4193 302
  1017.  
  1018. Clip "_booster_thicklongledge" blocks Survivors @ setpos_exact -2368 -4224 1080
  1019.  
  1020. Clip "_booster_nodrawcorner" blocks Survivors @ setpos_exact -5770 -3926 1024
  1021.  
  1022. Clip "_booster_libertymall" blocks Survivors @ setpos_exact -2386 -3840 824
  1023.  
  1024. Clip "_booster_fallbanner" blocks Survivors @ setpos_exact -2929 -3889.5 991
  1025.  
  1026. Clip "_booster_bridgeroof" blocks Survivors @ setpos_exact -3339 -3857 864
  1027.  
  1028. Clip "_booster_hardhatsa" blocks Survivors @ setpos_exact -3070 -4206 536
  1029.  
  1030. Clip "_booster_hardhatsb" blocks Survivors @ setpos_exact -3370 -4206 536
  1031.  
  1032. Clip "_booster_highbalcony" blocks Survivors @ setpos_exact -4695 -4336 792
  1033.  
  1034. Clip "_booster_glassbalcony" blocks Survivors @ setpos_exact -3688 -4334 791
  1035.  
  1036. Clip "_nav_ladyshoes" blocks Survivors @ setpos_exact -4971 -4461 432
  1037.  
  1038. PvP:
  1039.  
  1040. LADDER: _ladder_plywoodback_cloned_plywoodfront
  1041.  
  1042. LADDER: _ladder_columnfarcorner_cloned_columngibbs
  1043.  
  1044. LADDER: _ladder_columnbooth_cloned_columngibbs
  1045.  
  1046. LADDER: _ladder_columnplywood_cloned_columnbusystairs
  1047.  
  1048. LADDER: _ladder_columnstairsright_cloned_columnbusystairs
  1049.  
  1050. LADDER: _ladder_columnstairsleft_cloned_columnbusystairs
  1051.  
  1052. LADDER: _ladder_columnfallbanner_cloned_columnbusystairs
  1053.  
  1054. ------------------------------------------------------------------------------------------------------------------------
  1055. ------------------------------------------------------------------------------------------------------------------------
  1056.  
  1057. DARK CARNIVAL - HIGHWAY || c2m1_highway
  1058.  
  1059. All:
  1060.  
  1061. Clip "_permstuck_tanktreea" blocks Everyone @ setpos_exact 4096 5123 -938
  1062.  
  1063. Clip "_permstuck_tanktreeb" blocks Everyone @ setpos_exact 4067 4930 -913
  1064.  
  1065. Clip "_permstuck_tanktreec" blocks Everyone @ setpos_exact 3911 3914 -941
  1066.  
  1067. Clip "_cargocontainer_oob_01" blocks Infected @ setpos_exact 3616 2512 -632
  1068.  
  1069. Clip "_cargocontainer_oob_02" blocks Infected @ setpos_exact 3616 1328 -1744
  1070.  
  1071. Clip "_cargocontainer_oob_03" blocks Infected @ setpos_exact 3136 2595 -1243
  1072.  
  1073. Clip "_cargocontainer_dispcrouch" blocks Infected @ setpos_exact 3203 1572 -1822
  1074.  
  1075. Clip "_dispcrouch_rocka" blocks Everyone @ setpos_exact 1280 2115 -1615
  1076.  
  1077. Clip "_dispcrouch_rockb" blocks Everyone @ setpos_exact 1046 2025 -1615
  1078.  
  1079. Clip "_dispcrouch_rockc" blocks Everyone @ setpos_exact 820 2010 -1611
  1080.  
  1081. Clip "_dispcrouch_rockd" blocks Everyone @ setpos_exact 686 2100 -1585
  1082.  
  1083. Clip "_dispcrouch_rocke" blocks Everyone @ setpos_exact 618 2260 -1464
  1084.  
  1085. Clip "_dispcrouch_swampa" blocks Everyone @ setpos_exact 2523 1855 -1805
  1086.  
  1087. Clip "_dispcrouch_swampb" blocks Everyone @ setpos_exact 2595 1654 -1807
  1088.  
  1089. Clip "_cliprework_fence" blocks Survivors @ setpos_exact -193 -1932 -900
  1090.  
  1091. Clip "_commonhop_barrier" blocks Survivors @ setpos_exact 365 -1098 -950
  1092.  
  1093. Clip "_commonhop_tree" blocks Survivors @ setpos_exact -46 -1242 -900
  1094.  
  1095. Clip "_shoppingcart_roof" blocks Survivors @ setpos_exact -517 -2678 -940
  1096.  
  1097. Clip "_shoppingcart_tarpa" blocks Survivors @ setpos_exact -1718 -2783 -967
  1098.  
  1099. Clip "_shoppingcart_tarpb" blocks Survivors @ setpos_exact -1800 -2319 -967
  1100.  
  1101. Clip "_shoppingcart_tarpc" blocks Survivors @ setpos_exact -1838 -1583 -952
  1102.  
  1103. Clip "_booster_clipgap" blocks Survivors @ setpos_exact 3632 5712 -880
  1104.  
  1105. Clip "_shortcut_start_trucka" blocks Survivors @ setpos_exact 4493 7285 -756
  1106.  
  1107. Clip "_shortcut_start_truckb" blocks Survivors @ setpos_exact 4388 7285 -756
  1108.  
  1109. Clip "_shortcut_start_busblu" blocks Survivors @ setpos_exact 4379 7676 -756
  1110.  
  1111. Clip "_shortcut_start_shruba" blocks Survivors @ setpos_exact 4779 7377 -756
  1112.  
  1113. Clip "_shortcut_start_shrubb" blocks Survivors @ setpos_exact 4669 7457 -756
  1114.  
  1115. Clip "_shortcut_start_shrubc" blocks Survivors @ setpos_exact 4626 7363 -756
  1116.  
  1117. Clip "_shortcut_start_shrubd" blocks Survivors @ setpos_exact 4736 7283 -756
  1118.  
  1119. Clip "_booster_motelsign" blocks Survivors @ setpos_exact 2932 4894 -507
  1120.  
  1121. Clip "_permstuck_startfence" blocks Everyone @ setpos_exact 11140 7179 -566
  1122.  
  1123. Clip "_longbush_booster" blocks Survivors @ setpos_exact 4092 3921 -369
  1124.  
  1125. Clip "_longbush_undermapa" blocks Infected @ setpos_exact 4625 4099 -805
  1126.  
  1127. Clip "_longbush_undermapb" blocks Infected @ setpos_exact 4142 2981 -983
  1128.  
  1129. Clip "_clipextend_poolwalla" blocks Survivors @ setpos_exact 2561 3843 -640
  1130.  
  1131. Clip "_clipextend_poolwallb" blocks Survivors @ setpos_exact 3067 4200 -640
  1132.  
  1133. Clip "_permstuck_endfence" blocks Everyone @ setpos_exact 547 -635 -1087
  1134.  
  1135. Clip "_clipextend_umbrella1" blocks Survivors @ setpos_exact 2683 4055 -773
  1136.  
  1137. Clip "_clipextend_umbrella2" blocks Survivors @ setpos_exact 2483 3989 -773
  1138.  
  1139. Clip "_clipextend_umbrella3" blocks Survivors @ setpos_exact 2243 4047 -773
  1140.  
  1141. PvP:
  1142.  
  1143. Clip "_overpass_trucknuke" blocks Survivors @ setpos_exact 3467 7102 -704
  1144.  
  1145. Clip "_tank_busleft" blocks Survivors @ setpos_exact 1731 6723 -574
  1146.  
  1147. Clip "_tank_busright" blocks Survivors @ setpos_exact 1688 7008 -344
  1148.  
  1149. Clip "_tank_fence" blocks Survivors @ setpos_exact 2588 7168 -412
  1150.  
  1151. Deleted ([347] env_player_blocker) @ setpos_exact 1388 5660 -649
  1152.  
  1153. Deleted ([346] env_player_blocker) @ setpos_exact 2972 3724 -649
  1154.  
  1155. Brush "_losfix_bush" created @ setpos_exact 8224 8378 -536
  1156.  
  1157. Brush "_losfix_end_fence" created @ setpos_exact -522 -2416 -1083
  1158.  
  1159. Brush "_losfix_highway_bus1" created @ setpos_exact 7035 7874 -641
  1160.  
  1161. Brush "_losfix_highway_bus2" created @ setpos_exact 6951 7806 -645
  1162.  
  1163. Brush "_losfix_motel_balcony1" created @ setpos_exact 2959 3416 -806
  1164.  
  1165. Brush "_losfix_motel_balcony2" created @ setpos_exact 2865 3129 -806
  1166.  
  1167. Brush "_losfix_motel_fence" created @ setpos_exact 3058 4818 -972
  1168.  
  1169. Brush "_losfix_motel_van" created @ setpos_exact 1545 4113 -966
  1170.  
  1171. Brush "_losfix_overpass_truck" created @ setpos_exact 3571 7076 -693
  1172.  
  1173. Brush "_losfix_start_bus" created @ setpos_exact 9213 7957 -514
  1174.  
  1175. Brush "_losfix_start_van" created @ setpos_exact 7957 7769 -581
  1176.  
  1177. Brush "_losfix_underpass_truck" created @ setpos_exact 3471 7845 -994
  1178.  
  1179. Brush "_losfix_van_jump" created @ setpos_exact 6981.6 7662.8 -656.3
  1180.  
  1181. Clip "_ladder_motelfrontleft_clipleft" blocks Everyone @ setpos_exact 2766 3708 -968
  1182.  
  1183. Clip "_ladder_motelfrontleft_clipright" blocks Everyone @ setpos_exact 2753 3724 -968
  1184.  
  1185. Clip "_ladder_motelfrontright_clipleft" blocks Everyone @ setpos_exact 1372 4691 -968
  1186.  
  1187. Clip "_ladder_motelfrontright_clipright" blocks Everyone @ setpos_exact 1366 4690 -968
  1188.  
  1189. Clip "_motelskyboxroof_clipinfected" blocks Infected @ setpos_exact 2972 3724 -649
  1190.  
  1191. Clip "_saferoof_trollblock" blocks Survivors @ setpos_exact -904 -2534 -940
  1192.  
  1193. Clip "_whispsign_infectedqol" blocks Infected @ setpos_exact 9526 8374 -169
  1194.  
  1195. LADDER: _ladder_barrelsemi_cloned_caralarmshort
  1196.  
  1197. LADDER: _ladder_endbusback_cloned_caralarmshort
  1198.  
  1199. LADDER: _ladder_endbusfront_cloned_caralarmshort
  1200.  
  1201. LADDER: _ladder_endsafebackl_cloned_fixdontdelete
  1202.  
  1203. LADDER: _ladder_endsafebackr_cloned_fixdontdelete
  1204.  
  1205. LADDER: _ladder_endsaferoofa_cloned_fixdontdelete
  1206.  
  1207. LADDER: _ladder_endsaferoofb_cloned_fixdontdelete
  1208.  
  1209. LADDER: _ladder_highwaysign_cloned_whispsign
  1210.  
  1211. LADDER: _ladder_hilltoptruck_cloned_fixdontdelete
  1212.  
  1213. LADDER: _ladder_motelfrontleftB_cloned_motelalarmright
  1214.  
  1215. LADDER: _ladder_motelfrontleftT_cloned_motelalarmright
  1216.  
  1217. LADDER: _ladder_motelfrontrightB_cloned_motelalarmright
  1218.  
  1219. LADDER: _ladder_motelfrontrightT_cloned_motelalarmright
  1220.  
  1221. LADDER: _ladder_motelroofleft_cloned_onewaycliff
  1222.  
  1223. LADDER: _ladder_motelroofright_cloned_onewaycliff
  1224.  
  1225. LADDER: _ladder_motelroofright_cloned_onewaycliff
  1226.  
  1227. LADDER: _ladder_motelroofright_cloned_onewaycliff
  1228.  
  1229. LADDER: _ladder_qolbus_cloned_caralarmshort
  1230.  
  1231. LADDER: _ladder_sheriffbus_cloned_caralarmshort
  1232.  
  1233. LADDER: _ladder_shortcutsemiback_cloned_caralarmshort
  1234.  
  1235. LADDER: _ladder_shortcutsemifront_cloned_caralarmshort
  1236.  
  1237. LADDER: _ladder_shrubberybus_cloned_caralarmshort
  1238.  
  1239. LADDER: _ladder_slopetruck_cloned_caralarmshort
  1240.  
  1241. LADDER: _ladder_startbus_cloned_caralarmshort
  1242.  
  1243. LADDER: _ladder_tankfence_cloned_caralarm
  1244.  
  1245. LADDER: _ladder_tankfightsemi_cloned_caralarmshort
  1246.  
  1247. LADDER: _ladder_whispsignextender_cloned_motelpoolfence
  1248.  
  1249. Static prop "_losblocker_fence" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 3060 4819 -967
  1250.  
  1251. Static prop "_losblocker_fencea" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact -128 -1332 -1078.75
  1252.  
  1253. Static prop "_losblocker_fenceb" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 48 -1160 -1078.75
  1254.  
  1255. Static prop "_propladder_barrel" W/ "models/props_urban/highway_barrel001.mdl" @ setpos_exact 3084 5126 -947.96
  1256.  
  1257. Static prop "_propladder_barrier" W/ "models/props_fortifications/concrete_barrier001_128_reference.mdl" @ setpos_exact 3079 5152 -948.75
  1258.  
  1259. Static prop "_ladder_motelfrontleftB_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 2769 3714 -788
  1260.  
  1261. Static prop "_ladder_motelfrontleftT_pipe" W/ "models/props_rooftop/Gutter_Pipe_128.mdl" @ setpos_exact 2769 3714 -660
  1262.  
  1263. Static prop "_ladder_motelfrontrightB_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 1378 4688 -788
  1264.  
  1265. Static prop "_ladder_motelfrontrightT_pipe" W/ "models/props_rooftop/Gutter_Pipe_128.mdl" @ setpos_exact 1378 4688 -660
  1266.  
  1267. Static prop "_ladder_motelroofleft_pipe" W/ "models/props_mill/PipeSet08d_512_001a.mdl" @ setpos_exact 792 3695 -904
  1268.  
  1269. Static prop "_ladder_motelroofright_pipe" W/ "models/props_mill/PipeSet08d_512_001a.mdl" @ setpos_exact 792 5308 -904
  1270.  
  1271. Static prop "_ladder_motelroofright_pipe" W/ "models/props_mill/PipeSet08d_512_001a.mdl" @ setpos_exact 792 5308 -904
  1272.  
  1273. Static prop "_losblocker_motelleft" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact 2706 3541 -665
  1274.  
  1275. Static prop "_losblocker_motelright" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact 1205 5394 -668
  1276.  
  1277. Static prop "_motelskyboxroof_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 918 3383 -565
  1278.  
  1279. Static prop "_motelskyboxroof_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1318 3383 -555
  1280.  
  1281. Static prop "_motelskyboxroof_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1718 3383 -555
  1282.  
  1283. Static prop "_motelskyboxroof_wrongwayd" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2118 3383 -555
  1284.  
  1285. Static prop "_motelskyboxroof_wrongwaye" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2518 3383 -555
  1286.  
  1287. Static prop "_motelskyboxroof_wrongwayf" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2850 3383 -565
  1288.  
  1289. Ladder found @ "-196 -1725 -1018.049" and normal changed to "-1 0 0"
  1290.  
  1291. Trigger "_trigpushl_whispsign" pushes Infected w/ speed 50 @ setpos_exact 9536 8453 -193
  1292.  
  1293. Trigger "_trigpushr_whispsign" pushes Infected w/ speed 50 @ setpos_exact 9525 8453 -193
  1294.  
  1295. Coop:
  1296.  
  1297. KILL: Shrubwall shortcut unpatched for Coop (popular request).
  1298.  
  1299. Survival:
  1300.  
  1301. Clip "_survival_midnightride" blocks Survivors @ setpos_exact 2618 6269 -679
  1302.  
  1303. Clip "_survival_midnightsign" blocks Survivors @ setpos_exact 2338 6131 -415
  1304.  
  1305. Clip "_survival_boostshrub" blocks Survivors @ setpos_exact 3079 6479 -343
  1306.  
  1307. Clip "_survival_fence_extend" blocks Survivors @ setpos_exact 2042 3837 -640
  1308.  
  1309. Scavenge:
  1310.  
  1311. Clip "_scavenge_fence_painthop" blocks Survivors @ setpos_exact 2042 3837 -640
  1312.  
  1313. ------------------------------------------------------------------------------------------------------------------------
  1314.  
  1315. DARK CARNIVAL - FAIRGROUND || c2m2_fairgrounds
  1316.  
  1317. All:
  1318.  
  1319. Clip "_bunnyhop_roundtable" blocks Survivors @ setpos_exact 2360 -244 266
  1320.  
  1321. Clip "_booster_unattackable" blocks Survivors @ setpos_exact 4000 -2304 268
  1322.  
  1323. Clip "_forklift_roof" blocks Survivors @ setpos_exact 1750 -1660 193
  1324.  
  1325. Clip "_commonhop_whitefence" blocks Survivors @ setpos_exact -3903 -1141 -15
  1326.  
  1327. Clip "_commonhop_carouselroofs" blocks Survivors @ setpos_exact -990 -5501 192
  1328.  
  1329. Clip "_booster_uppertrackb" blocks Survivors @ setpos_exact -1536 -2368 448
  1330.  
  1331. Clip "_booster_uppertracka" blocks Survivors @ setpos_exact -2721 -825 337
  1332.  
  1333. Clip "_void_filler" blocks Everyone @ setpos_exact -1792 -7311 250
  1334.  
  1335. Clip "_charger_smoother" blocks Everyone @ setpos_exact -3119 -896 152
  1336.  
  1337. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact -504 -1535 128
  1338.  
  1339. Clip "_cliprework_beanbinninga" blocks Survivors @ setpos_exact -888 -1535 128
  1340.  
  1341. Clip "_cliprework_beanbinningb" blocks Survivors @ setpos_exact -702 -2549 128
  1342.  
  1343. Clip "_cliprework_unattackablea" blocks Survivors @ setpos_exact -3405 -6489 204
  1344.  
  1345. Clip "_cliprework_unattackableb" blocks Survivors @ setpos_exact -3510 -6336 204
  1346.  
  1347. Clip "_cliprework_unattackablec" blocks Survivors @ setpos_exact -3664 -6076 204
  1348.  
  1349. Clip "_cliprework_unattackabled" blocks Survivors @ setpos_exact -4012 -5793 204
  1350.  
  1351. Clip "_cliprework_unattackablee" blocks Survivors @ setpos_exact -4352 -5473 272
  1352.  
  1353. Clip "_cliprework_wrongwaya" blocks Survivors @ setpos_exact -481 -5505 192
  1354.  
  1355. Clip "_cliprework_wrongwayb" blocks Survivors @ setpos_exact -258 -6303 192
  1356.  
  1357. Clip "_cliprework_wrongwayc" blocks Survivors @ setpos_exact -1471 -7166 192
  1358.  
  1359. Clip "_nav_exitsign" blocks Survivors @ setpos_exact 1048 -1269 128
  1360.  
  1361. Clip "_cliprework_blockergap" blocks Survivors @ setpos_exact -4235 -3968 384
  1362.  
  1363. Clip "_clipextend_carouselboost" blocks Survivors @ setpos_exact -1446 -5248 192
  1364.  
  1365. Clip "_unattackable_traintunnel" blocks Survivors @ setpos_exact -604 -1536 428
  1366.  
  1367. Clip "_dispcollision_fairgrounds" blocks All and Physics @ setpos_exact -1903 -142 -128
  1368.  
  1369. PvP:
  1370.  
  1371. LOGIC: Anti-boost ToL clips will be deleted by existing trigger after carousel switch.
  1372.  
  1373. Clip "_tol_clip_brush_a" blocks Survivors @ setpos_exact -3530 -5162 192
  1374.  
  1375. Clip "_tol_clip_brush_b" blocks Survivors @ setpos_exact -3439 -5178 192
  1376.  
  1377. Deleted func_playerinfected_clip @ setpos_exact 1719 2561 147
  1378.  
  1379. Deleted func_playerinfected_clip @ setpos_exact 1719 2287 147
  1380.  
  1381. Deleted func_playerinfected_clip @ setpos_exact 1759 2011 127
  1382.  
  1383. Deleted func_playerinfected_clip @ setpos_exact 1535 2011 127
  1384.  
  1385. Deleted func_playerinfected_clip @ setpos_exact -4113 -6401 271
  1386.  
  1387. Deleted func_playerinfected_clip @ setpos_exact -4097 1535 -1
  1388.  
  1389. Tank/Charger chokepoint atomizer created @ setpos_exact -3777 -1164 -118
  1390.  
  1391. Tank/Charger chokepoint atomizer created @ setpos_exact -3777 -1164 -128
  1392.  
  1393. Tank/Charger chokepoint atomizer created @ setpos_exact 2752 -1529 0
  1394.  
  1395. Brush "_losfix_end_gen" created @ setpos_exact -3546 -5845 -55
  1396.  
  1397. Brush "_losfix_slide_gen" created @ setpos_exact -2363 -3306 -121
  1398.  
  1399. Brush "_losfix_start_gen" created @ setpos_exact 2812 946.508 7
  1400.  
  1401. Brush "_losfix_trailer" created @ setpos_exact -2717 -2863 -122
  1402.  
  1403. Brush "_losfix_warehouse_gen" created @ setpos_exact 2859 -1715 8
  1404.  
  1405. Brush "_tolentrance_base_losblock" created @ setpos_exact -3924 -5493 144
  1406.  
  1407. Brush "_tolentrance_main_losblock" created @ setpos_exact -3924 -5493 144
  1408.  
  1409. Clip "_ladder_garagebench_clipl" blocks Everyone @ setpos_exact 4103 -2102 4
  1410.  
  1411. Clip "_ladder_garagebench_clipr" blocks Everyone @ setpos_exact 4103 -2142 4
  1412.  
  1413. Clip "_ladder_startrestrooms_clip" blocks Everyone @ setpos_exact 3061 1279 0
  1414.  
  1415. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -4349 -5498 272
  1416.  
  1417. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact -4296 -6392 272
  1418.  
  1419. Clip "_onewayfence_blocker" blocks Survivors @ setpos_exact -2240 -3841 2
  1420.  
  1421. Clip "_propladder_acvent_qolclip" blocks Infected @ setpos_exact -1155 -6870 80
  1422.  
  1423. Clip "_tolentrance_base_collision" blocks Everyone @ setpos_exact -3924 -5493 144
  1424.  
  1425. Clip "_tolentrance_main_collision" blocks Everyone @ setpos_exact -3924 -5493 144
  1426.  
  1427. Clip "_yeswayfairback_funcinfclip" blocks Infected @ setpos_exact -2272 1824 384
  1428.  
  1429. LADDER: _ladder_appleshedge_cloned_endelecboxback
  1430.  
  1431. LADDER: _ladder_brickbackend_cloned_whiteawnings
  1432.  
  1433. LADDER: _ladder_brickbannerB_cloned_icemachine
  1434.  
  1435. LADDER: _ladder_brickbannerT_cloned_icemachine
  1436.  
  1437. LADDER: _ladder_bricksmokerB_cloned_bilehopcorner
  1438.  
  1439. LADDER: _ladder_bricksmokerT_cloned_bilehopcorner
  1440.  
  1441. LADDER: _ladder_carouselelecbox_cloned_tallsignfence
  1442.  
  1443. LADDER: _ladder_carouselpermstuck_cloned_trucknukenose
  1444.  
  1445. LADDER: _ladder_carouseltiptop_cloned_trucknuketop
  1446.  
  1447. LADDER: _ladder_endawningsT_cloned_endawningsB
  1448.  
  1449. LADDER: _ladder_endbrickback_cloned_endbrickfront
  1450.  
  1451. LADDER: _ladder_endelecboxfront_cloned_endelecboxback
  1452.  
  1453. LADDER: _ladder_endhedgefront_cloned_endhedgeback
  1454.  
  1455. LADDER: _ladder_garagebench_cloned_icemachine
  1456.  
  1457. LADDER: _ladder_genconcreteback_cloned_genconcretefront
  1458.  
  1459. LADDER: _ladder_generatorfence_cloned_galleryfence
  1460.  
  1461. LADDER: _ladder_hedgecamera_cloned_chompyskypipe
  1462.  
  1463. LADDER: _ladder_lilpeanutB_cloned_dumpsteralley
  1464.  
  1465. LADDER: _ladder_lilpeanutT_cloned_dumpsteralley
  1466.  
  1467. LADDER: _ladder_midareafence_cloned_scavfencefront
  1468.  
  1469. LADDER: _ladder_parkourtracks1B_cloned_icemachine
  1470.  
  1471. LADDER: _ladder_parkourtracks1T_cloned_trucknuketop
  1472.  
  1473. LADDER: _ladder_parkourtracks2B_cloned_icemachine
  1474.  
  1475. LADDER: _ladder_parkourtracks2T_cloned_trucknuketop
  1476.  
  1477. LADDER: _ladder_picketback_cloned_galleryfence
  1478.  
  1479. LADDER: _ladder_picketfront_cloned_galleryfence
  1480.  
  1481. LADDER: _ladder_redchickentent_cloned_gonutsleft
  1482.  
  1483. LADDER: _ladder_ridesroof_cloned_bilejarcut
  1484.  
  1485. LADDER: _ladder_ridesroofbanner_cloned_containerpile
  1486.  
  1487. LADDER: _ladder_ridesroofright_cloned_telepoletrains
  1488.  
  1489. LADDER: _ladder_signgonuts_cloned_hedgebins
  1490.  
  1491. LADDER: _ladder_slidefencefront_cloned_slidefenceback
  1492.  
  1493. LADDER: _ladder_snoconestent_cloned_carouseluproom
  1494.  
  1495. LADDER: _ladder_startfenceback_cloned_cargocontainerback
  1496.  
  1497. LADDER: _ladder_startfencefront_cloned_cargocontainerfront
  1498.  
  1499. LADDER: _ladder_starthedgeback_cloned_cargocontainerback
  1500.  
  1501. LADDER: _ladder_startrestrooms_cloned_icemachine
  1502.  
  1503. LADDER: _ladder_tankfallback_cloned_galleryfence
  1504.  
  1505. LADDER: _ladder_tankhedge_cloned_endelecboxback
  1506.  
  1507. LADDER: _ladder_tentcornerB_cloned_tentcornerback
  1508.  
  1509. LADDER: _ladder_tenthedgejump_cloned_tentcornerback
  1510.  
  1511. LADDER: _ladder_tolentrance_cloned_uppertrackway
  1512.  
  1513. LADDER: _ladder_tolentrancetop_cloned_carouselfence
  1514.  
  1515. LADDER: _ladder_warehouseexitleft_cloned_scavfencefront
  1516.  
  1517. LADDER: _ladder_yeswayfairleft_cloned_scavfenceback
  1518.  
  1519. LADDER: _ladder_yeswayfairright_cloned_scavfenceback
  1520.  
  1521. Static prop "_losblocker_hedgea" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2046 977 78
  1522.  
  1523. Static prop "_losblocker_hedgeb" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2258 930 78
  1524.  
  1525. Static prop "_losblocker_hedgec" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2258 731 78
  1526.  
  1527. Static prop "_losblocker_hedged" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2258 638 78
  1528.  
  1529. Static prop "_losblocker_hedgee" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2258 410 78
  1530.  
  1531. Static prop "_losblocker_hedgef" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2258 295 78
  1532.  
  1533. Static prop "_losblocker_hedgeg" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2258 92 78
  1534.  
  1535. Static prop "_losblocker_hedgeh" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 2046 47 78
  1536.  
  1537. Static prop "_losblocker_hedgei" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 1844 92 78
  1538.  
  1539. Static prop "_losblocker_hedgej" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 1844 295 78
  1540.  
  1541. Static prop "_losblocker_hedgek" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 1844 410 78
  1542.  
  1543. Static prop "_losblocker_hedgel" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 1844 638 78
  1544.  
  1545. Static prop "_losblocker_hedgem" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 1844 731 78
  1546.  
  1547. Static prop "_losblocker_hedgen" W/ "models/props_foliage/urban_hedge_128_64_high.mdl" @ setpos_exact 1844 930 78
  1548.  
  1549. Static prop "_propladder_acvent" W/ "models/props_rooftop/acvent02.mdl" @ setpos_exact -1156 -6874 32.92
  1550.  
  1551. Static prop "_ladder_garagebench_pipe" W/ "models/props_rooftop/Gutter_Pipe_128.mdl" @ setpos_exact 4096 -2122 159
  1552.  
  1553. Static prop "_ladder_hedgecamera_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 4384 -360 196
  1554.  
  1555. Static prop "_ladder_parkourtracks1B_pipe" W/ "models/props_rooftop/Gutter_Pipe_128.mdl" @ setpos_exact -2291 670 0
  1556.  
  1557. Static prop "_ladder_ridesroof_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 0 445 201
  1558.  
  1559. Static prop "_ladder_ridesroofright_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 859 272 242
  1560.  
  1561. Static prop "_ladder_tolentrance_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact -4008 -5648 144
  1562.  
  1563. Static prop "_losblocker_ridesroof" W/ "models/props_rooftop/acvent03.mdl" @ setpos_exact 923 406 222
  1564.  
  1565. Static prop "_losblocker_startfence" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 1788 2145 1
  1566.  
  1567. Static prop "_propladder_ridesroof" W/ "models/props_urban/chimney001.mdl" @ setpos_exact 288 300 315
  1568.  
  1569. Static prop "_startroof_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1539 2888 200
  1570.  
  1571. Static prop "_startroof_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1539 2678 200
  1572.  
  1573. Static prop "_startroof_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1539 2490 60
  1574.  
  1575. Static prop "_startroof_wrongwayd" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1539 2160 60
  1576.  
  1577. Static prop "_yeswayfairback_wall" W/ "models/props_update/c2m2_fairgroundwall.mdl" @ setpos_exact -2304 1536 -32
  1578.  
  1579. Physics prop "_hittable_2009forklift" W/ "models/props/cs_assault/forklift.mdl" @ setpos_exact -3666 -1321 -111
  1580.  
  1581. trigger_auto_crouch "_duckqol_carouselroof" created @ setpos_exact -2240 -5259 303
  1582.  
  1583. Navmesh modified w/ CHECKPOINT @ setpos_exact 1737 2712 4
  1584.  
  1585. Navmesh modified w/ CHECKPOINT @ setpos_exact -4337 -5511 -64
  1586.  
  1587. ------------------------------------------------------------------------------------------------------------------------
  1588.  
  1589. DARK CARNIVAL - COASTER || c2m3_coaster
  1590.  
  1591. All:
  1592.  
  1593. Clip "_shortcut_supports" blocks Survivors @ setpos_exact -3904 2062 96
  1594.  
  1595. Clip "_smokerinfamya" blocks Infected @ setpos_exact -4450 2525 309
  1596.  
  1597. Clip "_smokerinfamyb" blocks Infected @ setpos_exact -4450 3005 309
  1598.  
  1599. Clip "_smokerinfamyc" blocks Infected @ setpos_exact -5119 2734 309
  1600.  
  1601. Clip "_shortcut_commonhopa" blocks Survivors @ setpos_exact -3720 1144 96
  1602.  
  1603. Clip "_shortcut_commonhopb" blocks Survivors @ setpos_exact -3720 1352 72
  1604.  
  1605. Clip "_shortcut_commonhopc" blocks Survivors @ setpos_exact -3720 1768 77
  1606.  
  1607. Clip "_stuckwarp_gatearm" blocks Everyone @ setpos_exact -3799 1100 82
  1608.  
  1609. Clip "_cliprework_scaffnuke_skipa" blocks Survivors @ setpos_exact -3044 3000 177
  1610.  
  1611. Clip "_cliprework_scaffnuke_skipb" blocks Survivors @ setpos_exact -2788 2760 177
  1612.  
  1613. Clip "_cliprework_scaffnuke_skipc" blocks Survivors @ setpos_exact -3044 3000 177
  1614.  
  1615. Clip "_cliprework_scaffnuke_skipd" blocks Survivors @ setpos_exact -2788 2760 177
  1616.  
  1617. Clip "_cliprework_tunnelb" blocks Survivors @ setpos_exact -3418 3460 652
  1618.  
  1619. Clip "_cliprework_roofa" blocks Survivors @ setpos_exact -3596 1560 640
  1620.  
  1621. Clip "_cliprework_tunnela" blocks Survivors @ setpos_exact -3902 3021 655
  1622.  
  1623. Clip "_cliprework_roofb" blocks Survivors @ setpos_exact -3970 1558 640
  1624.  
  1625. Clip "_cliprework_sign" blocks Survivors @ setpos_exact -3902 2321 431
  1626.  
  1627. Clip "_nav_extinguisher" blocks Survivors @ setpos_exact -325 4116 244
  1628.  
  1629. Clip "_commonhop_curvedrail" blocks Survivors @ setpos_exact -3498 2060 250
  1630.  
  1631. Clip "_cliprework_fourvents" blocks Survivors @ setpos_exact 239 3676 272
  1632.  
  1633. Clip "_chargerassist_container" blocks Survivors @ setpos_exact -718 590 128
  1634.  
  1635. Clip "_cliprework_semipermstuck" blocks Everyone @ setpos_exact -3254 2792 0
  1636.  
  1637. Clip "_cliprework_culdesaca" blocks Survivors @ setpos_exact -3917 2979 152
  1638.  
  1639. Clip "_cliprework_culdesacb" blocks Survivors @ setpos_exact -3659 3066 152
  1640.  
  1641. Clip "_cliprework_culdesacc" blocks Survivors @ setpos_exact -3351 3058 152
  1642.  
  1643. Clip "_cliprework_culdesacd" blocks Survivors @ setpos_exact -3493 3256 368
  1644.  
  1645. Clip "_shortcut_commonhopd" blocks Survivors @ setpos_exact -3512 1352 77
  1646.  
  1647. Clip "_shortcut_commonhope" blocks Survivors @ setpos_exact -3512 1768 77
  1648.  
  1649. Clip "_shortcut_commonhopf" blocks Survivors @ setpos_exact -3720 1976 57
  1650.  
  1651. Clip "_shortcut_commonhopg" blocks Survivors @ setpos_exact -3848 1976 57
  1652.  
  1653. Clip "_shortcut_supportdropa" blocks Survivors @ setpos_exact -3260 2854 576
  1654.  
  1655. Clip "_shortcut_supportdropb" blocks Survivors @ setpos_exact -3300 2810 576
  1656.  
  1657. Clip "_cliprework_shrubgap" blocks Survivors @ setpos_exact -3072 128 152
  1658.  
  1659. Clip "_shortcut_finally_done" blocks Survivors @ setpos_exact -2894 2609 253
  1660.  
  1661. Clip "_onewaybreakwall_elecbox" blocks Everyone @ setpos_exact -64 3524 100
  1662.  
  1663. Clip "_endbridge_shiftsmoother1" blocks Everyone @ setpos_exact -4183 2320 272
  1664.  
  1665. Clip "_endbridge_shiftsmoother2" blocks Everyone @ setpos_exact -4729 2277 164
  1666.  
  1667. Clip "_permstuck_irredeemable" blocks Infected @ setpos_exact -2064 -174 0
  1668.  
  1669. Clip "_permstuck_swanroom_rest" blocks Everyone @ setpos_exact 510 4084 -7
  1670.  
  1671. Clip "_semiperm_coastergate" blocks Survivors @ setpos_exact -2784 1688 0
  1672.  
  1673. Clip "_recompilepls_pillar1" blocks Survivors @ setpos_exact -3760 2360 0
  1674.  
  1675. Clip "_recompilepls_pillar2" blocks Survivors @ setpos_exact -3760 2280 0
  1676.  
  1677. Clip "_recompilepls_pillar3" blocks Survivors @ setpos_exact -4032 2280 0
  1678.  
  1679. Clip "_recompilepls_pillar4" blocks Survivors @ setpos_exact -4032 2360 0
  1680.  
  1681. Clip "_recompilepls_pillar5" blocks Survivors @ setpos_exact -4176 2360 0
  1682.  
  1683. Clip "_recompilepls_pillar6" blocks Survivors @ setpos_exact -4176 2280 0
  1684.  
  1685. Clip "_cliprework_permstuck" blocks Survivors @ setpos_exact -3266 3057 413
  1686.  
  1687. Clip "_booster_eventskip1" blocks Survivors @ setpos_exact -3106 3081 960
  1688.  
  1689. Clip "_booster_eventskip2" blocks Survivors @ setpos_exact -3106 3081 960
  1690.  
  1691. Clip "_stuckwarp_swanstairs" blocks Everyone @ setpos_exact 298 4192 43
  1692.  
  1693. Brush "_permstuck_swanroom_dead" created @ setpos_exact 510 4084 -7
  1694.  
  1695. trigger_auto_crouch "_duckqol_swanhole" created @ setpos_exact 1348 4096 32
  1696.  
  1697. Clip "_onewayhole_blockclip" blocks Everyone @ setpos_exact 336 3777 180
  1698.  
  1699. Static prop "_onewayhole_blockpipe" W/ "models/props_pipes/pipeset08d_128_001a.mdl" @ setpos_exact 336 3777 180
  1700.  
  1701. PvP:
  1702.  
  1703. Clip "_shortcut_longjump" blocks Survivors @ setpos_exact -4240 2616 171
  1704.  
  1705. Brush "_coastertower_chimney_losblock" created @ setpos_exact -2751 1031 620
  1706.  
  1707. Brush "_losfix_truck" created @ setpos_exact -1575 1984 8
  1708.  
  1709. Clip "_coastertower_chimney_collision" blocks Everyone @ setpos_exact -2751 1031 620
  1710.  
  1711. Clip "_ladder_buttonlegT_clip" blocks Infected @ setpos_exact -3548 1785 148
  1712.  
  1713. Clip "_ladder_coastertower_clip" blocks Everyone @ setpos_exact -2784 1327 174
  1714.  
  1715. Clip "_ladder_swanroomcpanel_clipB" blocks Infected @ setpos_exact 479 4838 126
  1716.  
  1717. Clip "_ladder_swanroomcpanel_clipT" blocks Infected @ setpos_exact 475 4838 126
  1718.  
  1719. Clip "_ladderqol_coasterinclinequad" blocks Infected @ setpos_exact -2784 375 593
  1720.  
  1721. Clip "_onewaybreakwall_elecbox" blocks Everyone @ setpos_exact -64 3524 100
  1722.  
  1723. Clip "_propladder_airconda_qol" blocks Infected @ setpos_exact -1938 739 195
  1724.  
  1725. Clip "_startwindow_cheese" blocks Survivors @ setpos_exact 2783 1920 105
  1726.  
  1727. Clip "_trailerfence_clip" blocks Infected @ setpos_exact -1150 2887 -3
  1728.  
  1729. LADDER: _ladder_buttonlegT_cloned_buttonlegB
  1730.  
  1731. LADDER: _ladder_coastertowerB_cloned_finalleg
  1732.  
  1733. LADDER: _ladder_coastertowerT_cloned_shrubberytilt
  1734.  
  1735. LADDER: _ladder_deadendcontainer_cloned_trailerfenceback
  1736.  
  1737. LADDER: _ladder_elecboxbags_cloned_dumpsterduo
  1738.  
  1739. LADDER: _ladder_fencedroproof_cloned_dumpsterduo
  1740.  
  1741. LADDER: _ladder_gunstruck_cloned_signalvines
  1742.  
  1743. LADDER: _ladder_swanroomcpanel_cloned_unusedconcrete
  1744.  
  1745. LADDER: _ladder_swanroomelecbox_cloned_swanroomsource
  1746.  
  1747. LADDER: _ladder_swanroomshelf_cloned_coasterfencetilt
  1748.  
  1749. LADDER: _ladder_trailerfencefront_cloned_trailerfenceback
  1750.  
  1751. Static prop "_losblocker_fencea" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact -2698 2029 -0.675446
  1752.  
  1753. Static prop "_losblocker_fenceb" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact -2682 2155 -0.675446
  1754.  
  1755. Static prop "_propladder_airconda" W/ "models/props_rooftop/acvent04.mdl" @ setpos_exact -1938 683 160
  1756.  
  1757. Static prop "_propladder_aircondb" W/ "models/props_rooftop/acunit01.mdl" @ setpos_exact -1825 490 231
  1758.  
  1759. Static prop "_trailerfence_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -1093 2848 100
  1760.  
  1761. Physics prop "_hittable_bumpera_m4translated" W/ "models/props_fairgrounds/bumpercar.mdl" @ setpos_exact -5048 1361 4
  1762.  
  1763. Physics prop "_hittable_bumperb_m4translated" W/ "models/props_fairgrounds/bumpercar.mdl" @ setpos_exact -5123 1374 31
  1764.  
  1765. trigger_playermovement "_duckqol_swanroomcpanel" with Option Duck @ setpos_exact 483 4854 136
  1766.  
  1767. trigger_playermovement "_duckqol_coastergate" with Option Duck @ setpos_exact -2756 1690 139
  1768.  
  1769. Ladder found @ "-1278 2672 160" and shifted w/ offset @ "13 0 0"
  1770.  
  1771. Ladder found @ "-3518 1780 102" and shifted w/ offset @ "0 2.1 0"
  1772.  
  1773. Ladder found @ "-4164 2274 128" and shifted w/ offset @ "0 -2 0"
  1774.  
  1775. Ladder found @ "-484 506 160" and shifted w/ offset @ "0 -3 0"
  1776.  
  1777. Navmesh modified w/ CHECKPOINT @ setpos_exact 3852 2037 -64
  1778.  
  1779. ------------------------------------------------------------------------------------------------------------------------
  1780.  
  1781. DARK CARNIVAL - BARNS || c2m4_barns
  1782.  
  1783. All:
  1784.  
  1785. Clip "_outhouse_saferoof" blocks Survivors @ setpos_exact 2608 3920 -88
  1786.  
  1787. Clip "_booster_barnbeam1" blocks Survivors @ setpos_exact -2022 -129 32
  1788.  
  1789. Clip "_booster_barnbeam2" blocks Survivors @ setpos_exact -2022 -321 32
  1790.  
  1791. Clip "_booster_barnbeam3" blocks Survivors @ setpos_exact -1318 63 32
  1792.  
  1793. Clip "_booster_barnbeam4" blocks Survivors @ setpos_exact -1318 -129 32
  1794.  
  1795. Clip "_booster_barnbeam5" blocks Survivors @ setpos_exact -1318 -321 32
  1796.  
  1797. Clip "_booster_barnbeam6" blocks Survivors @ setpos_exact -614 63 32
  1798.  
  1799. Clip "_booster_barnbeam7" blocks Survivors @ setpos_exact -614 -129 32
  1800.  
  1801. Clip "_booster_barnbeam8" blocks Survivors @ setpos_exact -614 -321 32
  1802.  
  1803. Clip "_nav_eventfenceback" blocks Survivors @ setpos_exact -2266 807 -12
  1804.  
  1805. Clip "_booster_clipextend" blocks Survivors @ setpos_exact 646 1995 356
  1806.  
  1807. Clip "_cliprework_finalfence" blocks Survivors @ setpos_exact -120 2446 320
  1808.  
  1809. Clip "_booster_lightpole1" blocks Survivors @ setpos_exact 280 2077 387
  1810.  
  1811. Clip "_booster_lightpole2" blocks Survivors @ setpos_exact 1 1508 387
  1812.  
  1813. Clip "_booster_lightpole3" blocks Survivors @ setpos_exact -226 846 387
  1814.  
  1815. Clip "_booster_lightpole4" blocks Survivors @ setpos_exact -483 1508 387
  1816.  
  1817. Clip "_booster_lightpole5" blocks Survivors @ setpos_exact -985 1508 387
  1818.  
  1819. Clip "_booster_lightpole6" blocks Survivors @ setpos_exact -1765 1508 387
  1820.  
  1821. Clip "_booster_lightpole7" blocks Survivors @ setpos_exact -2162 901 387
  1822.  
  1823. Clip "_booster_lightpole8" blocks Survivors @ setpos_exact -1198 902 387
  1824.  
  1825. Clip "_booster_dualtents" blocks Survivors @ setpos_exact -2993 1146 417
  1826.  
  1827. Clip "_booster_awning" blocks Survivors @ setpos_exact -3119 528 5
  1828.  
  1829. Clip "_booster_elecroof" blocks Survivors @ setpos_exact 426 2316 57
  1830.  
  1831. Clip "_ladder_askewhedgeshared_base" blocks Everyone @ setpos_exact 609 1233 -192
  1832.  
  1833. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact -596 2312 -256
  1834.  
  1835. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact -508 2503 -256
  1836.  
  1837. PvP:
  1838.  
  1839. Clip "_commonhop_generator1" blocks Survivors @ setpos_exact -1716 273 -81
  1840.  
  1841. Clip "_commonhop_generator2" blocks Everyone @ setpos_exact -1660 275 -192
  1842.  
  1843. TRIG: Anti-shortcut "_barnsroof_trigonce" deletes clip at barns exit.
  1844.  
  1845. Clip "_barnsroof_commonhop" blocks Survivors @ setpos_exact -1312 256 180
  1846.  
  1847. Deleted func_playerinfected_clip @ setpos_exact 1967 3455 -257
  1848.  
  1849. Tank/Charger chokepoint atomizer created @ setpos_exact -960 -404 -184
  1850.  
  1851. Brush "_losfix_barn_gen" created @ setpos_exact -1742 346 -185
  1852.  
  1853. Brush "_losfix_drop_trailer" created @ setpos_exact -2423 4 -185
  1854.  
  1855. Brush "_losfix_start_trailer1a" created @ setpos_exact 2347 3295 -185
  1856.  
  1857. Brush "_losfix_start_trailer1b" created @ setpos_exact 2244 3333 -185
  1858.  
  1859. Brush "_losfix_start_trailer2" created @ setpos_exact 2814 2614 -185
  1860.  
  1861. Clip "_eventfence_wrongway" blocks Infected @ setpos_exact -200 2652 352
  1862.  
  1863. Clip "_eventrooftop_smoother1" blocks Infected @ setpos_exact -3305 1312 195
  1864.  
  1865. Clip "_eventrooftop_smoother2" blocks Infected @ setpos_exact -3305 1312 195
  1866.  
  1867. Clip "_ladder_askewhedgeshared_clip" blocks Infected + AI @ setpos_exact 593 1177 -63
  1868.  
  1869. Clip "_ladder_barnoverhang_clip" blocks Survivors @ setpos_exact -731 56 -86
  1870.  
  1871. Clip "_ladder_barnsarearight_clip" blocks Everyone @ setpos_exact 263 2288 -192
  1872.  
  1873. Clip "_ladder_startroof_clip" blocks Everyone @ setpos_exact 3362.5 3216 -187
  1874.  
  1875. LADDER: _ladder_askewhedgebotr1_cloned_askewhedgebotl
  1876.  
  1877. LADDER: _ladder_askewhedgebotr2_cloned_askewhedgebotl
  1878.  
  1879. LADDER: _ladder_askewhedgetopl1_cloned_askewhedgetopr
  1880.  
  1881. LADDER: _ladder_askewhedgetopl2_cloned_askewhedgetopr
  1882.  
  1883. LADDER: _ladder_barnsarearight_cloned_barnsarealeft
  1884.  
  1885. LADDER: _ladder_barnoverhang_cloned_starttrailer
  1886.  
  1887. LADDER: _ladder_bumperhedgeleft_cloned_meatburgerhedge
  1888.  
  1889. LADDER: _ladder_bumperhedgeright_cloned_meatburgerhedge
  1890.  
  1891. LADDER: _ladder_cornerfence_cloned_fencebackalley
  1892.  
  1893. LADDER: _ladder_eventcedabanner1_cloned_askewhedgetopr
  1894.  
  1895. LADDER: _ladder_eventcedabanner2_cloned_askewhedgetopr
  1896.  
  1897. LADDER: _ladder_eventcedabanner3_cloned_askewhedgetopr
  1898.  
  1899. LADDER: _ladder_eventendfencefront_cloned_endfenceback
  1900.  
  1901. LADDER: _ladder_eventwallfence_cloned_peachpitwall
  1902.  
  1903. LADDER: _ladder_finalrun1_cloned_hotdogstand
  1904.  
  1905. LADDER: _ladder_finalrun2_cloned_bumpsidemid
  1906.  
  1907. LADDER: _ladder_lightapplesfront_cloned_lightapplesback
  1908.  
  1909. LADDER: _ladder_lightticketsbackB_cloned_lightapplesback
  1910.  
  1911. LADDER: _ladder_lightticketsbackT_cloned_lightapplesback
  1912.  
  1913. LADDER: _ladder_lightticketsfrontB_cloned_lightapplesback
  1914.  
  1915. LADDER: _ladder_lightticketsfrontT_cloned_lightapplesback
  1916.  
  1917. LADDER: _ladder_redtentmid_cloned_redtentstart
  1918.  
  1919. LADDER: _ladder_startfoodcart_cloned_colddrinkfence
  1920.  
  1921. LADDER: _ladder_starthedge_cloned_startfence
  1922.  
  1923. LADDER: _ladder_startroof_cloned_elecbox
  1924.  
  1925. Static prop "_barn_overhang_floor" W/ "models/props_update/c2m4_barn_overhang.mdl" @ setpos_exact -608 162 28
  1926.  
  1927. Static prop "_barn_overhang_ladder" W/ "models/props_c17/metalladder001.mdl" @ setpos_exact -731 57 32
  1928.  
  1929. Static prop "_barn_overhang_laddercover" W/ "models/props_highway/plywood_01.mdl" @ setpos_exact -707 53.9 -97
  1930.  
  1931. Static prop "_barn_overhang_haybaila" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -499 111 31
  1932.  
  1933. Static prop "_barn_overhang_haybailb" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -528 111 75
  1934.  
  1935. Static prop "_barn_overhang_haybailc" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -556 111 31
  1936.  
  1937. Static prop "_barn_overhang_haybaild" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -690 215 75
  1938.  
  1939. Static prop "_barn_overhang_haybaile" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -661 215 31
  1940.  
  1941. Static prop "_barn_overhang_haybailf" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -718 215 31
  1942.  
  1943. Static prop "_cosmetic_barn_ladder" W/ "models/props_c17/metalladder001.mdl" @ setpos_exact -665 -55 -189.2
  1944.  
  1945. Static prop "_cosmetic_fencea" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 896 2824 -192
  1946.  
  1947. Static prop "_cosmetic_fenceb" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 384 2818.3 -192
  1948.  
  1949. Static prop "_endfence_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -276 2636 -195
  1950.  
  1951. Static prop "_endfence_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -132 2636 -195
  1952.  
  1953. Static prop "_propladder_garbagecan" W/ "models/props_urban/garbage_can002.mdl" @ setpos_exact -2284 1028 -191
  1954.  
  1955. Static prop "_ladder_startroof_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 3362 3216 -4.1
  1956.  
  1957. Static prop "_ladderpatch_awningfence1" W/ "models/props_fortifications/police_barrier001_128_reference.mdl" @ setpos_exact -635 2035 -192
  1958.  
  1959. Static prop "_ladderpatch_awningfence2" W/ "models/props_fortifications/police_barrier001_128_reference.mdl" @ setpos_exact -728 1969 -244
  1960.  
  1961. Static prop "_startfoodcart_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2125 3970 -130
  1962.  
  1963. Static prop "_startfoodcart_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2325 3970 -130
  1964.  
  1965. Static prop "_startfoodcart_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1966 3938 -130
  1966.  
  1967. Physics prop "_barn_middleroom_hittable" W/ "models/props_unique/haybails_single.mdl" @ setpos_exact -1103 191 -147.42
  1968.  
  1969. Physics prop "_hittable_bumpera" W/ "models/props_fairgrounds/bumpercar.mdl" @ setpos_exact 3329 3280 -186
  1970.  
  1971. Physics prop "_hittable_bumperb" W/ "models/props_fairgrounds/bumpercar.mdl" @ setpos_exact 3254 3293 -159
  1972.  
  1973. Ladder found @ "-666 2044 -192" and shifted w/ offset @ "11 -29 0"
  1974.  
  1975. Ladder found @ "1907 894 -64" and shifted w/ offset @ "-40 -5 0"
  1976.  
  1977. Coop:
  1978.  
  1979. KILL: Safe roof exploit unpatched for Coop (popular request).
  1980.  
  1981. Survival:
  1982.  
  1983. Clip "_eventskip_fencehang" blocks Survivors @ setpos_exact 398 1990 -48
  1984.  
  1985. Clip "_nav_eventfencea" blocks Survivors @ setpos_exact -2751 749 -21
  1986.  
  1987. Clip "_nav_eventfenceb" blocks Survivors @ setpos_exact -2499 749 -21
  1988.  
  1989. Clip "_ladder_askewhedgeshared_clip" blocks Infected + AI @ setpos_exact 593 1177 -63
  1990.  
  1991. LADDER: _ladder_askewhedgebotr1_cloned_askewhedgebotl
  1992.  
  1993. LADDER: _ladder_askewhedgebotr2_cloned_askewhedgebotl
  1994.  
  1995. LADDER: _ladder_askewhedgetopl1_cloned_askewhedgetopr
  1996.  
  1997. LADDER: _ladder_askewhedgetopl2_cloned_askewhedgetopr
  1998.  
  1999. ------------------------------------------------------------------------------------------------------------------------
  2000.  
  2001. DARK CARNIVAL - CONCERT || c2m5_concert
  2002.  
  2003. All:
  2004.  
  2005. Clip "_nav_lightingtrussa" blocks Survivors @ setpos_exact -1275 2261 368
  2006.  
  2007. Clip "_nav_lightingtrussd" blocks Survivors @ setpos_exact -2060 2261 368
  2008.  
  2009. Clip "_nav_lightingtrussf" blocks Survivors @ setpos_exact -2549 2261 368
  2010.  
  2011. Clip "_nav_lightingtrussh" blocks Survivors @ setpos_exact -3065 2261 368
  2012.  
  2013. Clip "_nav_lightingtrussi" blocks Survivors @ setpos_exact -3318 2261 368
  2014.  
  2015. Clip "_nav_lightingtrussg" blocks Survivors @ setpos_exact -2822.5 2261 367.7
  2016.  
  2017. Clip "_nav_lightingtrusse" blocks Survivors @ setpos_exact -2296 2261 368
  2018.  
  2019. Clip "_nav_lightingtrussb" blocks Survivors @ setpos_exact -1544 2261 368
  2020.  
  2021. Clip "_nav_lightingtrussc" blocks Survivors @ setpos_exact -1800 2261 368
  2022.  
  2023. Clip "_permstuck_fence" blocks Survivors @ setpos_exact -1110 2274 -112
  2024.  
  2025. Clip "_cliprework_lastwindow" blocks Survivors @ setpos_exact -3853 2279 280
  2026.  
  2027. Clip "_nav_duediligence" blocks Survivors @ setpos_exact -997 3049 -128
  2028.  
  2029. Clip "_cliprework_concertlights" blocks Survivors @ setpos_exact -2305 3277 140
  2030.  
  2031. Clip "_cliprework_concertposter" blocks Survivors @ setpos_exact -2304 3687 204
  2032.  
  2033. Clip "_cliprework_concertroofio" blocks Survivors @ setpos_exact -2302 3197 352
  2034.  
  2035. Clip "_smoother_windows" blocks Infected + AI @ setpos_exact -609 2387 329
  2036.  
  2037. Clip "_missing_staircase_clip" blocks Everyone @ setpos_exact -922 1933 173
  2038.  
  2039. Clip "_booster_lightleft" blocks Survivors @ setpos_exact -2472 3148 278
  2040.  
  2041. Clip "_booster_lightright" blocks Survivors @ setpos_exact -2152 3148 278
  2042.  
  2043. Clip "_commentary_replace_01" blocks Survivors @ setpos_exact -1248 3316 80
  2044.  
  2045. Clip "_backstairs_left" blocks Survivors @ setpos_exact -4086 2688 264
  2046.  
  2047. Clip "_backstairs_right" blocks Survivors @ setpos_exact -951 2073 264
  2048.  
  2049. PvP:
  2050.  
  2051. Static prop "_helistuck_caseunique" W/ "models/props_fairgrounds/bass_case.mdl" @ setpos_exact -3466 2899 -106
  2052.  
  2053. Static prop "_helistuck_casecaster" W/ "models/props_fairgrounds/anvil_case_casters_64.mdl" @ setpos_exact -3488 2870 -128
  2054.  
  2055. TRIG: Player-deleting trigger_multiple replaced with trigger_hurt.
  2056.  
  2057. Deleted ([402] trigger_multiple) @ setpos_exact -3920 3152 -192
  2058.  
  2059. Deleted func_playerinfected_clip @ setpos_exact -1561 1863 119
  2060.  
  2061. Deleted func_playerinfected_clip @ setpos_exact -1561 1743 16
  2062.  
  2063. Deleted func_playerinfected_clip @ setpos_exact -2817 2199 -353
  2064.  
  2065. Deleted func_playerinfected_clip @ setpos_exact -2817 2455 -353
  2066.  
  2067. Deleted func_playerinfected_clip @ setpos_exact -3361 3711 -81
  2068.  
  2069. Tank/Charger chokepoint atomizer created @ setpos_exact -3527 3008 -256
  2070.  
  2071. Tank stuck spawn y+ axis warp created @ setpos_exact -2304 2455 -96
  2072.  
  2073. Tank stuck spawn x+ axis warp created @ setpos_exact -1400 1920 288
  2074.  
  2075. Tank stuck spawn x- axis warp created @ setpos_exact -3209 1920 288
  2076.  
  2077. Brush "_losfix_lightpanel" created @ setpos_exact -2299 2124 130
  2078.  
  2079. Brush "_losfix_plywood1" created @ setpos_exact -2846 2934 -255
  2080.  
  2081. Brush "_losfix_plywood2" created @ setpos_exact -1303 3098 -253
  2082.  
  2083. Brush "_losfix_scaffolding1a" created @ setpos_exact -1988 2489 -83
  2084.  
  2085. Brush "_losfix_scaffolding1b" created @ setpos_exact -1804 2489 -83
  2086.  
  2087. Brush "_losfix_scaffolding1c" created @ setpos_exact -1903 2524 -83
  2088.  
  2089. Brush "_losfix_scaffolding2a" created @ setpos_exact -2668 2489 -83
  2090.  
  2091. Brush "_losfix_scaffolding2b" created @ setpos_exact -2852 2489 -83
  2092.  
  2093. Brush "_losfix_scaffolding2c" created @ setpos_exact -2767 2524 -83
  2094.  
  2095. Brush "_losfix_start_trailer1" created @ setpos_exact -3740 3292 -248
  2096.  
  2097. Brush "_losfix_start_trailer2" created @ setpos_exact -4097 3304 -248
  2098.  
  2099. Clip "_axiswarp_anvilcase_clip" blocks Infected @ setpos_exact -2304 2456 -224
  2100.  
  2101. Clip "_axiswarp_sodapop1_clip" blocks Infected @ setpos_exact -1399 1920 104
  2102.  
  2103. Clip "_axiswarp_sodapop2_clip" blocks Infected @ setpos_exact -3210 1920 104
  2104.  
  2105. Clip "_missing_staircase_clip" blocks Everyone @ setpos_exact -922 1933 173
  2106.  
  2107. Clip "_smoother_windows" blocks Infected + AI @ setpos_exact -609 2387 329
  2108.  
  2109. LADDER: _ladder_fencedperch_cloned_scaffoldsingle
  2110.  
  2111. LADDER: _ladder_fireworksL_cloned_scaffoldsinglefork
  2112.  
  2113. LADDER: _ladder_fireworksR_cloned_scaffoldsinglefork
  2114.  
  2115. LADDER: _ladder_leftchopperwindowl_cloned_leftchopperwindowr
  2116.  
  2117. LADDER: _ladder_startfenceback_cloned_fencecoverfront
  2118.  
  2119. LADDER: _ladder_startfencefront_cloned_fencecoverback
  2120.  
  2121. Static prop "_missing_staircase" W/ "models/props_interiors/stair_metal_02.mdl" @ setpos_exact -840 1792 136
  2122.  
  2123. Static prop "_yesdraw_infecteddoorway" W/ "models/props_update/c2m5_infectedroom_doorway.mdl" @ setpos_exact -3200 3972 0
  2124.  
  2125. Static prop "_yesdraw_infectedroom" W/ "models/props_update/c2m5_infectedroom.mdl" @ setpos_exact -3200 3727 0
  2126.  
  2127. Physics prop "_hittable_dumpleft" W/ "models/props_junk/dumpster_2.mdl" @ setpos_exact -1551 3682 -255
  2128.  
  2129. Physics prop "_hittable_dumpright" W/ "models/props_junk/dumpster_2.mdl" @ setpos_exact -3296 3682 -255
  2130.  
  2131. KILL: Left and right defibrillators deleted for Versus. See: https://www.l4d.com/blog/post.php?id=3935
  2132.  
  2133. Deleted ([50] weapon_defibrillator_spawn) @ setpos_exact -2667.81 2358.75 80.4599
  2134.  
  2135. Deleted ([54] weapon_defibrillator_spawn) @ setpos_exact -1812.16 2326.31 80.4599
  2136.  
  2137. KILL: Extra pills which are meant to be killed OnVersus but still spawn on 2nd round deleted for Versus.
  2138.  
  2139. Deleted func_playerinfected_clip @ setpos_exact -3209.08 1863 119
  2140.  
  2141. Deleted func_playerinfected_clip @ setpos_exact -3209.08 1743 16
  2142.  
  2143. ------------------------------------------------------------------------------------------------------------------------
  2144. ------------------------------------------------------------------------------------------------------------------------
  2145.  
  2146. SWAMP FEVER - PLANK COUNTRY || c3m1_plankcountry
  2147.  
  2148. All:
  2149.  
  2150. Clip "_hedge_behindtrains" blocks Survivors @ setpos_exact -11078 8237 320
  2151.  
  2152. Clip "_commonhop_crossing" blocks Survivors @ setpos_exact -1025 4859 332
  2153.  
  2154. Clip "_clipgap_fence" blocks Survivors @ setpos_exact -11084 7220 428
  2155.  
  2156. Clip "_permstuck_coolingtank" blocks Everyone @ setpos_exact -10754 8610 216
  2157.  
  2158. Clip "_cliprework_jonesroof" blocks Survivors @ setpos_exact -8304 7216 628
  2159.  
  2160. Clip "_commonhop_coolingtank" blocks Survivors @ setpos_exact -6806 7572 144
  2161.  
  2162. Clip "_booster_treetop" blocks Survivors @ setpos_exact -5696 7348 247
  2163.  
  2164. Clip "_chargerassist_trainwheel" blocks Survivors @ setpos_exact -12379 8416 259
  2165.  
  2166. Clip "_chargerassist_fenceladdy" blocks Survivors @ setpos_exact -6248 5650 72
  2167.  
  2168. Clip "_cliprework_garage" blocks Survivors @ setpos_exact -11106 10498 488
  2169.  
  2170. Clip "_cliprework_house" blocks Survivors @ setpos_exact -11343 7758 320
  2171.  
  2172. Clip "_fallenlog_shrub_survivor" blocks Survivors @ setpos_exact 560 9614 83
  2173.  
  2174. Clip "_fallenlog_shrub_infected" blocks Infected + AI @ setpos_exact 560 9614 83
  2175.  
  2176. Clip "_chargerassist_commonhop1" blocks Survivors @ setpos_exact -7093 6280 160
  2177.  
  2178. Clip "_chargerassist_commonhop2" blocks Survivors @ setpos_exact -7093 6452 160
  2179.  
  2180. Clip "_booster_powerpole" blocks Survivors @ setpos_exact -7630 6718 444
  2181.  
  2182. Static prop "_keepcalmgator" W/ "models/props_fairgrounds/alligator.mdl" @ setpos_exact -5274 7386 -19
  2183.  
  2184. PvP:
  2185.  
  2186. Deleted func_playerinfected_clip @ setpos_exact -1537 9823 -33
  2187.  
  2188. Deleted func_playerinfected_clip @ setpos_exact -2769 655 239
  2189.  
  2190. Deleted func_playerinfected_clip @ setpos_exact -3681 655 -33
  2191.  
  2192. Tank stuck spawn x+ axis warp created @ setpos_exact -13026 9199 191
  2193.  
  2194. Brush "_losfix_start_fence1" created @ setpos_exact -10968 9586 164
  2195.  
  2196. Brush "_losfix_start_fence2" created @ setpos_exact -11264 9665 164
  2197.  
  2198. Brush "_losfix_start_gen1" created @ setpos_exact -11817 9724 175
  2199.  
  2200. Brush "_losfix_start_gen2" created @ setpos_exact -11801 9723 175
  2201.  
  2202. Brush "_losfix_start_semi" created @ setpos_exact -11314 9748 181
  2203.  
  2204. Brush "_losfix_start_train1" created @ setpos_exact -11574 11024 210
  2205.  
  2206. Brush "_losfix_start_train2a" created @ setpos_exact -12154 10858 210
  2207.  
  2208. Brush "_losfix_start_train2b" created @ setpos_exact -12075 10905 210
  2209.  
  2210. Brush "_losfix_start_train3a" created @ setpos_exact -12658 10287 210
  2211.  
  2212. Brush "_losfix_start_train3b" created @ setpos_exact -12609 10351 210
  2213.  
  2214. Brush "_losfix_start_train3c" created @ setpos_exact -12566 10432 210
  2215.  
  2216. Brush "_losfix_start_train3d" created @ setpos_exact -12476 10590 210
  2217.  
  2218. Brush "_losfix_start_train3e" created @ setpos_exact -12519 10509 210
  2219.  
  2220. Brush "_losfix_start_train4a" created @ setpos_exact -12725 10059 210
  2221.  
  2222. Brush "_losfix_start_train4b" created @ setpos_exact -12815 9792 210
  2223.  
  2224. Brush "_losfix_start_train4c" created @ setpos_exact -12766 9929 210
  2225.  
  2226. Brush "_losfix_start_train5a" created @ setpos_exact -12844 9464 210
  2227.  
  2228. Brush "_losfix_start_train5b" created @ setpos_exact -12795 9327 210
  2229.  
  2230. Brush "_losfix_start_train5c" created @ setpos_exact -12754 9197 210
  2231.  
  2232. Clip "_ladder_earlsgatorvillage_clip" blocks Everyone @ setpos_exact -7462 7696 32
  2233.  
  2234. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -484 9840 90
  2235.  
  2236. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact -2668 416 256
  2237.  
  2238. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact -3516 543 61
  2239.  
  2240. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact -1846 433 61
  2241.  
  2242. Clip "_starttrains_badredclip" blocks Infected @ setpos_exact -12728 9028 216
  2243.  
  2244. LADDER: _ladder_bridgetunnelleft_cloned_shacklegback
  2245.  
  2246. LADDER: _ladder_bridgetunnelright_cloned_shacklegfront
  2247.  
  2248. LADDER: _ladder_earlsgatorvillage_cloned_goodbuyautoparts
  2249.  
  2250. LADDER: _ladder_endtrainsB_cloned_boardwalkleg
  2251.  
  2252. LADDER: _ladder_endtrainsT_cloned_boardwalkleg
  2253.  
  2254. LADDER: _ladder_endtrainsback_cloned_boardwalkleg
  2255.  
  2256. LADDER: _ladder_gaschainlinkin_cloned_gaschainlinkout
  2257.  
  2258. LADDER: _ladder_jonescar_cloned_goodbuyautoparts
  2259.  
  2260. LADDER: _ladder_jonesvines_cloned_railroadgate
  2261.  
  2262. LADDER: _ladder_rightafterchains_cloned_railroadgate
  2263.  
  2264. LADDER: _ladder_startsemirear_cloned_boardwalkhole
  2265.  
  2266. LADDER: _ladder_startsemitire_cloned_boardwalkhole
  2267.  
  2268. LADDER: _ladder_starttrainfront1_cloned_boardwalkhole
  2269.  
  2270. LADDER: _ladder_starttrainfront2_cloned_boardwalkhole
  2271.  
  2272. LADDER: _ladder_starttrainvalve_cloned_starttrainyellow
  2273.  
  2274. Navblocker "_nav_startshrubwall1" blocks Everyone w/ Apply @ setpos_exact -12524 10074 161
  2275.  
  2276. Navblocker "_nav_startshrubwall2" blocks Everyone w/ Apply @ setpos_exact -12588 9075 168
  2277.  
  2278. Navblocker "_nav_oldtree1" blocks Everyone w/ Apply @ setpos_exact -3447 8260 0
  2279.  
  2280. Navblocker "_nav_oldtree2" blocks Everyone w/ Apply @ setpos_exact -4225 8490 0
  2281.  
  2282. Static prop "_cosmetic_shruba" W/ "models/props_foliage/swamp_shrubwall_512_deep.mdl" @ setpos_exact -2695 280 250
  2283.  
  2284. Static prop "_cosmetic_shrubb" W/ "models/props_foliage/swamp_shrubwall_512_deep.mdl" @ setpos_exact -3153 295 250
  2285.  
  2286. Static prop "_cosmetic_shrubc" W/ "models/props_foliage/swamp_shrubwall_512_deep.mdl" @ setpos_exact -2242 295 250
  2287.  
  2288. Static prop "_propladder_plank" W/ "models/props_swamp/plank001b_192.mdl" @ setpos_exact -6791 7712 200
  2289.  
  2290. Static prop "_losblocker_oldtree1" W/ "models/props_foliage/old_tree01.mdl" @ setpos_exact -3447 8298 -12
  2291.  
  2292. Static prop "_losblocker_oldtree2" W/ "models/props_foliage/old_tree01.mdl" @ setpos_exact -4212 8550 -12
  2293.  
  2294. Static prop "_endsaferoom_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -3415 430 320
  2295.  
  2296. Static prop "_endsaferoom_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -3510 535 485
  2297.  
  2298. Static prop "_solidify_startshrubwall1" W/ "models/props_foliage/swamp_shrubwall_block_128_deep.mdl" @ setpos_exact -12543.6 10072.5 181.932
  2299.  
  2300. Static prop "_solidify_startshrubwall2" W/ "models/props_foliage/swamp_shrubwall_block_128_deep.mdl" @ setpos_exact -12550.2 9119.21 148.872
  2301.  
  2302. Static prop "_start_fencea" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact -11265 9665 167.25
  2303.  
  2304. Static prop "_start_fenceb" W/ "models/props_urban/fence_cover001_64.mdl" @ setpos_exact -10968 9586.1 167.25
  2305.  
  2306. Deleted func_playerinfected_clip @ setpos_exact -2577 655 -33
  2307.  
  2308. Survival:
  2309.  
  2310. Clip "_survivalcrit_bayouboost" blocks Survivors @ setpos_exact -4358 6079 -21
  2311.  
  2312. Clip "_survival_brushextenda" blocks Survivors @ setpos_exact -7967 7806 308
  2313.  
  2314. Clip "_survival_brushextendb" blocks Survivors @ setpos_exact -8832 7232 336
  2315.  
  2316. Clip "_survival_brushextendc" blocks Survivors @ setpos_exact -9471 7496 384
  2317.  
  2318. Clip "_nav_pubsign" blocks Survivors @ setpos_exact -7264 7167 202
  2319.  
  2320. Clip "_nav_trailertree" blocks Survivors @ setpos_exact -7742 7721 287
  2321.  
  2322. ------------------------------------------------------------------------------------------------------------------------
  2323.  
  2324. SWAMP FEVER - SWAMP || c3m2_swamp
  2325.  
  2326. All:
  2327.  
  2328. Clip "_boat_smoother" blocks Everyone @ setpos_exact -7863 5391 -8
  2329.  
  2330. PvP:
  2331.  
  2332. Clip "_brokenhouse_hedgegap" blocks Survivors @ setpos_exact 3915 2029 145
  2333.  
  2334. LOGIC: Anti-skip plane clips will be deleted when door is blown.
  2335.  
  2336. Clip "_cabin_door_button_a" blocks Survivors @ setpos_exact -1932 3700 196
  2337.  
  2338. Clip "_cabin_door_button_b" blocks Survivors @ setpos_exact -1888 3079 226
  2339.  
  2340. Clip "_cabin_door_button_c" blocks Survivors @ setpos_exact -1622 2298 162
  2341.  
  2342. Brush "_losfix_end_gen1" created @ setpos_exact 8011 2779 128
  2343.  
  2344. Brush "_losfix_end_gen2" created @ setpos_exact 8007 2793 128
  2345.  
  2346. Clip "_propladder_crate_qol" blocks Infected @ setpos_exact 8055 100 166
  2347.  
  2348. LADDER: _ladder_brokenhomeleft_cloned_airplanewingmini
  2349.  
  2350. LADDER: _ladder_brokenhomeright_cloned_airplanewingmini
  2351.  
  2352. LADDER: _ladder_corrugatedhome_cloned_airplaneleft
  2353.  
  2354. LADDER: _ladder_crashedplanetail_cloned_crashedplaneright
  2355.  
  2356. LADDER: _ladder_endbarricadeleft1_cloned_airplaneleft
  2357.  
  2358. LADDER: _ladder_endbarricadeleft2_cloned_airplaneleft
  2359.  
  2360. LADDER: _ladder_endbarricaderight1_cloned_airplaneleft
  2361.  
  2362. LADDER: _ladder_endbarricaderight2_cloned_airplaneleft
  2363.  
  2364. LADDER: _ladder_endfence_cloned_airplaneleft
  2365.  
  2366. LADDER: _ladder_finalhome_cloned_airplaneleft
  2367.  
  2368. Static prop "_propladder_endcratea" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact 8045 79 118.63
  2369.  
  2370. Static prop "_propladder_endcrateb" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact 8083 102 118.63
  2371.  
  2372. Static prop "_ladder_corrugatedhome_panel" W/ "models/props_highway/corrugated_panel_damaged_01.mdl" @ setpos_exact 1855 3334 82
  2373.  
  2374. Physics prop "_hittable_fallentree" W/ "models/props_foliage/swamp_fallentree01_bare.mdl" @ setpos_exact 3225 1879 1
  2375.  
  2376. Static prop "_propladder_endsaferoof1" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact 7777 -603 126
  2377.  
  2378. Static prop "_propladder_endsaferoof2" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact 7775 -646 126
  2379.  
  2380. Static prop "_propladder_endsaferoof3" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact 7775 -646 166
  2381.  
  2382. Static prop "_solidify_endtreegiant" W/ "models/props_foliage/urban_tree_giant01.mdl" @ setpos_exact 7849 -791 126.481
  2383.  
  2384. ------------------------------------------------------------------------------------------------------------------------
  2385.  
  2386. SWAMP FEVER - SHANTY TOWN || c3m3_shantytown
  2387.  
  2388. All:
  2389.  
  2390. Clip "_endhaybails_collision" blocks Infected + AI @ setpos_exact 5126 -3967 378
  2391.  
  2392. Clip "_permstuck_fridge" blocks Everyone @ setpos_exact -3791 -2972 136
  2393.  
  2394. Clip "_trailerhouse_smoother1" blocks Everyone @ setpos_exact -3294 -324 -8
  2395.  
  2396. Clip "_trailerhouse_smoother2" blocks Everyone @ setpos_exact -3298 -549 -8
  2397.  
  2398. Clip "_skyboxshield_endsafehouse" blocks Infected @ setpos_exact 5067 -3777 552
  2399.  
  2400. Static prop "_permstuck_cratebot" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact -3749.85 -183.67 -3.164
  2401.  
  2402. Static prop "_permstuck_cratetop" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact -3749.85 -182.67 36.837
  2403.  
  2404. PvP:
  2405.  
  2406. Clip "_shortcut_window" blocks Survivors @ setpos_exact -4120 -2232 38
  2407.  
  2408. Clip "_shortcut_barricadetarp" blocks Survivors @ setpos_exact -4786 1014 298
  2409.  
  2410. Deleted func_playerinfected_clip @ setpos_exact -5121 1567 -353
  2411.  
  2412. Brush "_losfix_endhaybailsa" created @ setpos_exact 5125 -3966.5 350
  2413.  
  2414. Brush "_losfix_endhaybailsb" created @ setpos_exact 5125 -3966.5 402
  2415.  
  2416. Brush "_losfix_opening_gen" created @ setpos_exact -4385 -2721 131
  2417.  
  2418. Brush "_losfix_opening_trailer" created @ setpos_exact -3332 417 -1
  2419.  
  2420. Brush "_losfix_start_truck1" created @ setpos_exact -5171 1649 139
  2421.  
  2422. Brush "_losfix_start_truck2" created @ setpos_exact -5214 1602 139
  2423.  
  2424. Clip "_endhaybails_collisiona" blocks Infected @ setpos_exact 5126 -3967 378
  2425.  
  2426. Clip "_endhaybails_collisionb" blocks Infected @ setpos_exact 5126 -3967 426
  2427.  
  2428. Clip "_ladder_afterplankfront_clip" blocks Infected @ setpos_exact 381 -4026 79
  2429.  
  2430. Clip "_ladder_endsafehousetall_clip" blocks Everyone @ setpos_exact 4754 -3718 209
  2431.  
  2432. Clip "_ladder_longtiltedlog_clipbot" blocks Infected @ setpos_exact -4037 -867 -21
  2433.  
  2434. Clip "_ladder_longtiltedlog_cliptop" blocks Infected @ setpos_exact -4103 -835 268
  2435.  
  2436. Clip "_ladder_plankhomeroof_clipleft" blocks Everyone @ setpos_exact 59 -4103 109
  2437.  
  2438. Clip "_ladder_plankhomeroof_clipright" blocks Everyone @ setpos_exact 33 -4099 109
  2439.  
  2440. Clip "_ladder_startsafehouse_solidify" blocks Infected @ setpos_exact -5948 1913 244
  2441.  
  2442. LADDER: _ladder_afterplankfront_cloned_afterplankback
  2443.  
  2444. LADDER: _ladder_boatpanel_cloned_metalfence
  2445.  
  2446. LADDER: _ladder_bridgehouseB_cloned_logfencefirst
  2447.  
  2448. LADDER: _ladder_bridgehouseT_cloned_firebarrelhouse
  2449.  
  2450. LADDER: _ladder_bugnethome_cloned_metalfence
  2451.  
  2452. LADDER: _ladder_endsafehousetall_cloned_buglampoon
  2453.  
  2454. LADDER: _ladder_eventstartlowground_cloned_startshantyshop
  2455.  
  2456. LADDER: _ladder_eventmidlowground_cloned_gunshackback
  2457.  
  2458. LADDER: _ladder_eventendlowground_cloned_gunshackback
  2459.  
  2460. LADDER: _ladder_gonefishing_cloned_tallstartarea
  2461.  
  2462. LADDER: _ladder_logfencenext_cloned_logfencefirst
  2463.  
  2464. LADDER: _ladder_longtiltedlog_cloned_privateproperty
  2465.  
  2466. LADDER: _ladder_mehsurvival_cloned_startouthouse
  2467.  
  2468. LADDER: _ladder_outhouseroof_cloned_metalfence
  2469.  
  2470. LADDER: _ladder_plankhomeroof_cloned_afterplankback
  2471.  
  2472. LADDER: _ladder_safehouselow_cloned_highgenerator
  2473.  
  2474. LADDER: _ladder_shortcuttrailerfront_cloned_shortcuttrailerback
  2475.  
  2476. LADDER: _ladder_smalltrailerlogs_cloned_startsmalltrailer
  2477.  
  2478. LADDER: _ladder_startbehindrooftop_cloned_startshantyshop
  2479.  
  2480. LADDER: _ladder_startnodrawfence_cloned_shantyshop
  2481.  
  2482. LADDER: _ladder_startpicketqol_cloned_startpicketroof
  2483.  
  2484. LADDER: _ladder_startsafehouse_cloned_highgenerator
  2485.  
  2486. LADDER: _ladder_tarptrailerwood_cloned_startouthouse
  2487.  
  2488. Static prop "_permstuck_cratebot" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact -3749.85 -183.67 -3.164
  2489.  
  2490. Static prop "_permstuck_cratetop" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact -3749.85 -182.67 36.837
  2491.  
  2492. Static prop "_yesdraw_nodrawfence" W/ "models/props_update/c3m3_nodrawfence.mdl" @ setpos_exact -5212 1765 213.5
  2493.  
  2494. Static prop "_ladder_mehsurvival_boat" W/ "models/props_canal/boat001a.mdl" @ setpos_exact -3438 -612 42
  2495.  
  2496. Physics prop "_hittable_fallentree" W/ "models/props_foliage/swamp_fallentree01_bare.mdl" @ setpos_exact -3935 -1120 -11
  2497.  
  2498. Ladder found @ "-4304 -194 88.5" and shifted w/ offset @ "0 -3 0"
  2499.  
  2500. ------------------------------------------------------------------------------------------------------------------------
  2501.  
  2502. SWAMP FEVER - PLANTATION || c3m4_plantation
  2503.  
  2504. All:
  2505.  
  2506. Clip "_permstuck_housetarp" blocks Everyone @ setpos_exact -1753 -996 16
  2507.  
  2508. Clip "_commonhop_mansionroof" blocks Survivors @ setpos_exact 1856 -596 640
  2509.  
  2510. Clip "_stuckwarp_understairs" blocks Everyone @ setpos_exact 2816 119 162
  2511.  
  2512. Clip "_booster_mansionroofa" blocks Survivors @ setpos_exact 1660 527 640
  2513.  
  2514. Clip "_booster_mansionroofb" blocks Survivors @ setpos_exact 1660 399 640
  2515.  
  2516. Clip "_booster_mansionroofc" blocks Survivors @ setpos_exact 1660 -47 640
  2517.  
  2518. Clip "_booster_scaffoldpins" blocks Survivors @ setpos_exact 527 177 243
  2519.  
  2520. Clip "_booster_treeleft" blocks Survivors @ setpos_exact 735 1518 373
  2521.  
  2522. Clip "_booster_treeright" blocks Survivors @ setpos_exact 2558 1526 373
  2523.  
  2524. Clip "_nav_tinytree1" blocks Survivors @ setpos_exact 1485 997 311
  2525.  
  2526. Clip "_nav_tinytree2" blocks Survivors @ setpos_exact 1835 937 311
  2527.  
  2528. Clip "_nav_tinytree3" blocks Survivors @ setpos_exact 1825 1227 311
  2529.  
  2530. Clip "_nav_tinytree4" blocks Survivors @ setpos_exact 1555 1227 311
  2531.  
  2532. Clip "_nav_tinytree5" blocks Survivors @ setpos_exact 1429 1887 311
  2533.  
  2534. Clip "_nav_tinytree6" blocks Survivors @ setpos_exact 1839 1817 311
  2535.  
  2536. Brush "_defibtrick_undermap_dead" created @ setpos_exact 688 122 248
  2537.  
  2538. LOGIC: Point-of-no-return clip will be Enabled when finale is started.
  2539.  
  2540. Clip "_point_of_no_return" blocks Survivors initially disabled @ setpos_exact 2064 -412 396
  2541.  
  2542. PvP:
  2543.  
  2544. Brush "_brickhome_chimney1_losblock" created @ setpos_exact -1779 -3712 454
  2545.  
  2546. Brush "_brickhome_chimney2_losblock" created @ setpos_exact -1298 -3712 454
  2547.  
  2548. Brush "_losfix_start_truck1" created @ setpos_exact -1733 -2751 10
  2549.  
  2550. Brush "_losfix_start_truck2" created @ setpos_exact -1785 -2695 10
  2551.  
  2552. Clip "_brickhome_chimney1_collision" blocks Everyone @ setpos_exact -1779 -3712 454
  2553.  
  2554. Clip "_brickhome_chimney2_collision" blocks Everyone @ setpos_exact -1298 -3712 454
  2555.  
  2556. Clip "_ladder_houselow_clipl" blocks Everyone @ setpos_exact -2054 -1026 1
  2557.  
  2558. Clip "_ladder_houselow_clipr" blocks Everyone @ setpos_exact -2012 -1032 1
  2559.  
  2560. LADDER: _ladder_backwhitefence_cloned_brickhomeB
  2561.  
  2562. LADDER: _ladder_brickhomeT_cloned_brickhomeB
  2563.  
  2564. LADDER: _ladder_brickhomeside_cloned_brickhomeB
  2565.  
  2566. LADDER: _ladder_campscaffold_cloned_brickhomeB
  2567.  
  2568. LADDER: _ladder_dumpsterscaffold_cloned_brickhomeB
  2569.  
  2570. LADDER: _ladder_enclosedhedges_cloned_brickhomeB
  2571.  
  2572. LADDER: _ladder_escapepillar_cloned_escapeback
  2573.  
  2574. LADDER: _ladder_househigh_cloned_cornerwhite
  2575.  
  2576. LADDER: _ladder_houselow_cloned_treeright
  2577.  
  2578. LADDER: _ladder_logpileup_cloned_brickhomeB
  2579.  
  2580. LADDER: _ladder_mansionchoose_cloned_brickhomeB
  2581.  
  2582. LADDER: _ladder_moundhole_cloned_minigunleft
  2583.  
  2584. LADDER: _ladder_parkourattic_cloned_shortesthedge
  2585.  
  2586. LADDER: _ladder_shelfpileleft_cloned_minigunleft
  2587.  
  2588. LADDER: _ladder_shelfpileright_cloned_minigunright
  2589.  
  2590. Survival:
  2591.  
  2592. Clip "_nav_shelvings" blocks Survivors @ setpos_exact 2127 -504 345
  2593.  
  2594. FIX: Point-of-no-return clip Enabled instantly to block Survivalists from boosting out.
  2595.  
  2596. ------------------------------------------------------------------------------------------------------------------------
  2597. ------------------------------------------------------------------------------------------------------------------------
  2598.  
  2599. HARD RAIN - MILLTOWN || c4m1_milltown_a
  2600.  
  2601. All:
  2602.  
  2603. Decal "decals/rollermine_crater" painted @ setpos_exact -5671 6579 225
  2604.  
  2605. Clip "_woodwindow" blocks Survivors @ setpos_exact 4144 -1423 391
  2606.  
  2607. Clip "_permstuck_shruba" blocks Infected @ setpos_exact 3668 -1664 132
  2608.  
  2609. Clip "_permstuck_shrubb" blocks Infected @ setpos_exact 3408 -1760 144
  2610.  
  2611. Clip "_commonhop_safehouse" blocks Survivors @ setpos_exact 3984 -1863 464
  2612.  
  2613. Clip "_booster_burgertankpole" blocks Survivors @ setpos_exact -5800 7496 603
  2614.  
  2615. Clip "_booster_burgertankspin" blocks Survivors @ setpos_exact -5800 7496 915
  2616.  
  2617. Clip "_booster_ginnytop" blocks Survivors @ setpos_exact -5425 6789 385
  2618.  
  2619. Clip "_booster_ginnyjon" blocks Survivors @ setpos_exact -5425 6789 385
  2620.  
  2621. Clip "_booster_gasextend" blocks Survivors @ setpos_exact -4624 7952 284
  2622.  
  2623. Clip "_booster_blueframe" blocks Survivors @ setpos_exact -4641 7618 479
  2624.  
  2625. Clip "_booster_roofwedge" blocks Survivors @ setpos_exact -5711 6528 416
  2626.  
  2627. Clip "_booster_wrongwayup" blocks Survivors @ setpos_exact -4082 7142 608
  2628.  
  2629. Clip "_booster_powerline" blocks Survivors @ setpos_exact -5297 7349 531
  2630.  
  2631. Clip "_booster_clipextend" blocks Survivors @ setpos_exact -6561 6589 912
  2632.  
  2633. Clip "_burgertank_windowsmoother1" blocks Everyone @ setpos_exact -5663 7268 135
  2634.  
  2635. Clip "_burgertank_windowsmoother2" blocks Everyone @ setpos_exact -5798 7505 135
  2636.  
  2637. Clip "_burgertank_windowsmoother3" blocks Everyone @ setpos_exact -6022 7777 135
  2638.  
  2639. trigger_auto_crouch "_duckqol_greenposts1" created @ setpos_exact -2021 5568 98
  2640.  
  2641. trigger_auto_crouch "_duckqol_greenposts2" created @ setpos_exact 1069 6976 224
  2642.  
  2643. trigger_auto_crouch "_duckqol_playground" created @ setpos_exact -1442 6968 119
  2644.  
  2645. PvP:
  2646.  
  2647. Clip "_treehouse_whitefence" blocks Survivors @ setpos_exact 1767 2219 267
  2648.  
  2649. Brush "_losfix_ambulance1" created @ setpos_exact 711 4748 102
  2650.  
  2651. Brush "_losfix_ambulance2" created @ setpos_exact 803 4690 102
  2652.  
  2653. Brush "_losfix_burger_gen" created @ setpos_exact -5448 6765 107
  2654.  
  2655. Brush "_losfix_dumpster" created @ setpos_exact 3550 343 128
  2656.  
  2657. Brush "_losfix_gen1" created @ setpos_exact 241 5987 107
  2658.  
  2659. Brush "_losfix_gen2" created @ setpos_exact 3448 -1345 113
  2660.  
  2661. Brush "_losfix_semia" created @ setpos_exact -4771 7156 113
  2662.  
  2663. Brush "_losfix_semib" created @ setpos_exact -4790 7180 113
  2664.  
  2665. Brush "_losfix_trailer1" created @ setpos_exact -3370 7548 106
  2666.  
  2667. Brush "_losfix_trailer2" created @ setpos_exact -3428 7594 106
  2668.  
  2669. Brush "_losfix_trailer3" created @ setpos_exact -3510 7618 106
  2670.  
  2671. Brush "_losfix_truck" created @ setpos_exact 3217 -1376 114
  2672.  
  2673. Brush "_losfix_truck_jump" created @ setpos_exact 2949 2885 108
  2674.  
  2675. Clip "_ladder_dumpsterhouse_clip" blocks Everyone @ setpos_exact 1638 4032 217
  2676.  
  2677. Clip "_ladder_safehousetall_clip" blocks Infected @ setpos_exact 3725 -1537 101
  2678.  
  2679. Clip "_ladder_sweetrelief_clip" blocks Everyone @ setpos_exact -5746 6595 96
  2680.  
  2681. Clip "_ladder_yellowhousetree_topdenial" blocks Infected @ setpos_exact 2244 3123 378
  2682.  
  2683. Clip "_safehousehedge_blocker" blocks Infected @ setpos_exact 4401 -2207 438
  2684.  
  2685. LADDER: _ladder_autosalvagefront_cloned_playgroundroof
  2686.  
  2687. LADDER: _ladder_classyjimboblue_cloned_garagesalehouse
  2688.  
  2689. LADDER: _ladder_cornerhomeplants_cloned_garagesalehome
  2690.  
  2691. LADDER: _ladder_cornerhometankfight_cloned_treehousefence
  2692.  
  2693. LADDER: _ladder_cullingsub_cloned_cullingbuddy
  2694.  
  2695. LADDER: _ladder_dumpsterhouse_cloned_alarmtrailer
  2696.  
  2697. LADDER: _ladder_finalhouse_cloned_yellowhouse
  2698.  
  2699. LADDER: _ladder_gaselecbox_cloned_autosalvageback
  2700.  
  2701. LADDER: _ladder_grocerypillar_cloned_garagesalehouse
  2702.  
  2703. LADDER: _ladder_mobilepickup_cloned_alarmtrailer
  2704.  
  2705. LADDER: _ladder_safehousefenceback_cloned_cullingbuddy
  2706.  
  2707. LADDER: _ladder_safehousetall_cloned_tallbuildingleft
  2708.  
  2709. LADDER: _ladder_sweetrelief_cloned_autosalvageback
  2710.  
  2711. LADDER: _ladder_tallbuildingright_cloned_tallbuildingleft
  2712.  
  2713. LADDER: _ladder_trailerqol_cloned_alarmtrailer
  2714.  
  2715. LADDER: _ladder_vinehouseqol_cloned_alarmtrailer
  2716.  
  2717. LADDER: _ladder_woodhouseqol_cloned_alarmtrailer
  2718.  
  2719. LADDER: _ladder_yellowhousetree_cloned_playgroundgutter
  2720.  
  2721. Static prop "_ladder_finalhouse_pipe" W/ "models/props_downtown/gutter_downspout_straight_160_02.mdl" @ setpos_exact 3910 71 248
  2722.  
  2723. Static prop "_ladder_grocerypillar_bust" W/ "models/props_interiors/concretepillar01_dm_base.mdl" @ setpos_exact -5680 6576 160.2
  2724.  
  2725. Static prop "_ladder_grocerypillar_prop" W/ "models/props_interiors/concretepillar01.mdl" @ setpos_exact -5680 6128 163.8
  2726.  
  2727. Static prop "_ladder_safehouse_pipe" W/ "models/props_pipes/PipeSet02d_512_001a.mdl" @ setpos_exact 3726 -1560 160
  2728.  
  2729. Survival:
  2730.  
  2731. Clip "_survivalbig_skyboxcap" blocks Survivors @ setpos_exact -5802 7499 1248
  2732.  
  2733. ------------------------------------------------------------------------------------------------------------------------
  2734.  
  2735. HARD RAIN - SUGAR MILL || c4m2_sugarmill_a
  2736.  
  2737. All:
  2738.  
  2739. Clip "_commonhop_roadclosed" blocks Survivors @ setpos_exact 3231 -3009 257
  2740.  
  2741. Clip "_vent_roofa" blocks Survivors @ setpos_exact 3699 -3727 476
  2742.  
  2743. Clip "_vent_roofb" blocks Survivors @ setpos_exact 3127 -3635 502
  2744.  
  2745. Clip "_permstuck_silos" blocks Everyone @ setpos_exact 2696 -6088 435
  2746.  
  2747. Clip "_canefield_coneroof_m2only" blocks Survivors @ setpos_exact 72 -11887 573
  2748.  
  2749. Clip "_canefield_conewoof_m2only" blocks Survivors @ setpos_exact -45 -10241 319
  2750.  
  2751. Clip "_commonhop_dualstacks" blocks Survivors @ setpos_exact 264 -4866 498
  2752.  
  2753. Clip "_permstuck_longfencea" blocks Survivors @ setpos_exact 3996 -4978 506
  2754.  
  2755. Clip "_permstuck_longfenceb" blocks Survivors @ setpos_exact 4072 -5214 506
  2756.  
  2757. Clip "_permstuck_longfencec" blocks Survivors @ setpos_exact 4042 -5462 506
  2758.  
  2759. Clip "_permstuck_longfenced" blocks Survivors @ setpos_exact 4010 -5718 506
  2760.  
  2761. Clip "_permstuck_longfencee" blocks Survivors @ setpos_exact 4010 -5978 506
  2762.  
  2763. Clip "_permstuck_longfencef" blocks Survivors @ setpos_exact 3962 -6216 506
  2764.  
  2765. Clip "_permstuck_quadtank" blocks Everyone @ setpos_exact 1638 -5280 292
  2766.  
  2767. Clip "_shortcut_elevator_m2only" blocks Survivors @ setpos_exact -1477 -9605 114
  2768.  
  2769. Clip "_commonhop_ducatelroof" blocks Survivors @ setpos_exact 3808 -3324 407
  2770.  
  2771. Clip "_permstuck_cornerbush" blocks Everyone @ setpos_exact 3117 -1842 110
  2772.  
  2773. Clip "_cliprework_clipextenda" blocks Survivors @ setpos_exact 1306 -6648 735
  2774.  
  2775. Clip "_cliprework_clipextendb" blocks Survivors @ setpos_exact -703 -8512 1232
  2776.  
  2777. Clip "_cliprework_millsilos" blocks Survivors @ setpos_exact 2782 -4349 937
  2778.  
  2779. Clip "_cliprework_millwheel" blocks Survivors @ setpos_exact 1761 -5826 660
  2780.  
  2781. Clip "_cliprework_plywoodlip" blocks Survivors @ setpos_exact -1743 -9483 624
  2782.  
  2783. Clip "_cliprework_gasstation" blocks Survivors @ setpos_exact -899 -13512 432
  2784.  
  2785. Clip "_nav_silo_witch1" blocks Survivors @ setpos_exact 2793 -5911 284
  2786.  
  2787. Clip "_nav_silo_witch2" blocks Survivors @ setpos_exact 2695 -5854 284
  2788.  
  2789. Clip "_nav_silo_witch3" blocks Survivors @ setpos_exact 2596 -5911 284
  2790.  
  2791. Clip "_nav_silo_witch4" blocks Survivors @ setpos_exact 2596 -5513 284
  2792.  
  2793. Clip "_nav_silo_witch5" blocks Survivors @ setpos_exact 2698 -5570 284
  2794.  
  2795. Clip "_nav_silo_witch6" blocks Survivors @ setpos_exact 2796 -5513 284
  2796.  
  2797. Clip "_nav_rubblewalla" blocks Survivors @ setpos_exact -1152 -8556 712
  2798.  
  2799. Clip "_nav_rubblewallb" blocks Survivors @ setpos_exact -1152 -9457 712
  2800.  
  2801. Clip "_cliprework_thimbleroof" blocks Survivors @ setpos_exact 288 -7936 281
  2802.  
  2803. Clip "_clipextend_thimblestack" blocks Survivors @ setpos_exact 394 -7429 440
  2804.  
  2805. Clip "_clipextend_generator" blocks Survivors @ setpos_exact -769 -7654 687
  2806.  
  2807. Clip "_clipextend_treecluster" blocks Survivors @ setpos_exact 114 -6111 576
  2808.  
  2809. Clip "_rubble_smoother1" blocks Everyone @ setpos_exact 2239 -5093 121
  2810.  
  2811. Clip "_rubble_smoother2" blocks Everyone @ setpos_exact 2176 -4926 98
  2812.  
  2813. Clip "_rubble_smoother3" blocks Everyone @ setpos_exact 2055 -4931 97
  2814.  
  2815. Clip "_rubble_smoother4" blocks Everyone @ setpos_exact 1966 -5174 99
  2816.  
  2817. KILL: Insta-kill triggers to prevent elevator skip deleted on inner-button press.
  2818.  
  2819. Insta-kill "_instakill_elevatora" Survivor @ setpos_exact -1204 -9549 394
  2820.  
  2821. Insta-kill "_instakill_elevatorb" Survivor @ setpos_exact -2044 -9549 394
  2822.  
  2823. Clip "_ladderqol_millladder" blocks Everyone @ setpos_exact 1392 -5564 228
  2824.  
  2825. Ladder found @ "1454 -5565.5 292.25" and shifted w/ offset @ "0 2 0"
  2826.  
  2827. PvP:
  2828.  
  2829. Clip "_truck_fence1" blocks Survivors @ setpos_exact 4292 -2990 1641.5
  2830.  
  2831. Clip "_truck_fence2" blocks Survivors @ setpos_exact 4388 -2865 1642
  2832.  
  2833. Brush "_losfix_gas_truck" created @ setpos_exact -572 -13262.9 133
  2834.  
  2835. Brush "_losfix_gen" created @ setpos_exact -1390 -13156 125
  2836.  
  2837. Brush "_losfix_trailer1" created @ setpos_exact 1219 -4171 120
  2838.  
  2839. Brush "_losfix_trailer2" created @ setpos_exact 1149 -4253 116
  2840.  
  2841. Brush "_losfix_trailer3" created @ setpos_exact 1074 -4342 116
  2842.  
  2843. Brush "_losfix_truck" created @ setpos_exact 4106 -2935 115
  2844.  
  2845. Clip "_ladder_parkourouthouse_clip" blocks Infected @ setpos_exact 1017 -4471 200
  2846.  
  2847. LADDER: _ladder_ducatelelecbox_cloned_ducateldumpsters
  2848.  
  2849. LADDER: _ladder_ducatelroofl_cloned_brokenlocker
  2850.  
  2851. LADDER: _ladder_ducatelroofr_cloned_brokenlocker
  2852.  
  2853. LADDER: _ladder_grindergirder_cloned_bricksemitrailer
  2854.  
  2855. LADDER: _ladder_jaggedchainlinkback1_cloned_stacksfenceback
  2856.  
  2857. LADDER: _ladder_jaggedchainlinkback2_cloned_stacksfenceback
  2858.  
  2859. LADDER: _ladder_jaggedchainlinkfront_cloned_stacksfenceback
  2860.  
  2861. LADDER: _ladder_parkourouthouse_cloned_rubbleshortpipe
  2862.  
  2863. LADDER: _ladder_parkoursiloleft_cloned_marshtrailer
  2864.  
  2865. LADDER: _ladder_parkoursiloright_cloned_marshtrailer
  2866.  
  2867. LADDER: _ladder_pipeyardsemi_cloned_millgrinder
  2868.  
  2869. LADDER: _ladder_saferoofpipe_cloned_bricksemitrailer
  2870.  
  2871. LADDER: _ladder_siloplatform_cloned_grinderwheel
  2872.  
  2873. LADDER: _ladder_silosemirearleft_cloned_millgrinder
  2874.  
  2875. LADDER: _ladder_silosemirearright_cloned_millgrinder
  2876.  
  2877. LADDER: _ladder_stacksfencefront_cloned_stacksfenceback
  2878.  
  2879. LADDER: _ladder_talleventpillar1_cloned_talleventpipe
  2880.  
  2881. LADDER: _ladder_talleventpillar2_cloned_talleventpipe
  2882.  
  2883. LADDER: _ladder_tallspoolsroofleft_cloned_bigwindowspipe
  2884.  
  2885. LADDER: _ladder_tallspoolsroofright_cloned_bigwindowspipe
  2886.  
  2887. LADDER: _ladder_tallvinereturn_cloned_brokenlocker
  2888.  
  2889. LADDER: _ladder_tankescape_cloned_bricksemitrailer
  2890.  
  2891. LADDER: _ladder_tankreturn_cloned_bricksemitrailer
  2892.  
  2893. LADDER: _ladder_thimblesemi_cloned_millgrinder
  2894.  
  2895. LADDER: _ladder_truckfencereturn_cloned_stacksfenceback
  2896.  
  2897. Static prop "_ladder_saferoofpipe_pipe" W/ "models/props_mill/PipeSet08d_512_001a.mdl" @ setpos_exact 3466 -1891 158
  2898.  
  2899. Ladder found @ "1143.5 -5515.5 226" and shifted w/ offset @ "0 5 0"
  2900.  
  2901. Survival:
  2902.  
  2903. Clip "_survival_construct" blocks Survivors @ setpos_exact -702 -8439 624
  2904.  
  2905. Clip "_survival_extendpipe" blocks Survivors @ setpos_exact -703 -8229 511
  2906.  
  2907. Clip "_nav_semitrailer" blocks Survivors @ setpos_exact 70 -8187 261
  2908.  
  2909. Clip "_nav_jumptotree" blocks Survivors @ setpos_exact -1250 -7925 331
  2910.  
  2911. ------------------------------------------------------------------------------------------------------------------------
  2912.  
  2913. HARD RAIN - MILL ESCAPE || c4m3_sugarmill_b
  2914.  
  2915. All:
  2916.  
  2917. Clip "_commonhop_roadclosed" blocks Survivors @ setpos_exact 3231 -3009 257
  2918.  
  2919. Clip "_vent_roofa" blocks Survivors @ setpos_exact 3699 -3727 476
  2920.  
  2921. Clip "_vent_roofb" blocks Survivors @ setpos_exact 3127 -3635 502
  2922.  
  2923. Clip "_permstuck_silos" blocks Everyone @ setpos_exact 2696 -6088 435
  2924.  
  2925. Clip "_commonhop_dualstacks" blocks Survivors @ setpos_exact 264 -4866 498
  2926.  
  2927. Clip "_permstuck_longfencea" blocks Survivors @ setpos_exact 3996 -4978 506
  2928.  
  2929. Clip "_permstuck_longfenceb" blocks Survivors @ setpos_exact 4072 -5214 506
  2930.  
  2931. Clip "_permstuck_longfencec" blocks Survivors @ setpos_exact 4042 -5462 506
  2932.  
  2933. Clip "_permstuck_longfenced" blocks Survivors @ setpos_exact 4010 -5718 506
  2934.  
  2935. Clip "_permstuck_longfencee" blocks Survivors @ setpos_exact 4010 -5978 506
  2936.  
  2937. Clip "_permstuck_longfencef" blocks Survivors @ setpos_exact 3962 -6216 506
  2938.  
  2939. Clip "_permstuck_quadtank" blocks Everyone @ setpos_exact 1638 -5280 292
  2940.  
  2941. Clip "_commonhop_ducatelroof" blocks Survivors @ setpos_exact 3808 -3324 407
  2942.  
  2943. Clip "_nav_cornerledge_m3only" blocks Survivors @ setpos_exact -357 -8509 624
  2944.  
  2945. Clip "_permstuck_cornerbush" blocks Everyone @ setpos_exact 3117 -1842 110
  2946.  
  2947. Clip "_cliprework_clipextenda" blocks Survivors @ setpos_exact 1306 -6648 735
  2948.  
  2949. Clip "_cliprework_clipextendb" blocks Survivors @ setpos_exact -703 -8512 1232
  2950.  
  2951. Clip "_cliprework_millsilos" blocks Survivors @ setpos_exact 2782 -4349 937
  2952.  
  2953. Clip "_cliprework_millwheel" blocks Survivors @ setpos_exact 1761 -5826 660
  2954.  
  2955. Clip "_cliprework_plywoodlip" blocks Survivors @ setpos_exact -1743 -9483 624
  2956.  
  2957. Clip "_cliprework_gasstation" blocks Survivors @ setpos_exact -899 -13512 432
  2958.  
  2959. Clip "_nav_silo_witch1" blocks Survivors @ setpos_exact 2793 -5911 284
  2960.  
  2961. Clip "_nav_silo_witch2" blocks Survivors @ setpos_exact 2695 -5854 284
  2962.  
  2963. Clip "_nav_silo_witch3" blocks Survivors @ setpos_exact 2596 -5911 284
  2964.  
  2965. Clip "_nav_silo_witch4" blocks Survivors @ setpos_exact 2596 -5513 284
  2966.  
  2967. Clip "_nav_silo_witch5" blocks Survivors @ setpos_exact 2698 -5570 284
  2968.  
  2969. Clip "_nav_silo_witch6" blocks Survivors @ setpos_exact 2796 -5513 284
  2970.  
  2971. Clip "_nav_rubblewalla" blocks Survivors @ setpos_exact -1152 -8556 712
  2972.  
  2973. Clip "_nav_rubblewallb" blocks Survivors @ setpos_exact -1152 -9457 712
  2974.  
  2975. Clip "_cliprework_thimbleroof" blocks Survivors @ setpos_exact 288 -7936 281
  2976.  
  2977. Clip "_clipextend_thimblestack" blocks Survivors @ setpos_exact 394 -7429 440
  2978.  
  2979. Clip "_clipextend_generator" blocks Survivors @ setpos_exact -769 -7654 687
  2980.  
  2981. Clip "_clipextend_treecluster" blocks Survivors @ setpos_exact 114 -6111 576
  2982.  
  2983. Clip "_rubble_smoother1" blocks Everyone @ setpos_exact 2239 -5093 121
  2984.  
  2985. Clip "_rubble_smoother2" blocks Everyone @ setpos_exact 2176 -4926 98
  2986.  
  2987. Clip "_rubble_smoother3" blocks Everyone @ setpos_exact 2055 -4931 97
  2988.  
  2989. Clip "_rubble_smoother4" blocks Everyone @ setpos_exact 1966 -5174 99
  2990.  
  2991. Clip "_ladderqol_millladder" blocks Everyone @ setpos_exact 1392 -5564 228
  2992.  
  2993. Ladder found @ "1454 -5565.5 292.25" and shifted w/ offset @ "0 2 0"
  2994.  
  2995. PvP:
  2996.  
  2997. Clip "_truck_fence1" blocks Survivors @ setpos_exact 4292 -2990 1641.5
  2998.  
  2999. Clip "_truck_fence2" blocks Survivors @ setpos_exact 4388 -2865 1642
  3000.  
  3001. Brush "_losfix_gas_truck" created @ setpos_exact -572 -13262.9 133
  3002.  
  3003. Brush "_losfix_gen" created @ setpos_exact -1390 -13156 125
  3004.  
  3005. Brush "_losfix_trailer1" created @ setpos_exact 1219 -4171 120
  3006.  
  3007. Brush "_losfix_trailer2" created @ setpos_exact 1149 -4253 116
  3008.  
  3009. Brush "_losfix_trailer3" created @ setpos_exact 1074 -4342 116
  3010.  
  3011. Brush "_losfix_truck" created @ setpos_exact 4106 -2935 115
  3012.  
  3013. LADDER: _ladder_ducatelelecbox_cloned_ducateldumpsters
  3014.  
  3015. LADDER: _ladder_ducatelroofl_cloned_brokenlocker
  3016.  
  3017. LADDER: _ladder_ducatelroofr_cloned_brokenlocker
  3018.  
  3019. LADDER: _ladder_grindergirder_cloned_bricksemitrailer
  3020.  
  3021. LADDER: _ladder_jaggedchainlinkback1_cloned_stacksfenceback
  3022.  
  3023. LADDER: _ladder_jaggedchainlinkback2_cloned_stacksfenceback
  3024.  
  3025. LADDER: _ladder_jaggedchainlinkfront_cloned_stacksfenceback
  3026.  
  3027. LADDER: _ladder_parkourouthouse_cloned_rubbleshortpipe
  3028.  
  3029. LADDER: _ladder_parkoursiloleft_cloned_marshtrailer
  3030.  
  3031. LADDER: _ladder_parkoursiloright_cloned_marshtrailer
  3032.  
  3033. LADDER: _ladder_pipeyardsemi_cloned_millgrinder
  3034.  
  3035. LADDER: _ladder_saferoofpipe_cloned_bricksemitrailer
  3036.  
  3037. LADDER: _ladder_siloplatform_cloned_grinderwheel
  3038.  
  3039. LADDER: _ladder_silosemirearleft_cloned_millgrinder
  3040.  
  3041. LADDER: _ladder_silosemirearright_cloned_millgrinder
  3042.  
  3043. LADDER: _ladder_stacksfencefront_cloned_stacksfenceback
  3044.  
  3045. LADDER: _ladder_talleventpillar1_cloned_talleventpipe
  3046.  
  3047. LADDER: _ladder_talleventpillar2_cloned_talleventpipe
  3048.  
  3049. LADDER: _ladder_tallspoolsroofleft_cloned_bigwindowspipe
  3050.  
  3051. LADDER: _ladder_tallspoolsroofright_cloned_bigwindowspipe
  3052.  
  3053. LADDER: _ladder_tallvinereturn_cloned_brokenlocker
  3054.  
  3055. LADDER: _ladder_tankescape_cloned_bricksemitrailer
  3056.  
  3057. LADDER: _ladder_tankreturn_cloned_bricksemitrailer
  3058.  
  3059. LADDER: _ladder_thimblesemi_cloned_millgrinder
  3060.  
  3061. LADDER: _ladder_truckfencereturn_cloned_stacksfenceback
  3062.  
  3063. Static prop "_ladder_saferoofpipe_pipe" W/ "models/props_mill/PipeSet08d_512_001a.mdl" @ setpos_exact 3466 -1891 158
  3064.  
  3065. Ladder found @ "1143.5 -5515.5 226" and shifted w/ offset @ "0 5 0"
  3066.  
  3067. ------------------------------------------------------------------------------------------------------------------------
  3068.  
  3069. HARD RAIN - RETURN TO TOWN || c4m4_milltown_b
  3070.  
  3071. All:
  3072.  
  3073. Clip "_woodwindow" blocks Survivors @ setpos_exact 4144 -1423 391
  3074.  
  3075. Clip "_permstuck_shruba" blocks Infected @ setpos_exact 3668 -1664 132
  3076.  
  3077. Clip "_permstuck_shrubb" blocks Infected @ setpos_exact 3408 -1760 144
  3078.  
  3079. Clip "_commonhop_safehouse" blocks Survivors @ setpos_exact 3984 -1863 464
  3080.  
  3081. trigger_auto_crouch "_duckqol_greenposts1" created @ setpos_exact -2021 5568 98
  3082.  
  3083. trigger_auto_crouch "_duckqol_greenposts2" created @ setpos_exact 1069 6976 224
  3084.  
  3085. trigger_auto_crouch "_duckqol_playground" created @ setpos_exact -1442 6968 119
  3086.  
  3087. Clip "_permstuck_highuptree" blocks Everyone @ setpos_exact -3312 7326 315
  3088.  
  3089. PvP:
  3090.  
  3091. Clip "_treehouse_whitefence" blocks Survivors @ setpos_exact 1767 2219 267
  3092.  
  3093. Brush "_losfix_ambulance1" created @ setpos_exact 711 4748 102
  3094.  
  3095. Brush "_losfix_ambulance2" created @ setpos_exact 803 4690 102
  3096.  
  3097. Brush "_losfix_dumpster" created @ setpos_exact 3550 343 128
  3098.  
  3099. Brush "_losfix_gen1" created @ setpos_exact 241 5987 107
  3100.  
  3101. Brush "_losfix_gen2" created @ setpos_exact 3448 -1345 113
  3102.  
  3103. Brush "_losfix_truck" created @ setpos_exact 3217 -1376 114
  3104.  
  3105. Brush "_losfix_truck_jump" created @ setpos_exact 2949 2885 108
  3106.  
  3107. Clip "_ladder_dumpsterhouse_clip" blocks Everyone @ setpos_exact 1638 4032 217
  3108.  
  3109. Clip "_ladder_yellowhousetree_topdenial" blocks Infected @ setpos_exact 2244 3123 378
  3110.  
  3111. Clip "_ladder_safehousetall_clip" blocks Infected @ setpos_exact 3725 -1537 101
  3112.  
  3113. Clip "_safehousehedge_blocker" blocks Infected @ setpos_exact 4401 -2207 438
  3114.  
  3115. LADDER: _ladder_cornerhomeplants_cloned_garagesalehome
  3116.  
  3117. LADDER: _ladder_cornerhometankfight_cloned_treehousefence
  3118.  
  3119. LADDER: _ladder_dumpsterhouse_cloned_alarmtrailer
  3120.  
  3121. LADDER: _ladder_finalhouse_cloned_yellowhouse
  3122.  
  3123. LADDER: _ladder_mobilepickup_cloned_alarmtrailer
  3124.  
  3125. LADDER: _ladder_safehousefenceback_cloned_cullingbuddy
  3126.  
  3127. LADDER: _ladder_safehousetall_cloned_tallbuildingleft
  3128.  
  3129. LADDER: _ladder_tallbuildingright_cloned_tallbuildingleft
  3130.  
  3131. LADDER: _ladder_trailerqol_cloned_alarmtrailer
  3132.  
  3133. LADDER: _ladder_vinehouseqol_cloned_alarmtrailer
  3134.  
  3135. LADDER: _ladder_woodhouseqol_cloned_alarmtrailer
  3136.  
  3137. LADDER: _ladder_yellowhousetree_cloned_playgroundgutter
  3138.  
  3139. Static prop "_ladder_finalhouse_pipe" W/ "models/props_downtown/gutter_downspout_straight_160_02.mdl" @ setpos_exact 3910 71 248
  3140.  
  3141. Static prop "_ladder_safehouse_pipe" W/ "models/props_pipes/PipeSet02d_512_001a.mdl" @ setpos_exact 3726 -1560 160
  3142.  
  3143. ------------------------------------------------------------------------------------------------------------------------
  3144.  
  3145. HARD RAIN - TOWN ESCAPE || c4m5_milltown_escape
  3146.  
  3147. All:
  3148.  
  3149. Decal "decals/rollermine_crater" painted @ setpos_exact -5671 6579 225
  3150.  
  3151. Clip "_booster_burgertankpole" blocks Survivors @ setpos_exact -5800 7496 603
  3152.  
  3153. Clip "_booster_burgertankspin" blocks Survivors @ setpos_exact -5800 7496 915
  3154.  
  3155. Clip "_permstuck_highuptree" blocks Everyone @ setpos_exact -3312 7326 315
  3156.  
  3157. Clip "_booster_ginnytop" blocks Survivors @ setpos_exact -5425 6789 385
  3158.  
  3159. Clip "_booster_ginnyjon" blocks Survivors @ setpos_exact -5425 6789 385
  3160.  
  3161. Clip "_booster_gasextend" blocks Survivors @ setpos_exact -4624 7952 284
  3162.  
  3163. Clip "_booster_blueframe" blocks Survivors @ setpos_exact -4641 7618 479
  3164.  
  3165. Clip "_booster_roofwedge" blocks Survivors @ setpos_exact -5711 6528 416
  3166.  
  3167. Clip "_booster_wrongwayup" blocks Survivors @ setpos_exact -4082 7142 608
  3168.  
  3169. Clip "_booster_powerline" blocks Survivors @ setpos_exact -5297 7349 531
  3170.  
  3171. Clip "_booster_clipextend" blocks Survivors @ setpos_exact -6561 6589 912
  3172.  
  3173. Clip "_burgertank_windowsmoother1" blocks Everyone @ setpos_exact -5663 7268 135
  3174.  
  3175. Clip "_burgertank_windowsmoother2" blocks Everyone @ setpos_exact -5798 7505 135
  3176.  
  3177. Clip "_burgertank_windowsmoother3" blocks Everyone @ setpos_exact -6022 7777 135
  3178.  
  3179. Clip "_dockm5only_smoother" blocks Everyone @ setpos_exact -7039 7701 91
  3180.  
  3181. LOGIC: Point-of-no-return clip will be Enabled when finale is started.
  3182.  
  3183. Clip "_point_of_no_return" blocks Survivors initially disabled @ setpos_exact -4077 7139 125
  3184.  
  3185. PvP:
  3186.  
  3187. Brush "_losfix_burger_gen" created @ setpos_exact -5448 6765 107
  3188.  
  3189. Brush "_losfix_dock_truck" created @ setpos_exact -6538 7550 105
  3190.  
  3191. Brush "_losfix_semia" created @ setpos_exact -4771 7156 113
  3192.  
  3193. Brush "_losfix_semib" created @ setpos_exact -4790 7180 113
  3194.  
  3195. Clip "_burgertank_windowsmoother1" blocks Everyone @ setpos_exact -5663 7268 135
  3196.  
  3197. Clip "_burgertank_windowsmoother2" blocks Everyone @ setpos_exact -5798 7505 135
  3198.  
  3199. Clip "_burgertank_windowsmoother3" blocks Everyone @ setpos_exact -6022 7777 135
  3200.  
  3201. Clip "_dockm5only_smoother" blocks Everyone @ setpos_exact -7039 7701 91
  3202.  
  3203. Clip "_ladder_sweetrelief_clip" blocks Everyone @ setpos_exact -5746 6595 96
  3204.  
  3205. LADDER: _ladder_autosalvagefront_cloned_playgroundroof
  3206.  
  3207. LADDER: _ladder_classyjimboblue_cloned_garagesalehouse
  3208.  
  3209. LADDER: _ladder_cullingsub_cloned_cullingbuddy
  3210.  
  3211. LADDER: _ladder_gaselecbox_cloned_autosalvageback
  3212.  
  3213. LADDER: _ladder_grocerypillar_cloned_garagesalehouse
  3214.  
  3215. LADDER: _ladder_sweetrelief_cloned_autosalvageback
  3216.  
  3217. Static prop "_ladder_grocerypillar_bust" W/ "models/props_interiors/concretepillar01_dm_base.mdl" @ setpos_exact -5680 6576 160.2
  3218.  
  3219. Static prop "_ladder_grocerypillar_prop" W/ "models/props_interiors/concretepillar01.mdl" @ setpos_exact -5680 6128 163.8
  3220.  
  3221. ------------------------------------------------------------------------------------------------------------------------
  3222. ------------------------------------------------------------------------------------------------------------------------
  3223.  
  3224. THE PARISH - WATERFRONT || c5m1_waterfront
  3225.  
  3226. All:
  3227.  
  3228. Clip "_vuln_balconya" blocks Survivors @ setpos_exact -720 -128 -140
  3229.  
  3230. Clip "_vuln_balconyb" blocks Survivors @ setpos_exact -1136 -512 196
  3231.  
  3232. Clip "_vuln_balconyc" blocks Survivors @ setpos_exact -737 -2048 -208
  3233.  
  3234. Clip "_vuln_balconyd" blocks Survivors @ setpos_exact -687 -2304 -176
  3235.  
  3236. Clip "_skybox_shielda" blocks Infected @ setpos_exact -272 -2055 50
  3237.  
  3238. Clip "_skybox_shieldd" blocks Infected @ setpos_exact -3948 257 130
  3239.  
  3240. Clip "_skybox_shieldb" blocks Infected @ setpos_exact -1543.5 -1855.5 249.6
  3241.  
  3242. Clip "_skybox_shieldc" blocks Infected @ setpos_exact -2971 -1264 125
  3243.  
  3244. Clip "_signhop_awning" blocks Survivors @ setpos_exact -3088 -250 -70.5
  3245.  
  3246. Clip "_cliprework_roofandwindows" blocks Survivors @ setpos_exact -3279 -819 -140.6
  3247.  
  3248. Clip "_nav_jukebox" blocks Survivors @ setpos_exact -1492 -1685 -287
  3249.  
  3250. Clip "_nav_outhouse" blocks Survivors @ setpos_exact -970.4 -2352 -221.7
  3251.  
  3252. Clip "_nav_bienlamps" blocks Survivors @ setpos_exact -664 -835 -184
  3253.  
  3254. Clip "_rampstep_smoother" blocks Everyone @ setpos_exact 776 44 -374
  3255.  
  3256. Clip "_nav_electricalbox" blocks Survivors @ setpos_exact -1392 -252 -374
  3257.  
  3258. Clip "_cliprework_balconya" blocks Survivors @ setpos_exact -2700 -2346 -157
  3259.  
  3260. Clip "_cliprework_balconyb" blocks Survivors @ setpos_exact -2937 -2098 -216
  3261.  
  3262. Clip "_cliprework_huntergap" blocks Infected @ setpos_exact -40 1408 80
  3263.  
  3264. Clip "_permstuck_dropbehindfence" blocks Everyone @ setpos_exact -982 -2793 144
  3265.  
  3266. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact -2446 299 -376
  3267.  
  3268. Clip "_ledgehang_startfenceleft" blocks Survivors @ setpos_exact 589 -142 -251
  3269.  
  3270. Clip "_ledgehang_startfenceright" blocks Survivors @ setpos_exact 599 45 -232
  3271.  
  3272. PvP:
  3273.  
  3274. Clip "_clipgap_fence" blocks Survivors @ setpos_exact -1740 -1284 -134
  3275.  
  3276. Brush "_losfix_bus" created @ setpos_exact -868 -1515 -363
  3277.  
  3278. Brush "_losfix_van" created @ setpos_exact -918 -1852 -365
  3279.  
  3280. Clip "_ladder_endbluehouse_clipleft" blocks Everyone @ setpos_exact -3751 -4 -376
  3281.  
  3282. Clip "_ladder_endbluehouse_clipwall" blocks Everyone @ setpos_exact -3807 208 -376
  3283.  
  3284. Clip "_ladder_endgutterm2mirr_clip" blocks Everyone @ setpos_exact -3196 -1079 -376
  3285.  
  3286. LADDER: _ladder_backpropladder_cloned_waterfrontfence
  3287.  
  3288. LADDER: _ladder_bienville_cloned_brickgutter
  3289.  
  3290. LADDER: _ladder_boothwindow_cloned_whitetablepath
  3291.  
  3292. LADDER: _ladder_endbluehouse_cloned_waterfrontbrick
  3293.  
  3294. LADDER: _ladder_endgutterm2mirr_cloned_telephonegutter
  3295.  
  3296. LADDER: _ladder_kitchenelecbox_cloned_telephonegutter
  3297.  
  3298. LADDER: _ladder_kitchenwindow_cloned_telephonegutter
  3299.  
  3300. LADDER: _ladder_startroofqol_cloned_whitetablepath
  3301.  
  3302. LADDER: _ladder_startwtflongright_cloned_startwtflongleft
  3303.  
  3304. LADDER: _ladder_tankwaterfront_cloned_telephonegutter
  3305.  
  3306. LADDER: _ladder_yellowbarriersroof_cloned_alleygutter
  3307.  
  3308. Static prop "_losblocker_boxes" W/ "models/props/cs_militia/boxes_garage_lower.mdl" @ setpos_exact -26 -1108 -375.742
  3309.  
  3310. Static prop "_propladder_planka" W/ "models/props_highway/plywood_01.mdl" @ setpos_exact -167 -48 -195.766
  3311.  
  3312. Static prop "_propladder_plankb" W/ "models/props_swamp/plank001b_192.mdl" @ setpos_exact -2176 -2538 -320
  3313.  
  3314. Static prop "_ladder_endgutterm2mirr_pipe" W/ "models/props_downtown/gutter_downspout_straight01.mdl" @ setpos_exact -3216 -1056 -89
  3315.  
  3316. Static prop "_ladder_startroofqol_pipe" W/ "models/props_downtown/gutter_downspout_straight01.mdl" @ setpos_exact 580 -308 -222
  3317.  
  3318. Ladder found @ "-2592 -1030 -208" and shifted w/ offset @ "12 -3 0"
  3319.  
  3320. Navmesh modified w/ CHECKPOINT @ setpos_exact -3764 -1224 -344
  3321.  
  3322. PROP: Trashbin near "_ladder_endbluehouse" moved to improve accessibility.
  3323.  
  3324. Deleted ([425] prop_physics) @ setpos_exact -3785 22 -375.624
  3325.  
  3326. Physics prop "_replacement_trashbin" W/ "models/props_street/trashbin01.mdl" @ setpos_exact -3781 118 -376
  3327.  
  3328. ------------------------------------------------------------------------------------------------------------------------
  3329.  
  3330. THE PARISH - PARK || c5m2_park
  3331.  
  3332. All:
  3333.  
  3334. Clip "_ladderqol_event" blocks Infected @ setpos_exact -8446 -5214 -86
  3335.  
  3336. Clip "_skybox_shieldb" blocks Infected @ setpos_exact -2971 -1264 125
  3337.  
  3338. Clip "_skybox_shielda" blocks Infected @ setpos_exact -4014 -1296 68.8
  3339.  
  3340. Clip "_booster_busdepot_extend" blocks Survivors @ setpos_exact -8078 -6407 160
  3341.  
  3342. Clip "_booster_escapegap" blocks Survivors @ setpos_exact -9436 -5212 184
  3343.  
  3344. Clip "_booster_watchtower_extend" blocks Survivors @ setpos_exact -8161 -5821 529
  3345.  
  3346. Clip "_cliprework_parkarchway" blocks Survivors @ setpos_exact -8125 -2207 180
  3347.  
  3348. Clip "_cliprework_anomalous" blocks Survivors @ setpos_exact -9237 -3866 58
  3349.  
  3350. Clip "_ghostgrief_and_stuckwarp" blocks Everyone @ setpos_exact -10562 -4034 -5
  3351.  
  3352. Clip "_nav_electricalbox" blocks Survivors @ setpos_exact -6222 -7610 -153
  3353.  
  3354. Clip "_ladderqol_purpleclip1" blocks Infected @ setpos_exact -9340 -5876 -132
  3355.  
  3356. Clip "_ladderqol_purpleclip2" blocks Infected @ setpos_exact -8096 -5539 -129
  3357.  
  3358. Clip "_ladderqol_purpleclip3" blocks Infected @ setpos_exact -7456 -5539 -129
  3359.  
  3360. Clip "_permstuck_longbarricade" blocks Everyone @ setpos_exact -6390 -8479 -247
  3361.  
  3362. Clip "_cliprework_missingno" blocks Survivors @ setpos_exact -10092 -5520 48
  3363.  
  3364. PvP:
  3365.  
  3366. Tank/Charger chokepoint atomizer created @ setpos_exact -9216 -3264 -248
  3367.  
  3368. Brush "_losfix_bus" created @ setpos_exact -7268 -7479 -244
  3369.  
  3370. Brush "_losfix_fence" created @ setpos_exact -6583 -5678 -252
  3371.  
  3372. Brush "_losfix_gen" created @ setpos_exact -9918 -4878.21 -249
  3373.  
  3374. Brush "_losfix_van" created @ setpos_exact -3360 -1422 -371
  3375.  
  3376. Clip "_ladder_billboard_clip" blocks Infected @ setpos_exact -9158 -6944 154
  3377.  
  3378. Clip "_ladder_deadendbalconies_clip" blocks Infected @ setpos_exact -8576 -4001 -208
  3379.  
  3380. Clip "_ladder_endlightpole_clippole" blocks Everyone @ setpos_exact -8812 -7872 -249
  3381.  
  3382. Clip "_ladder_endlightpole_cliptop" blocks Infected @ setpos_exact -8812 -7871 197
  3383.  
  3384. Clip "_ladder_startorangedrain_clip" blocks Infected @ setpos_exact -3189 -1433 -376
  3385.  
  3386. Clip "_ladderqol_endgutterm1mirr_clip" blocks Everyone @ setpos_exact -3196 -1079 -376
  3387.  
  3388. LADDER: _ladder_archright_cloned_archleft
  3389.  
  3390. LADDER: _ladder_billboardleft_cloned_watchtower
  3391.  
  3392. LADDER: _ladder_billboardright_cloned_watchtower
  3393.  
  3394. LADDER: _ladder_busroofright_cloned_busroofleft
  3395.  
  3396. LADDER: _ladder_deadendbalconies_cloned_busstationphones
  3397.  
  3398. LADDER: _ladder_endbarricadeback_cloned_cedafenceback
  3399.  
  3400. LADDER: _ladder_endbarricadefront_cloned_cedafencefront
  3401.  
  3402. LADDER: _ladder_endlightpoleB_cloned_startdrainladder
  3403.  
  3404. LADDER: _ladder_endlightpoleT_cloned_startdrainladder
  3405.  
  3406. LADDER: _ladder_endroofsignage_cloned_startgutter
  3407.  
  3408. LADDER: _ladder_eventelecbox_cloned_startdrainladder
  3409.  
  3410. LADDER: _ladder_farcorner_cloned_horsehedge
  3411.  
  3412. LADDER: _ladder_finalrunelecbox_cloned_eventgutter
  3413.  
  3414. LADDER: _ladder_gazebo1_cloned_archleft
  3415.  
  3416. LADDER: _ladder_gazebowall_cloned_archleft
  3417.  
  3418. LADDER: _ladder_generatortent_cloned_archleft
  3419.  
  3420. LADDER: _ladder_guardtowerhigh_cloned_cedatrailerfence
  3421.  
  3422. LADDER: _ladder_guardtowerlow_cloned_restrictedbarricade
  3423.  
  3424. LADDER: _ladder_hmmwvawning_cloned_startcopcarfence
  3425.  
  3426. LADDER: _ladder_longempty_cloned_archleft
  3427.  
  3428. LADDER: _ladder_mehacvent_cloned_hedgemazecorner
  3429.  
  3430. LADDER: _ladder_overpasshigh_cloned_cedatrailerfence
  3431.  
  3432. LADDER: _ladder_overpasslow_cloned_watchtowerbags
  3433.  
  3434. LADDER: _ladder_restroomsplatforml_cloned_startcopcarfence
  3435.  
  3436. LADDER: _ladder_restroomsplatformr_cloned_startleftfence
  3437.  
  3438. LADDER: _ladder_startorangedrain_cloned_whitedumpster
  3439.  
  3440. LADDER: _ladder_telephonepoleB_cloned_restrictedbarricade
  3441.  
  3442. LADDER: _ladder_telephonepoleT_cloned_restrictedbarricade
  3443.  
  3444. Static prop "_losblocker_fence" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact -6583 -5743 -247.75
  3445.  
  3446. Static prop "_propladder_planka" W/ "models/props_highway/plywood_02.mdl" @ setpos_exact -4216 -1082 -130
  3447.  
  3448. Static prop "_propladder_plankb" W/ "models/props_swamp/plank001b_192.mdl" @ setpos_exact -3105 -1504 -320
  3449.  
  3450. Static prop "_propladder_plankc" W/ "models/props_highway/plywood_01.mdl" @ setpos_exact -6731 -6212 -80
  3451.  
  3452. Static prop "_propladder_venta" W/ "models/props_rooftop/hotel_rooftop_equip002.mdl" @ setpos_exact -6724 -6753 7.918
  3453.  
  3454. Static prop "_propladder_ventb" W/ "models/props_rooftop/hotel_rooftop_equip002.mdl" @ setpos_exact -6370 -6752 80
  3455.  
  3456. Static prop "_propladder_ventlarge" W/ "models/props_rooftop/vent_large1.mdl" @ setpos_exact -7932.47 -7509.08 88.05
  3457.  
  3458. Static prop "_solidify_awning" W/ "models/props_street/awning_department_store.mdl" @ setpos_exact -6403.3 -5024 -102.145
  3459.  
  3460. Static prop "_guardtower_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -10091 -5792 110
  3461.  
  3462. Static prop "_overpass_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -10162 -2304 80
  3463.  
  3464. Static prop "_overpass_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -9900 -2304 225
  3465.  
  3466. Static prop "_overpass_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -9700 -2304 225
  3467.  
  3468. Static prop "_solidify_flatawningend1" W/ "models/props_street/awning_short.mdl" @ setpos_exact -7785 -8320 -108.921
  3469.  
  3470. Static prop "_solidify_flatawningend2" W/ "models/props_street/awning_short.mdl" @ setpos_exact -8537 -8320 -108.921
  3471.  
  3472. Static prop "_solidify_flatawningmid" W/ "models/props_street/awning_short.mdl" @ setpos_exact -9216 -3712 -78.4492
  3473.  
  3474. Static prop "_yesdraw_billboard_nodraw" W/ "models/props_update/c5m2_billboard_nodraw.mdl" @ setpos_exact -9152 -6938 92
  3475.  
  3476. Ladder found @ "-9260 -5130 -152" and shifted w/ offset @ "0 14 0"
  3477.  
  3478. Survival:
  3479.  
  3480. Clip "_nav_eventsign" blocks Survivors @ setpos_exact -8552 -6310 756
  3481.  
  3482. Ladder found @ "-9260 -5130 -152" and shifted w/ offset @ "0 14 0"
  3483.  
  3484. Scavenge:
  3485.  
  3486. Clip "_safedoor_antighost" blocks Infected @ setpos_exact -3775 -1368 -344
  3487.  
  3488. ------------------------------------------------------------------------------------------------------------------------
  3489.  
  3490. THE PARISH - CEMETERY || c5m3_cemetery
  3491.  
  3492. All:
  3493.  
  3494. Clip "_commonhop_rooftop" blocks Survivors @ setpos_exact 3080 1407 222
  3495.  
  3496. Clip "_sewer_holed" blocks Survivors @ setpos_exact 5212 -112 -116
  3497.  
  3498. Clip "_sewer_holec" blocks Survivors @ setpos_exact 5968 -452 -116
  3499.  
  3500. Clip "_sewer_holeb" blocks Survivors @ setpos_exact 6532 224 -116
  3501.  
  3502. Clip "_sewer_holea" blocks Survivors @ setpos_exact 5848 964 -116
  3503.  
  3504. Clip "_bunnyhop_underfence" blocks Survivors @ setpos_exact 5948 -2330 688
  3505.  
  3506. Clip "_commonhop_overpass" blocks Survivors @ setpos_exact 4896 7744 320
  3507.  
  3508. Clip "_manhole_fencea" blocks Survivors @ setpos_exact 4489 1194 321
  3509.  
  3510. Clip "_manhole_fenceb" blocks Survivors @ setpos_exact 4445 504 320
  3511.  
  3512. Clip "_manhole_fencec" blocks Survivors @ setpos_exact 4437 268 320
  3513.  
  3514. Clip "_manhole_fenced" blocks Survivors @ setpos_exact 4399 33 326
  3515.  
  3516. Clip "_manhole_fencee" blocks Survivors @ setpos_exact 4182 -127 328
  3517.  
  3518. Clip "_ladderqol_overpass" blocks Infected @ setpos_exact 5851 8704 192
  3519.  
  3520. Clip "_stuckwarp_wrongwaya" blocks Infected @ setpos_exact 6275 9035 242
  3521.  
  3522. Clip "_stuckwarp_wrongwayb" blocks Infected @ setpos_exact 6336 8960 242
  3523.  
  3524. Clip "_permstuck_jetstrike" blocks Everyone @ setpos_exact 6233 -2190 453
  3525.  
  3526. Clip "_permstuck_cemetery" blocks Everyone @ setpos_exact 7453 -6553 95
  3527.  
  3528. Clip "_commonhop_endfence" blocks Survivors @ setpos_exact 9152 -9004 380
  3529.  
  3530. Clip "_stuckwarp_staircase" blocks Everyone @ setpos_exact 3504 2668 182
  3531.  
  3532. Clip "_permstuck_dualfence" blocks Survivors @ setpos_exact 3421 733 3.1
  3533.  
  3534. Clip "_cliprework_pinkhouse" blocks Survivors @ setpos_exact 3434 4094 360
  3535.  
  3536. Clip "_cliprework_perchroof" blocks Survivors @ setpos_exact 4856 3040 164
  3537.  
  3538. Clip "_nav_brokenhome_highcorner" blocks Survivors @ setpos_exact 2052 2534 160
  3539.  
  3540. Clip "_nav_opencrypt" blocks Survivors @ setpos_exact 9604 -6659 344
  3541.  
  3542. Clip "_nav_cornertree" blocks Survivors @ setpos_exact 10459 -4981 409
  3543.  
  3544. PvP:
  3545.  
  3546. Clip "_shortcut_vanjump" blocks Survivors @ setpos_exact 4425 5257 28
  3547.  
  3548. Clip "_nav_brokenhome_shortcuta" blocks Survivors @ setpos_exact 2301 958 31
  3549.  
  3550. Clip "_nav_brokenhome_shortcutb" blocks Survivors @ setpos_exact 2302 1290 31
  3551.  
  3552. Brush "_losfix_bridgesemi" created @ setpos_exact 6218 -2306 446
  3553.  
  3554. Brush "_losfix_busdrop" created @ setpos_exact 4304 5208 11
  3555.  
  3556. Brush "_losfix_lot_truck1" created @ setpos_exact 5755 -1088 16
  3557.  
  3558. Brush "_losfix_lot_truck2" created @ setpos_exact 5647 -1434 16
  3559.  
  3560. Brush "_losfix_lot_van1" created @ setpos_exact 6195 261 6
  3561.  
  3562. Brush "_losfix_lot_van2" created @ setpos_exact 5692 484 17
  3563.  
  3564. Brush "_losfix_lot_van3" created @ setpos_exact 6206 -831 7
  3565.  
  3566. Brush "_losfix_mainst_trailer" created @ setpos_exact 4444 3019 10
  3567.  
  3568. Brush "_losfix_mainst_van" created @ setpos_exact 4123 3902 6
  3569.  
  3570. Brush "_losfix_sewer_van" created @ setpos_exact 3924 802 10
  3571.  
  3572. Clip "_barricade_stepcollision1" blocks Infected @ setpos_exact 2656 835 50
  3573.  
  3574. Clip "_barricade_stepcollision2" blocks Infected @ setpos_exact 2973 822 0
  3575.  
  3576. Clip "_burntbuild_collision01" blocks Infected @ setpos_exact 2208 642 242
  3577.  
  3578. Clip "_burntbuild_collision02" blocks Infected @ setpos_exact 2026 642 242
  3579.  
  3580. Clip "_burntbuild_collision03" blocks Infected @ setpos_exact 2210 1042 200
  3581.  
  3582. Clip "_burntbuild_collision04" blocks Infected @ setpos_exact 2123 1046 170
  3583.  
  3584. Clip "_burntbuild_collision05" blocks Infected @ setpos_exact 2028 1042 206
  3585.  
  3586. Clip "_burntbuild_collision06" blocks Infected @ setpos_exact 2210 1258 205
  3587.  
  3588. Clip "_burntbuild_collision07" blocks Infected @ setpos_exact 2116 1254 157
  3589.  
  3590. Clip "_burntbuild_collision08" blocks Infected @ setpos_exact 2028 1258 207
  3591.  
  3592. Clip "_burntbuild_collision09" blocks Infected @ setpos_exact 2250 2021 163
  3593.  
  3594. Clip "_burntbuild_collision10" blocks Infected @ setpos_exact 2337 2084 198
  3595.  
  3596. Clip "_burntbuild_collision11" blocks Infected @ setpos_exact 2244 2083 141
  3597.  
  3598. Clip "_burntbuild_collision12" blocks Infected @ setpos_exact 2155 2084 215
  3599.  
  3600. Clip "_burntbuild_collision13" blocks Infected @ setpos_exact 2243 2710 152
  3601.  
  3602. Clip "_burntbuild_collision14" blocks Infected @ setpos_exact 2337 2799 259
  3603.  
  3604. Clip "_burntbuild_collision15" blocks Infected @ setpos_exact 2243 2796 225
  3605.  
  3606. Clip "_burntbuild_collision16" blocks Infected @ setpos_exact 2155 2799 292
  3607.  
  3608. Clip "_ladder_onewayshedback_clip" blocks Everyone @ setpos_exact 7000 -4026 117
  3609.  
  3610. LADDER: _ladder_1stdumpster1_cloned_stuckfencefront
  3611.  
  3612. LADDER: _ladder_1stdumpster2_cloned_stuckfencefront
  3613.  
  3614. LADDER: _ladder_1stdumpster3_cloned_stuckfenceback
  3615.  
  3616. LADDER: _ladder_2nddumpster1_cloned_stuckfenceback
  3617.  
  3618. LADDER: _ladder_2nddumpster2_cloned_stuckfenceback
  3619.  
  3620. LADDER: _ladder_atticgutterB_cloned_largetrailer
  3621.  
  3622. LADDER: _ladder_atticgutterT_cloned_largetrailer
  3623.  
  3624. LADDER: _ladder_burntbuildleft_cloned_blownwallleft
  3625.  
  3626. LADDER: _ladder_collosaldumpster_cloned_manholeblownwall
  3627.  
  3628. LADDER: _ladder_concreteupper_cloned_startfence
  3629.  
  3630. LADDER: _ladder_dumpsterfence_cloned_startfence
  3631.  
  3632. LADDER: _ladder_elecbox_cloned_largetrailer
  3633.  
  3634. LADDER: _ladder_endfenceback_cloned_lastcrypt
  3635.  
  3636. LADDER: _ladder_endfencefront_cloned_lastcrypt
  3637.  
  3638. LADDER: _ladder_fencecornerleft_cloned_fencebackeastr
  3639.  
  3640. LADDER: _ladder_fencecornerright_cloned_fencebacksouthl
  3641.  
  3642. LADDER: _ladder_firebarrelroofB_cloned_vandropelecbox
  3643.  
  3644. LADDER: _ladder_firebarrelroofT_cloned_vandropelecbox
  3645.  
  3646. LADDER: _ladder_firefence_cloned_mobilehome
  3647.  
  3648. LADDER: _ladder_holefenceback_cloned_firstcrypt
  3649.  
  3650. LADDER: _ladder_holefencefront_cloned_firstcrypt
  3651.  
  3652. LADDER: _ladder_manholechaintran_cloned_manholeblue
  3653.  
  3654. LADDER: _ladder_onewayshedback_cloned_firstcrypt
  3655.  
  3656. LADDER: _ladder_overpassfence_cloned_flamingofence
  3657.  
  3658. LADDER: _ladder_overpassjumpqol_cloned_startfence
  3659.  
  3660. LADDER: _ladder_pinkhouseB_cloned_manholeblownwall
  3661.  
  3662. LADDER: _ladder_pinkhouseT_cloned_manholeblownwall
  3663.  
  3664. LADDER: _ladder_sewerhole1_cloned_flamingofence
  3665.  
  3666. LADDER: _ladder_sewerhole2_cloned_flamingofence
  3667.  
  3668. LADDER: _ladder_sewerhole3_cloned_flamingofence
  3669.  
  3670. LADDER: _ladder_sewerhole4_cloned_flamingofence
  3671.  
  3672. LADDER: _ladder_sewerhole5_cloned_flamingofence
  3673.  
  3674. LADDER: _ladder_sewerhole6_cloned_flamingofence
  3675.  
  3676. LADDER: _ladder_sewerhole7_cloned_flamingofence
  3677.  
  3678. LADDER: _ladder_tankconcretewallB_cloned_semionewaytall
  3679.  
  3680. LADDER: _ladder_tankconcretewallT_cloned_semionewaytall
  3681.  
  3682. LADDER: _ladder_tankfenceback_cloned_firstcrypt
  3683.  
  3684. LADDER: _ladder_tankfencefront_cloned_firstcrypt
  3685.  
  3686. LADDER: _ladder_thelastgutter_cloned_manholeblownwall
  3687.  
  3688. Static prop "_losblocker_fencea" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact 4349.7 7071 0
  3689.  
  3690. Static prop "_losblocker_fenceb" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 4349.7 6623 0
  3691.  
  3692. Static prop "_losblocker_fencec" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact 4349.7 6306 0
  3693.  
  3694. Static prop "_losblocker_fenced" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact 4285 6242.3 20
  3695.  
  3696. Static prop "_losblocker_fencee" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 3070 6242.3 20
  3697.  
  3698. Static prop "_losblocker_fencef" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact 2900.26 1884.1 9.25
  3699.  
  3700. Static prop "_losblocker_fenceg" W/ "models/props_urban/fence_cover001_128.mdl" @ setpos_exact 3502 1867 9.2501
  3701.  
  3702. Static prop "_losblocker_hedge" W/ "models/props_foliage/urban_hedge_256_128_high.mdl" @ setpos_exact 3750 6532 -1.73642
  3703.  
  3704. Static prop "_propladder_fencea" W/ "models/props_fortifications/barricade_gate001_64_reference.mdl" @ setpos_exact 4116 6347 26.916
  3705.  
  3706. Static prop "_propladder_fenceb" W/ "models/props_fortifications/barricade_gate001_64_reference.mdl" @ setpos_exact 3121 6347 26.916
  3707.  
  3708. Static prop "_propladder_fencec" W/ "models/props_fortifications/barricade_gate001_64_reference.mdl" @ setpos_exact 4026.17 -194.24 -0.284
  3709.  
  3710. Static prop "_propladder_fenced" W/ "models/props_fortifications/barricade_gate001_64_reference.mdl" @ setpos_exact 4074.17 -194.24 -0.284
  3711.  
  3712. Static prop "_propladder_oildruma" W/ "models/props_urban/oil_drum001.mdl" @ setpos_exact 6828 -3836 108.162
  3713.  
  3714. Static prop "_propladder_oildrumb" W/ "models/props_urban/oil_drum001.mdl" @ setpos_exact 6789 -3845 108.162
  3715.  
  3716. Static prop "_propladder_oildrumc" W/ "models/props_urban/oil_drum001.mdl" @ setpos_exact 6805.38 -3841.81 156.607
  3717.  
  3718. Static prop "_collosaldumpster_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3471 2320 320
  3719.  
  3720. Static prop "_collosaldumpster_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3471 2140 320
  3721.  
  3722. Static prop "_solidify_tankconcretewall_chimney" W/ "models/props_urban/chimney007.mdl" @ setpos_exact 3500.87 5616.91 353.166
  3723.  
  3724. ------------------------------------------------------------------------------------------------------------------------
  3725.  
  3726. THE PARISH - QUARTER || c5m4_quarter
  3727.  
  3728. All:
  3729.  
  3730. Clip "_vuln_balconya" blocks Survivors @ setpos_exact -3542 4573 395
  3731.  
  3732. Clip "_vuln_balconyb" blocks Survivors @ setpos_exact -3360 4688 384
  3733.  
  3734. Clip "_vuln_balconyd" blocks Survivors @ setpos_exact -2814 2912 615
  3735.  
  3736. Clip "_vuln_balconye" blocks Survivors @ setpos_exact -2401 2912 553
  3737.  
  3738. Clip "_vuln_balconyf" blocks Survivors @ setpos_exact -1839 2896 632
  3739.  
  3740. Clip "_vuln_balconyc" blocks Survivors @ setpos_exact -3326 2531 535
  3741.  
  3742. Clip "_commonhop_bench" blocks Survivors @ setpos_exact -2684 2447 545
  3743.  
  3744. Clip "_clip_anomaly" blocks Infected @ setpos_exact -1918 661 503
  3745.  
  3746. Clip "_clipgap_fence" blocks Survivors @ setpos_exact -2216 3200 309
  3747.  
  3748. Clip "_booster_float" blocks Survivors @ setpos_exact -986.4 -395 385
  3749.  
  3750. Clip "_clipextend_afterfloata" blocks Survivors @ setpos_exact -2592 665 312.5
  3751.  
  3752. Clip "_clipextend_garage" blocks Survivors @ setpos_exact -1264 2992 420
  3753.  
  3754. Clip "_clipextend_1ststreet" blocks Survivors @ setpos_exact -368 2887 576
  3755.  
  3756. Clip "_commonhop_electricalbox" blocks Survivors @ setpos_exact -80 1535 400
  3757.  
  3758. Clip "_clipextend_afterfloatb" blocks Survivors @ setpos_exact -2700 222 432
  3759.  
  3760. Clip "_clipextend_2ndstreeta" blocks Survivors @ setpos_exact -2848 -840 384
  3761.  
  3762. Clip "_vuln_balconyg" blocks Survivors @ setpos_exact -2440 -1040 416
  3763.  
  3764. Clip "_clipextend_2ndstreetb" blocks Survivors @ setpos_exact -519 -870 420
  3765.  
  3766. Clip "_clipextend_finalarea" blocks Survivors @ setpos_exact 81 -1075 416
  3767.  
  3768. Clip "_clipextend_endfences" blocks Survivors @ setpos_exact 1700 -2016 430
  3769.  
  3770. Clip "_clipgaps_finalrun" blocks Survivors @ setpos_exact 364 -2743 416
  3771.  
  3772. Clip "_clipgaps_defibtrick" blocks Survivors @ setpos_exact -977 -2658 380
  3773.  
  3774. Clip "_commonhop_fountain" blocks Survivors @ setpos_exact -3360 4288 234
  3775.  
  3776. Clip "_cliprework_rollupdoor" blocks Survivors @ setpos_exact -1670 1687 324
  3777.  
  3778. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact -3828 2709 448
  3779.  
  3780. Clip "_void_cliprework" blocks Survivors @ setpos_exact -224 -1425 456
  3781.  
  3782. Clip "_void_filler" blocks Infected @ setpos_exact -224 -1425 677
  3783.  
  3784. FIX: Total of 13 out of 13 traffic cones need to be made non-solid -- finally we can!
  3785.  
  3786. Un-solidified prop_physics @ setpos_exact -3680.91 2871.53 64.0625
  3787.  
  3788. Un-solidified prop_physics @ setpos_exact -3663.75 2911.72 64.2188
  3789.  
  3790. Un-solidified prop_physics @ setpos_exact -3556.59 2572.31 64.375
  3791.  
  3792. Un-solidified prop_physics @ setpos_exact -1311.44 1487.44 68.5
  3793.  
  3794. Un-solidified prop_physics @ setpos_exact -1047.66 1879.06 66.875
  3795.  
  3796. Un-solidified prop_physics @ setpos_exact -279.063 2693.5 64.9688
  3797.  
  3798. Un-solidified prop_physics @ setpos_exact -367.406 2731.13 65.2813
  3799.  
  3800. Un-solidified prop_physics @ setpos_exact -2801.31 -810.75 64.5313
  3801.  
  3802. Un-solidified prop_physics @ setpos_exact -2710.78 -897.688 64.875
  3803.  
  3804. Un-solidified prop_physics @ setpos_exact -735.906 -872.031 65.2813
  3805.  
  3806. Un-solidified prop_physics @ setpos_exact 154.5 -1279.22 61.8438
  3807.  
  3808. Un-solidified prop_physics @ setpos_exact 392.25 -2515.03 63.0313
  3809.  
  3810. Un-solidified prop_physics @ setpos_exact 171.719 -2529.75 63.875
  3811.  
  3812. Un-solidified ALL props with model: "models/props_fortifications/orange_cone001_reference.mdl"
  3813.  
  3814. PvP:
  3815.  
  3816. Clip "_commonhop_signalbox" blocks Survivors @ setpos_exact -1645 1946 591
  3817.  
  3818. Clip "_commonhop_rollupdoor" blocks Survivors @ setpos_exact -1652 1745 573
  3819.  
  3820. Clip "_commonhop_fountain" blocks Survivors @ setpos_exact -2881 3746 399
  3821.  
  3822. Clip "_clipgap_leftfence" blocks Survivors @ setpos_exact -2976 3452 184
  3823.  
  3824. LOGIC: TMP shortcut fence clip will be deleted when a Survivor exits final building.
  3825.  
  3826. Clip "_shortcut_fence_TMP" blocks Survivors @ setpos_exact -1836 -1212 208
  3827.  
  3828. Brush "_losfix_bus1" created @ setpos_exact -87 2569 76
  3829.  
  3830. Brush "_losfix_bus2" created @ setpos_exact -228 2780 74
  3831.  
  3832. Brush "_losfix_bus3" created @ setpos_exact -176 2703 74
  3833.  
  3834. Brush "_losfix_memefence" created @ setpos_exact -2512 2443 64
  3835.  
  3836. Brush "_losfix_van" created @ setpos_exact -2513 2807 72
  3837.  
  3838. Clip "_ladder_busjazzclub_balconystep" blocks Infected @ setpos_exact -324 2590 218
  3839.  
  3840. Clip "_ladder_billiards_clip" blocks Survivors @ setpos_exact -848 1999.1 316
  3841.  
  3842. Clip "_ladder_billiardsqol_clip" blocks Everyone @ setpos_exact -832 1999.1 218
  3843.  
  3844. Clip "_ladder_endtriplewindow_clip" blocks Infected @ setpos_exact -2 -2304 298
  3845.  
  3846. Clip "_ladder_fountainvinesB_clip" blocks Everyone @ setpos_exact -3200 4158 64
  3847.  
  3848. Clip "_ladder_garagerooftops_clipbot" blocks Infected @ setpos_exact -1346 2958 64
  3849.  
  3850. Clip "_ladder_garagerooftops_cliptop" blocks Infected @ setpos_exact -1346 2974 64
  3851.  
  3852. LADDER: _ladder_balconygutter_cloned_eventacvent
  3853.  
  3854. LADDER: _ladder_billiards_cloned_billiardsdrop
  3855.  
  3856. LADDER: _ladder_busjazzclub_cloned_startwhitefence
  3857.  
  3858. LADDER: _ladder_endsemifront_cloned_endsemiback
  3859.  
  3860. LADDER: _ladder_endtriplewindow_cloned_firstgutterladder
  3861.  
  3862. LADDER: _ladder_floatfarcorner_cloned_floatreartall
  3863.  
  3864. LADDER: _ladder_floatfronttall_cloned_floatreartall
  3865.  
  3866. LADDER: _ladder_fountainvinesB_cloned_firstgutterladder
  3867.  
  3868. LADDER: _ladder_fountainvinesT_cloned_startrightpicket
  3869.  
  3870. LADDER: _ladder_garagerooftops_cloned_startwhitefence
  3871.  
  3872. LADDER: _ladder_laststreetextend_cloned_floatpointyfence
  3873.  
  3874. LADDER: _ladder_poolhallinleft_cloned_poolhalloutright
  3875.  
  3876. LADDER: _ladder_poolhallinright_cloned_poolhalloutleft
  3877.  
  3878. LADDER: _ladder_postfloatlowroof_cloned_eventscaffoldright
  3879.  
  3880. LADDER: _ladder_prefloatalley_cloned_unusedwrongway
  3881.  
  3882. LADDER: _ladder_unusedareain_cloned_onewayvanfence
  3883.  
  3884. ------------------------------------------------------------------------------------------------------------------------
  3885.  
  3886. THE PARISH - BRIDGE || c5m5_bridge
  3887.  
  3888. All:
  3889.  
  3890. Clip "_antiboost_finaleskip" blocks Survivors @ setpos_exact -12017 6306 779
  3891.  
  3892. Clip "_permstuck_semiwheels" blocks Everyone @ setpos_exact 5929 6072 475
  3893.  
  3894. Clip "_bunnyhop_girder" blocks Survivors @ setpos_exact -5528 6568 860
  3895.  
  3896. Clip "_solidify_girderleft" blocks Survivors @ setpos_exact 4544 6600 750
  3897.  
  3898. Clip "_solidify_girderright" blocks Survivors @ setpos_exact 4544 6050 750
  3899.  
  3900. Clip "_endfence_curvejump" blocks Survivors @ setpos_exact 9552 6640 556
  3901.  
  3902. Clip "_endfence_commonhop" blocks Survivors @ setpos_exact 9480 6320 705
  3903.  
  3904. Clip "_bunnyhop_fence" blocks Survivors @ setpos_exact -11827 6526 611
  3905.  
  3906. Clip "_solidify_bridgepier01" blocks Everyone @ setpos_exact -11786 6325 200
  3907.  
  3908. Clip "_solidify_bridgepier03" blocks Everyone @ setpos_exact -9226 6325 200
  3909.  
  3910. Clip "_solidify_bridgepier02" blocks Everyone @ setpos_exact -11274 6325 200
  3911.  
  3912. Clip "_solidify_bridgepier04" blocks Everyone @ setpos_exact -8586 6325 200
  3913.  
  3914. Clip "_solidify_bridgepier05" blocks Everyone @ setpos_exact -7434 6325 200
  3915.  
  3916. Clip "_solidify_bridgepier06" blocks Everyone @ setpos_exact -6154 6325 200
  3917.  
  3918. Clip "_solidify_bridgepier07" blocks Everyone @ setpos_exact -4618 6325 200
  3919.  
  3920. Clip "_solidify_bridgepier08" blocks Everyone @ setpos_exact -3082 6325 200
  3921.  
  3922. Clip "_solidify_bridgepier09" blocks Everyone @ setpos_exact -1546 6325 200
  3923.  
  3924. Clip "_solidify_bridgepier10" blocks Everyone @ setpos_exact -10 6325 200
  3925.  
  3926. Clip "_solidify_bridgepier11" blocks Everyone @ setpos_exact 1526 6325 200
  3927.  
  3928. Clip "_solidify_bridgepier12" blocks Everyone @ setpos_exact 3062 6325 200
  3929.  
  3930. Clip "_solidify_bridgepier13" blocks Everyone @ setpos_exact 3990 6326 200
  3931.  
  3932. Clip "_solidify_bridgepier14" blocks Everyone @ setpos_exact 4599 6326 200
  3933.  
  3934. Clip "_solidify_bridgepier15" blocks Everyone @ setpos_exact 6662 6326 200
  3935.  
  3936. Clip "_solidify_bridgepier16" blocks Everyone @ setpos_exact 7270 6326 200
  3937.  
  3938. Clip "_solidify_bridgepier17" blocks Everyone @ setpos_exact 8694 6326 200
  3939.  
  3940. Clip "_booster_lighta" blocks Survivors @ setpos_exact 8755 5850 978.9
  3941.  
  3942. Clip "_booster_fence" blocks Survivors @ setpos_exact 8422 5899 831
  3943.  
  3944. Clip "_booster_generatora" blocks Survivors @ setpos_exact 8362 5702 753
  3945.  
  3946. Clip "_booster_lightb" blocks Survivors @ setpos_exact 9352 5101 977.9
  3947.  
  3948. Clip "_booster_lightc" blocks Survivors @ setpos_exact 9670 4237 977.9
  3949.  
  3950. Clip "_booster_lightd" blocks Survivors @ setpos_exact 9856 3385 962.9
  3951.  
  3952. Clip "_booster_sign" blocks Survivors @ setpos_exact 9418 3972 798.3
  3953.  
  3954. Clip "_booster_acunit" blocks Survivors @ setpos_exact 8352 1700 474.9
  3955.  
  3956. Clip "_booster_rollupdoor" blocks Survivors @ setpos_exact 8331 1888 346.3
  3957.  
  3958. Clip "_booster_generatorb" blocks Survivors @ setpos_exact 8526 3995 485.8
  3959.  
  3960. Clip "_booster_generatorc" blocks Survivors @ setpos_exact 8245 3460 485.8
  3961.  
  3962. Clip "_booster_tree" blocks Survivors @ setpos_exact 7975 2389 434
  3963.  
  3964. Clip "_cliprework_jeepbean" blocks Survivors @ setpos_exact 8967 6328 790
  3965.  
  3966. Clip "_solidify_stuckwarp1" blocks Survivors @ setpos_exact 4152 6617 729
  3967.  
  3968. Clip "_solidify_stuckwarp2" blocks Survivors @ setpos_exact 4152 6034 729
  3969.  
  3970. Clip "_solidify_stuckwarp3" blocks Survivors @ setpos_exact 4502 6034 729
  3971.  
  3972. Clip "_solidify_stuckwarp4" blocks Survivors @ setpos_exact 4502 6617 729
  3973.  
  3974. Clip "_endrubble_smoother" blocks Everyone @ setpos_exact 8209 6208 456
  3975.  
  3976. Clip "_ramp_smoother" blocks Everyone @ setpos_exact 8041 4102 180
  3977.  
  3978. Clip "_clipextend_endchopper" blocks Survivors @ setpos_exact 7383 3797 1199
  3979.  
  3980. Clip "_solidify_alt_girderleft" blocks Survivors @ setpos_exact 7187 6600 750
  3981.  
  3982. Clip "_solidify_alt_girderright" blocks Survivors @ setpos_exact 7187 6050 750
  3983.  
  3984. Clip "_solidify_alt_stuckwarp1" blocks Survivors @ setpos_exact 6795 6617 729
  3985.  
  3986. Clip "_solidify_alt_stuckwarp2" blocks Survivors @ setpos_exact 6795 6034 729
  3987.  
  3988. Clip "_solidify_alt_stuckwarp3" blocks Survivors @ setpos_exact 7145 6034 729
  3989.  
  3990. Clip "_solidify_alt_stuckwarp4" blocks Survivors @ setpos_exact 7145 6617 729
  3991.  
  3992. PvP:
  3993.  
  3994. LADDER: _ladder_endcedatrailer_cloned_endchainlink
  3995.  
  3996. LADDER: _ladder_endlosfence_cloned_backnodraw
  3997.  
  3998. LADDER: _ladder_finalsidehouse_cloned_finalrungs
  3999.  
  4000. LADDER: _ladder_forconsistencysake_cloned_firstscaffrightback
  4001.  
  4002. LADDER: _ladder_slantedbridgeup_cloned_farendfence
  4003.  
  4004. Static prop "_solidify_finalsidehouse_acunit" W/ "models/props_rooftop/acunit01.mdl" @ setpos_exact 10092.1 4520.26 491
  4005.  
  4006. Static prop "_solidify_finalsidehouse_acvent" W/ "models/props_rooftop/acvent03.mdl" @ setpos_exact 10185.5 4360.08 594
  4007.  
  4008. Ladder found @ "9271.145 4057.18 273.355" and normal changed to "-1 0 0"
  4009.  
  4010. Survival:
  4011.  
  4012. Clip "_survivalbig_skyboxcap" blocks Survivors @ setpos_exact 8074 3332 1536
  4013.  
  4014. Clip "_booster_helipada" blocks Survivors @ setpos_exact 7481 2202 175
  4015.  
  4016. Clip "_booster_helipadb" blocks Survivors @ setpos_exact 5856 4019 176
  4017.  
  4018. Clip "_booster_helipadc" blocks Survivors @ setpos_exact 7479 5276 176
  4019.  
  4020. ------------------------------------------------------------------------------------------------------------------------
  4021. ------------------------------------------------------------------------------------------------------------------------
  4022.  
  4023. THE PASSING - RIVERBANK || c6m1_riverbank
  4024.  
  4025. All:
  4026.  
  4027. Clip "_ghostgrief_tarpledge" blocks Survivors @ setpos_exact 1148 4257 96
  4028.  
  4029. Clip "_permstuck_tarptree" blocks Everyone @ setpos_exact 1166 3794 191
  4030.  
  4031. Clip "_commonhop_windowsill" blocks Survivors @ setpos_exact 539 2861 237
  4032.  
  4033. Clip "_commonhop_awning" blocks Survivors @ setpos_exact 3824 2666 236
  4034.  
  4035. Clip "_curvejump_pixelperfect" blocks Survivors @ setpos_exact 4784 3785 83
  4036.  
  4037. Clip "_permstuck_fence" blocks Survivors @ setpos_exact -1391 1293 247
  4038.  
  4039. Clip "_fence_onea" blocks Survivors @ setpos_exact 96 1425 496
  4040.  
  4041. Clip "_fence_oneb" blocks Survivors @ setpos_exact -356 1088 496
  4042.  
  4043. Clip "_fence_two" blocks Survivors @ setpos_exact 69 592 544
  4044.  
  4045. Clip "_commonhop_endfence" blocks Survivors @ setpos_exact -3874 1647 716
  4046.  
  4047. Clip "_commonhop_busa" blocks Survivors @ setpos_exact -3653 2324 705
  4048.  
  4049. Clip "_commonhop_busb" blocks Survivors @ setpos_exact -3432 1527 926
  4050.  
  4051. Clip "_sneaky_hunter" blocks Infected @ setpos_exact 5296 2488 1008
  4052.  
  4053. Clip "_clipgap_fence" blocks Survivors @ setpos_exact 584 2366 456
  4054.  
  4055. Clip "_commonhop_windows" blocks Survivors @ setpos_exact 1402 2659 393.1
  4056.  
  4057. Clip "_cliprework_emptylargerooms" blocks Survivors @ setpos_exact 1072 1883 512
  4058.  
  4059. Clip "_dispcrouch_concretea" blocks Everyone @ setpos_exact 4035 1016 137
  4060.  
  4061. Clip "_dispcrouch_concreteb" blocks Everyone @ setpos_exact 4212 901 137
  4062.  
  4063. Clip "_booster_clipextend_mid" blocks Survivors @ setpos_exact -1963 373 1264
  4064.  
  4065. Clip "_booster_clipextend_end" blocks Survivors @ setpos_exact 1856 -175 1920
  4066.  
  4067. Clip "_booster_gazebo" blocks Survivors @ setpos_exact -1647 -365 999
  4068.  
  4069. Clip "_cliprework_startroof" blocks Survivors @ setpos_exact 709 4088 344
  4070.  
  4071. Clip "_cliprework_bridgeroof" blocks Survivors @ setpos_exact 927 4579 302
  4072.  
  4073. Clip "_cliprework_bridgewall" blocks Survivors @ setpos_exact 927 4579 302
  4074.  
  4075. Clip "_cliprework_endfence" blocks Survivors @ setpos_exact -2317 560 821
  4076.  
  4077. Clip "_cliprework_endroof" blocks Survivors @ setpos_exact -3913 1061 1056
  4078.  
  4079. Clip "_cliprework_endwindows1" blocks Survivors @ setpos_exact -3844 -270 1035
  4080.  
  4081. Clip "_cliprework_endwindows2" blocks Survivors @ setpos_exact -3911 561 863
  4082.  
  4083. Clip "_cliprework_endwindows3" blocks Survivors @ setpos_exact -3880 1082 895
  4084.  
  4085. Clip "_dispcrouch_caralarm" blocks Everyone @ setpos_exact 1415 980 357
  4086.  
  4087. Static prop "_cosmetic_hifunreal" W/ "models/props_vehicles/racecar_damaged_glass.mdl" @ setpos_exact 928 4016 90
  4088.  
  4089. Static prop "_cosmetic_left_desk1" W/ "models/props_interiors/desk_metal.mdl" @ setpos_exact 910 1652 527
  4090.  
  4091. Static prop "_cosmetic_left_desk2" W/ "models/props_interiors/desk_metal.mdl" @ setpos_exact 855 1634 527
  4092.  
  4093. Static prop "_cosmetic_left_plywood" W/ "models/props_highway/plywood_02.mdl" @ setpos_exact 930 1615 605
  4094.  
  4095. Clip "_cosmetic_left_collision" blocks Infected + AI @ setpos_exact 890 1637 542
  4096.  
  4097. Static prop "_cosmetic_right_cab1" W/ "models/props/cs_office/file_cabinet1.mdl" @ setpos_exact 1455 1636 512
  4098.  
  4099. Static prop "_cosmetic_right_cab2" W/ "models/props/cs_office/file_cabinet3.mdl" @ setpos_exact 1420 1634 512
  4100.  
  4101. Static prop "_cosmetic_right_cab3" W/ "models/props/cs_office/file_cabinet3.mdl" @ setpos_exact 1395 1634 512
  4102.  
  4103. Static prop "_cosmetic_right_plywood" W/ "models/props_highway/plywood_02.mdl" @ setpos_exact 1450 1615 621
  4104.  
  4105. Clip "_cosmetic_right_collision" blocks Infected + AI @ setpos_exact 1400 1637 542
  4106.  
  4107. PvP:
  4108.  
  4109. Brush "_losfix_bus" created @ setpos_exact -3624 101 713
  4110.  
  4111. Brush "_losfix_van" created @ setpos_exact 3897 1356 148
  4112.  
  4113. Clip "_endsaferoof_wrongway_clip" blocks Infected @ setpos_exact -4128 350 1337
  4114.  
  4115. Clip "_semiperm_endsaferoof" blocks Infected @ setpos_exact -4344 482 1192
  4116.  
  4117. Clip "_ladder_startalternativeB_clipleft" blocks Everyone @ setpos_exact 701 4025 96
  4118.  
  4119. Clip "_ladder_startalternativeB_clipright" blocks Everyone @ setpos_exact 701 4071 96
  4120.  
  4121. Clip "_ladder_upperbalconynear_clip" blocks Everyone @ setpos_exact 3968 1822 199
  4122.  
  4123. Clip "_infected_mapescape" blocks Infected @ setpos_exact -1997 1497 192
  4124.  
  4125. LADDER: _ladder_brideentryleft_cloned_brideentryright
  4126.  
  4127. LADDER: _ladder_elecbox_cloned_bluebin
  4128.  
  4129. LADDER: _ladder_elecboxsafehouse_cloned_bluebin
  4130.  
  4131. LADDER: _ladder_endfencefront_cloned_endfenceback
  4132.  
  4133. LADDER: _ladder_endsafehouse_cloned_windowtallright
  4134.  
  4135. LADDER: _ladder_endshorthouse_cloned_windowshortleft
  4136.  
  4137. LADDER: _ladder_endtallbrickleft_cloned_bluebin
  4138.  
  4139. LADDER: _ladder_endtallbrickright_cloned_bluebin
  4140.  
  4141. LADDER: _ladder_endtransitfence_cloned_dispcrouchfence
  4142.  
  4143. LADDER: _ladder_startalternativeB_cloned_windowtallright
  4144.  
  4145. LADDER: _ladder_startalternativeT_cloned_starttallangled
  4146.  
  4147. LADDER: _ladder_startpermstuck_cloned_endleftfence
  4148.  
  4149. LADDER: _ladder_tankfenceback_cloned_startfence
  4150.  
  4151. LADDER: _ladder_tankfencefront_cloned_dispcrouchfence
  4152.  
  4153. LADDER: _ladder_upperbalconynear_cloned_upperbalconyfar
  4154.  
  4155. LADDER: _ladder_witchentryfrontleft_cloned_witchentryback
  4156.  
  4157. LADDER: _ladder_witchentryfrontright_cloned_witchentryback
  4158.  
  4159. LADDER: _ladder_witchfarbackL_cloned_witchentryback
  4160.  
  4161. LADDER: _ladder_witchfarbackM_cloned_witchentryback
  4162.  
  4163. LADDER: _ladder_witchfarbackR_cloned_witchentryback
  4164.  
  4165. LADDER: _ladder_witchtentsleft_cloned_witchhedgeleft
  4166.  
  4167. LADDER: _ladder_witchtentsright_cloned_witchhedgeleft
  4168.  
  4169. Static prop "_solidify_endacvent" W/ "models/props_rooftop/acvent04.mdl" @ setpos_exact -3920 1027 1056.8
  4170.  
  4171. Static prop "_solidify_endchimney" W/ "models/props_urban/chimney007.mdl" @ setpos_exact -4027.48 830.86 1056
  4172.  
  4173. Static prop "_tankfence_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -2025 1527 259
  4174.  
  4175. Survival:
  4176.  
  4177. Clip "_survival_tree_01" blocks Survivors @ setpos_exact 1506 -942 817
  4178.  
  4179. Clip "_survival_tree_02" blocks Survivors @ setpos_exact 1621 -367 817
  4180.  
  4181. Clip "_survival_tree_03" blocks Survivors @ setpos_exact 1659 234 817
  4182.  
  4183. Clip "_survival_tree_04" blocks Survivors @ setpos_exact 317 -966 830
  4184.  
  4185. Clip "_survival_tree_05" blocks Survivors @ setpos_exact -75 -980 870
  4186.  
  4187. Clip "_survival_tree_06" blocks Survivors @ setpos_exact -170 -352 800
  4188.  
  4189. Clip "_survival_tree_07" blocks Survivors @ setpos_exact 30 302 830
  4190.  
  4191. Clip "_survival_tree_08" blocks Survivors @ setpos_exact -455 244 830
  4192.  
  4193. Clip "_survival_tree_09" blocks Survivors @ setpos_exact -634 -154 830
  4194.  
  4195. Clip "_survival_tree_10" blocks Survivors @ setpos_exact -644 -578 870
  4196.  
  4197. Clip "_survival_tree_11" blocks Survivors @ setpos_exact -956 233 830
  4198.  
  4199. Clip "_survival_tree_12" blocks Survivors @ setpos_exact -1019 -143 870
  4200.  
  4201. Clip "_survival_tree_13" blocks Survivors @ setpos_exact -1026 -569 870
  4202.  
  4203. Clip "_survival_tree_14" blocks Survivors @ setpos_exact -1476 -1023 870
  4204.  
  4205. Clip "_survival_tree_15" blocks Survivors @ setpos_exact -1476 249 870
  4206.  
  4207. Clip "_survival_tree_16" blocks Survivors @ setpos_exact -1976 -1025 870
  4208.  
  4209. Clip "_survival_tree_17" blocks Survivors @ setpos_exact -1982 260 870
  4210.  
  4211. Clip "_survival_tree_18" blocks Survivors @ setpos_exact -2490 -900 870
  4212.  
  4213. Clip "_survival_tree_19" blocks Survivors @ setpos_exact -2504 185 880
  4214.  
  4215. Clip "_survival_tree_20" blocks Survivors @ setpos_exact -3266 195 870
  4216.  
  4217. Clip "_survival_tree_21" blocks Survivors @ setpos_exact -3271 -890 870
  4218.  
  4219. Clip "_survival_tree_22" blocks Survivors @ setpos_exact 800 -64 747
  4220.  
  4221. Clip "_survival_tree_23" blocks Survivors @ setpos_exact -1502 -606 850
  4222.  
  4223. Clip "_survival_tree_tent" blocks Survivors @ setpos_exact -2633 222 963
  4224.  
  4225. ------------------------------------------------------------------------------------------------------------------------
  4226.  
  4227. THE PASSING - UNDERGROUND || c6m2_bedlam
  4228.  
  4229. All:
  4230.  
  4231. Clip "_permstuck_startfence" blocks Survivors @ setpos_exact 2384 -1280 0
  4232.  
  4233. Clip "_cliphang_rooftop" blocks Survivors @ setpos_exact 224 2406 336
  4234.  
  4235. Clip "_cliprework_roofvent" blocks Survivors @ setpos_exact 1471 2017 352
  4236.  
  4237. Clip "_booster_bluestripes" blocks Survivors @ setpos_exact 1574 4577 32
  4238.  
  4239. Clip "_booster_dualwindows" blocks Survivors @ setpos_exact 1953 561 178
  4240.  
  4241. Clip "_booster_balcony1" blocks Survivors @ setpos_exact 537 46 209
  4242.  
  4243. Clip "_booster_balcony2" blocks Survivors @ setpos_exact 1960 86 242
  4244.  
  4245. Clip "_booster_balcony3" blocks Survivors @ setpos_exact 1285 -151 384
  4246.  
  4247. Clip "_booster_balcony4" blocks Survivors @ setpos_exact 1497 798 317
  4248.  
  4249. Clip "_booster_balcony5" blocks Survivors @ setpos_exact 1077 1293 420
  4250.  
  4251. Clip "_booster_balcony6" blocks Survivors @ setpos_exact 342 1303 241
  4252.  
  4253. Clip "_booster_balcony7" blocks Survivors @ setpos_exact 413 4566 157
  4254.  
  4255. Clip "_booster_bigescape" blocks Survivors @ setpos_exact 903 2723 187
  4256.  
  4257. Clip "_frontloader_smoother" blocks Everyone @ setpos_exact 836 1612 -148
  4258.  
  4259. Clip "_ghostgrief_noio_gate1" blocks Everyone @ setpos_exact 2547 5704 -950
  4260.  
  4261. Clip "_ghostgrief_noio_gate2" blocks Everyone @ setpos_exact 5187 5445 -950
  4262.  
  4263. Clip "_booster_electricalbox" blocks Survivors @ setpos_exact 917 3163 -4
  4264.  
  4265. Clip "_booster_acunit" blocks Survivors @ setpos_exact 743 3135 111
  4266.  
  4267. Clip "_dispsteps_smoother1" blocks Everyone @ setpos_exact 2553 -936 -186
  4268.  
  4269. Clip "_dispsteps_smoother2" blocks Everyone @ setpos_exact 2201 -936 -58
  4270.  
  4271. Clip "_plankescape_smoother" blocks Everyone @ setpos_exact 190 2976 120
  4272.  
  4273. Clip "_permstuck_orangefence" blocks Everyone @ setpos_exact 2188 1856 -64
  4274.  
  4275. Clip "_booster_awningnlights" blocks Survivors @ setpos_exact 1264 3705 8
  4276.  
  4277. Clip "_nav_bagselecbox" blocks Survivors @ setpos_exact 636 2243 -70
  4278.  
  4279. trigger_auto_crouch "_duckqol_poolhallwin" created @ setpos_exact 1480 986.4 38.5
  4280.  
  4281. trigger_auto_crouch "_duckqol_missingpipe" created @ setpos_exact 1824 1528 -164
  4282.  
  4283. Static prop "_permstuck_gasmeter" W/ "models/props_urban/gas_meter.mdl" @ setpos_exact 2202 1859.8 -70.5
  4284.  
  4285. PvP:
  4286.  
  4287. Brush "_losfix_crates" created @ setpos_exact 1820 4757 -115
  4288.  
  4289. Brush "_losfix_strangebalcony" created @ setpos_exact 1552 1854 344
  4290.  
  4291. Brush "_losfix_van1" created @ setpos_exact 535 4275 -153
  4292.  
  4293. Brush "_losfix_van2" created @ setpos_exact 1592 4299 -153
  4294.  
  4295. LADDER: _ladder_barplankqolB_cloned_barelecbox
  4296.  
  4297. LADDER: _ladder_barplankqolT_cloned_barelecbox
  4298.  
  4299. LADDER: _ladder_crawfishelecbox_cloned_sucktheheads
  4300.  
  4301. LADDER: _ladder_forkliftvines_cloned_startfenceback
  4302.  
  4303. LADDER: _ladder_frontloaderright_cloned_frontloaderleft
  4304.  
  4305. LADDER: _ladder_pipesfencefront_cloned_pipesfenceback
  4306.  
  4307. LADDER: _ladder_poolhalldropleft_cloned_poolhalldropright
  4308.  
  4309. LADDER: _ladder_stanleydoor_cloned_sewerdropleft
  4310.  
  4311. LADDER: _ladder_startfenceback_cloned_startfence
  4312.  
  4313. LADDER: _ladder_startfencefront_cloned_startfenceback
  4314.  
  4315. Static prop "_solidify_ventlarge" W/ "models/props_rooftop/vent_large1.mdl" @ setpos_exact 1312.21 1963.61 334.677
  4316.  
  4317. Coop:
  4318.  
  4319. LADDER: _ladder_frontloaderright_cloned_frontloaderleft
  4320.  
  4321. Survival:
  4322.  
  4323. LADDER: _ladder_frontloaderright_cloned_frontloaderleft
  4324.  
  4325. ------------------------------------------------------------------------------------------------------------------------
  4326.  
  4327. THE PASSING - PORT || c6m3_port
  4328.  
  4329. All:
  4330.  
  4331. Clip "_solidify_girder" blocks Survivors @ setpos_exact 200 -1280 145
  4332.  
  4333. Clip "_booster_bridgea" blocks Survivors @ setpos_exact 0 -638 216
  4334.  
  4335. Clip "_booster_bridgeb" blocks Survivors @ setpos_exact 0 -1200 216
  4336.  
  4337. Clip "_booster_tent" blocks Survivors @ setpos_exact 1196 -847 294
  4338.  
  4339. Clip "_booster_streetlamp" blocks Survivors @ setpos_exact 1493 -368 308
  4340.  
  4341. Clip "_booster_generator_side" blocks Survivors @ setpos_exact 1848 928 98
  4342.  
  4343. Clip "_booster_generator_main" blocks Survivors @ setpos_exact -484 -580 326
  4344.  
  4345. Clip "_booster_signalboxes" blocks Survivors @ setpos_exact -570 -859 104
  4346.  
  4347. Clip "_booster_trimandbox" blocks Survivors @ setpos_exact -859 1591 473
  4348.  
  4349. Clip "_booster_fencefinish" blocks Survivors @ setpos_exact -243 -631 137
  4350.  
  4351. Clip "_booster_telepole1" blocks Survivors @ setpos_exact -232 1481 640
  4352.  
  4353. Clip "_booster_telepole2" blocks Survivors @ setpos_exact 252 1092 640
  4354.  
  4355. Clip "_booster_telepole3" blocks Survivors @ setpos_exact -1423 1481 640
  4356.  
  4357. Clip "_booster_telepole4" blocks Survivors @ setpos_exact -2461 1234 640
  4358.  
  4359. Clip "_booster_telepole5" blocks Survivors @ setpos_exact 258 153 480
  4360.  
  4361. Clip "_booster_telepole6" blocks Survivors @ setpos_exact -625 87 480
  4362.  
  4363. Clip "_booster_telepole7" blocks Survivors @ setpos_exact 1562 170 345
  4364.  
  4365. Clip "_booster_badcorner" blocks Survivors @ setpos_exact -2342 -258 329
  4366.  
  4367. Clip "_booster_acunit" blocks Survivors @ setpos_exact -1568 -639 424
  4368.  
  4369. Clip "_booster_electricalbox" blocks Survivors @ setpos_exact -251 -932 101
  4370.  
  4371. Clip "_booster_elecwiresa" blocks Survivors @ setpos_exact -1537 -256 300
  4372.  
  4373. Clip "_booster_elecwiresb" blocks Survivors @ setpos_exact 255 -255 178
  4374.  
  4375. Clip "_booster_elecwiresc" blocks Survivors @ setpos_exact 262 -772 356
  4376.  
  4377. Clip "_booster_elecwiresd" blocks Survivors @ setpos_exact -234 1078 392
  4378.  
  4379. Clip "_booster_for_lease" blocks Survivors @ setpos_exact -1917 1555 384
  4380.  
  4381. Clip "_booster_genroom_shelf" blocks Survivors @ setpos_exact -738 -801 233
  4382.  
  4383. Clip "_booster_light_dual" blocks Survivors @ setpos_exact -2208 1532 325
  4384.  
  4385. Clip "_booster_lighta" blocks Survivors @ setpos_exact -1540 23 187
  4386.  
  4387. Clip "_booster_lightb" blocks Survivors @ setpos_exact -647 -568 186
  4388.  
  4389. Clip "_booster_lightc" blocks Survivors @ setpos_exact 593 -234 169
  4390.  
  4391. Clip "_booster_itwasatriumph" blocks Survivors @ setpos_exact 899 -426 53
  4392.  
  4393. Clip "_bridge_curbsmoother1" blocks Everyone @ setpos_exact -1 -1014 -8
  4394.  
  4395. Clip "_bridge_curbsmoother2" blocks Everyone @ setpos_exact 1 -1014 -8
  4396.  
  4397. Brush "_losblock_plywoodc6only" created @ setpos_exact 193 -1124 16
  4398.  
  4399. Clip "_booster_windows" blocks Survivors @ setpos_exact -1032 568 352
  4400.  
  4401. Clip "_window_smoother_c6only" blocks Infected @ setpos_exact -1023 568 352
  4402.  
  4403. Clip "_booster_coolingtanks" blocks Survivors @ setpos_exact -1473 958 402
  4404.  
  4405. FIX: Total of 2 out of 2 traffic cones need to be made non-solid -- c7m3 already OK.
  4406.  
  4407. Un-solidified prop_physics @ setpos_exact 1793.94 327.969 -95.5938
  4408.  
  4409. Un-solidified prop_physics @ setpos_exact 1759.16 448.781 -95.5938
  4410.  
  4411. Un-solidified ALL props with model: "models/props_fortifications/orange_cone001_reference.mdl"
  4412.  
  4413. PvP:
  4414.  
  4415. Brush "_losfix_gen1" created @ setpos_exact -476 -577 11
  4416.  
  4417. Brush "_losfix_gen2" created @ setpos_exact -1152 920 168
  4418.  
  4419. Brush "_losfix_van1" created @ setpos_exact -318 5 5
  4420.  
  4421. Brush "_losfix_van2" created @ setpos_exact 379 703 168
  4422.  
  4423. Clip "_ladder_c7mirrconcretecar_clipleft" blocks Everyone @ setpos_exact 251 493 30
  4424.  
  4425. Clip "_ladder_c7mirrconcretecar_clipright" blocks Everyone @ setpos_exact 252 452 30
  4426.  
  4427. Clip "_ladder_c7mirrstonewallcar_clipleft" blocks Everyone @ setpos_exact 1214 -143 -105
  4428.  
  4429. Clip "_ladder_c7mirrstonewallcar_clipright" blocks Everyone @ setpos_exact 1158 -133 -105
  4430.  
  4431. LADDER: _ladder_backleftc6only_cloned_generatorvines
  4432.  
  4433. LADDER: _ladder_backmidc6only_cloned_generatorvines
  4434.  
  4435. LADDER: _ladder_backrightc6only_cloned_starttinyvan
  4436.  
  4437. LADDER: _ladder_c7mirracventfront_cloned_acventback
  4438.  
  4439. LADDER: _ladder_c7mirrbarricaderoof_cloned_elevatorvines
  4440.  
  4441. LADDER: _ladder_c7mirrbrickstep_cloned_startshortest
  4442.  
  4443. LADDER: _ladder_c7mirrbridgeright_cloned_stonewallstairs
  4444.  
  4445. LADDER: _ladder_c7mirrconcretecar_cloned_acventback
  4446.  
  4447. LADDER: _ladder_c7mirrconcretestep_cloned_startshortest
  4448.  
  4449. LADDER: _ladder_c7mirrelecboxfence_cloned_elevatorvines
  4450.  
  4451. LADDER: _ladder_c7mirrfireescapeback_cloned_burgerbillboard
  4452.  
  4453. LADDER: _ladder_c7mirrpoolhalldoorway_cloned_picketbridgefar
  4454.  
  4455. LADDER: _ladder_c7mirrprivateparking_cloned_stonewallstairs
  4456.  
  4457. LADDER: _ladder_c7mirrstonewallcar_cloned_stonewallstairs
  4458.  
  4459. LADDER: _ladder_c7mirrstonewalltree_cloned_softdrinks
  4460.  
  4461. LADDER: _ladder_c7mirrtentlinkfar_cloned_acventback
  4462.  
  4463. LADDER: _ladder_c7mirrtentlinknear_cloned_acventback
  4464.  
  4465. LADDER: _ladder_c7mirrvinestohedge_cloned_burgerbillboard
  4466.  
  4467. LADDER: _ladder_c7mirrwhitetable_cloned_picketbridge
  4468.  
  4469. LADDER: _ladder_c7mirrwindowdoor_cloned_burgerbillboard
  4470.  
  4471. LADDER: _ladder_starthighc6only_cloned_generatorvines
  4472.  
  4473. LADDER: _ladder_startlowc6only_cloned_generatorvines
  4474.  
  4475. Static prop "_ladder_c7mirrbarricaderoof" W/ "models/props_downtown/gutter_downspout_straight02.mdl" @ setpos_exact -224 1001 412
  4476.  
  4477. Static prop "_ladder_c7mirrelecboxfence" W/ "models/props_downtown/gutter_downspout_straight02.mdl" @ setpos_exact -256 -998 304
  4478.  
  4479. Static prop "_ladder_c7mirrfireescapeback" W/ "models/props_downtown/gutter_downspout_straight02.mdl" @ setpos_exact 463 -768 347
  4480.  
  4481. Static prop "_ladder_c7mirrpoolhalldoorway" W/ "models/props_downtown/gutter_downspout_straight02.mdl" @ setpos_exact 928 -294 370
  4482.  
  4483. Static prop "_ladder_c7mirrwindowdoor" W/ "models/props_downtown/gutter_downspout_straight02.mdl" @ setpos_exact 654 -256 347
  4484.  
  4485. Navmesh modified w/ CHECKPOINT @ setpos_exact -2227 -362 -256
  4486.  
  4487. ------------------------------------------------------------------------------------------------------------------------
  4488. ------------------------------------------------------------------------------------------------------------------------
  4489.  
  4490. THE SACRIFICE - DOCKS || c7m1_docks
  4491.  
  4492. All:
  4493.  
  4494. Clip "_bunnyhop_boat" blocks Survivors @ setpos_exact 11970 -820 -157
  4495.  
  4496. Clip "_ghostgrief_dockledge" blocks Everyone @ setpos_exact 10228 -340 -107
  4497.  
  4498. Clip "_clipgap_intersection" blocks Survivors @ setpos_exact 6612 2234 294
  4499.  
  4500. Clip "_booster_lonerpipe" blocks Survivors @ setpos_exact 9236 750 550
  4501.  
  4502. Clip "_clipextend_arena_tree" blocks Survivors @ setpos_exact 9054 49 740
  4503.  
  4504. Clip "_clipextend_arena_fence1" blocks Survivors @ setpos_exact 9418 371 496
  4505.  
  4506. Clip "_clipextend_arena_fence2" blocks Survivors @ setpos_exact 8077 -311 496
  4507.  
  4508. Clip "_cliprework_ventshafts" blocks Survivors @ setpos_exact 3870 1647 336
  4509.  
  4510. Clip "_commonhop_endwindows" blocks Survivors @ setpos_exact 2563 2560 336
  4511.  
  4512. Clip "_clipextend_rubblecar" blocks Survivors @ setpos_exact 11026 -1196 90
  4513.  
  4514. PvP:
  4515.  
  4516. Clip "_ladder_tankwinleft_clip" blocks Infected @ setpos_exact 7335 944 224
  4517.  
  4518. Clip "_ladder_tankwinright_clip" blocks Infected @ setpos_exact 7591 944 224
  4519.  
  4520. LADDER: _ladder_brickyardleft1_cloned_brickyard2nd
  4521.  
  4522. LADDER: _ladder_brickyardleft2_cloned_brickyard3rd
  4523.  
  4524. LADDER: _ladder_brickyardleft3_cloned_brickyard1st
  4525.  
  4526. LADDER: _ladder_brickyardright1_cloned_brickyard3rd
  4527.  
  4528. LADDER: _ladder_brickyardright2_cloned_brickyard3rd
  4529.  
  4530. LADDER: _ladder_midfencefar_cloned_midstreetnear
  4531.  
  4532. LADDER: _ladder_midfencenear_cloned_midstreetfar
  4533.  
  4534. LADDER: _ladder_parkourvent_cloned_roofshortest
  4535.  
  4536. LADDER: _ladder_tankwinleft_cloned_brickoffice
  4537.  
  4538. LADDER: _ladder_tankwinright_cloned_brickoffice
  4539.  
  4540. Coop:
  4541.  
  4542. LOGIC: Coop-only boxcar Tank door clip and navblocker modified to fix forced-suicide trick.
  4543.  
  4544. ------------------------------------------------------------------------------------------------------------------------
  4545.  
  4546. THE SACRIFICE - BARGE || c7m2_barge
  4547.  
  4548. All:
  4549.  
  4550. Clip "_cliprework_startbricks" blocks Survivors @ setpos_exact 9800 1728 321
  4551.  
  4552. Clip "_permstuck_flatnosecargo" blocks Everyone @ setpos_exact 5793 2568 130
  4553.  
  4554. Clip "_curvejump_fenceledge" blocks Survivors @ setpos_exact -1984 0 160
  4555.  
  4556. Clip "_stuckwarp_railwayoverpass" blocks Everyone @ setpos_exact 2726 2775 374
  4557.  
  4558. Clip "_nav_windowrecess" blocks Survivors @ setpos_exact -1944 1412 192
  4559.  
  4560. Clip "_ghostgrief_acunit" blocks Survivors @ setpos_exact -10240 383 386
  4561.  
  4562. Clip "_ghostgrief_coalbarge" blocks Survivors @ setpos_exact -8700 170 -78
  4563.  
  4564. Clip "_ghostgrief_unitfromdeath" blocks Survivors @ setpos_exact -7399 -1199 -128
  4565.  
  4566. Clip "_booster_littleroof" blocks Survivors @ setpos_exact -1795 1471 320
  4567.  
  4568. Clip "_booster_yawningman" blocks Survivors @ setpos_exact -1294 1513 331
  4569.  
  4570. Clip "_booster_dualstacks" blocks Survivors @ setpos_exact -3080 671 576
  4571.  
  4572. Clip "_booster_cementlips" blocks Survivors @ setpos_exact -2882 1688 132
  4573.  
  4574. Clip "_booster_fenceledge" blocks Survivors @ setpos_exact -3767 1835 128
  4575.  
  4576. Clip "_booster_gravelacun" blocks Survivors @ setpos_exact -6495 1144 333
  4577.  
  4578. Clip "_booster_solidify_windows" blocks Survivors @ setpos_exact 11032 606 336
  4579.  
  4580. PvP:
  4581.  
  4582. LADDER: _ladder_bluecontback_cloned_bluecontfront
  4583.  
  4584. LADDER: _ladder_comicboatsleftL_cloned_toolhouse
  4585.  
  4586. LADDER: _ladder_comicboatsleftR_cloned_toolhouse
  4587.  
  4588. LADDER: _ladder_comicboatsright_cloned_toolhouse
  4589.  
  4590. LADDER: _ladder_comicpylonleft_cloned_toolhouse
  4591.  
  4592. LADDER: _ladder_comicpylonright_cloned_toolhouse
  4593.  
  4594. LADDER: _ladder_comicwitchboat_cloned_toolhouse
  4595.  
  4596. LADDER: _ladder_endbarricadeleft_cloned_vanishbarricade
  4597.  
  4598. LADDER: _ladder_endbarricaderight_cloned_nomanssemi
  4599.  
  4600. LADDER: _ladder_overpassgapleft_cloned_fourcontainers
  4601.  
  4602. LADDER: _ladder_overpassgapright_cloned_fourcontainers
  4603.  
  4604. LADDER: _ladder_permstuckend_cloned_toolhouse
  4605.  
  4606. LADDER: _ladder_pondareafence_cloned_startflatnosefence
  4607.  
  4608. LADDER: _ladder_shedwindow_cloned_barrelshort
  4609.  
  4610. LADDER: _ladder_silofenceclone1_cloned_silofencesource
  4611.  
  4612. LADDER: _ladder_spectroleumtanker_cloned_spectroleumfence
  4613.  
  4614. LADDER: _ladder_startroombrick_cloned_startareasemi
  4615.  
  4616. LADDER: _ladder_tankpolesfenceleft_cloned_tankpolesfenceright
  4617.  
  4618. LADDER: _ladder_tankpoleswallL_cloned_tankpolesfenceright
  4619.  
  4620. LADDER: _ladder_tankpoleswallR_cloned_tankpolesfenceright
  4621.  
  4622. Scavenge:
  4623.  
  4624. Clip "_scavenge_jump_woodbrush" blocks Survivors @ setpos_exact -9100 392 262
  4625.  
  4626. ------------------------------------------------------------------------------------------------------------------------
  4627.  
  4628. THE SACRIFICE - PORT || c7m3_port
  4629.  
  4630. All:
  4631.  
  4632. Clip "_solidify_girdershorter" blocks Survivors @ setpos_exact 200 -1280 145
  4633.  
  4634. Clip "_booster_bridge_TMP1" blocks Survivors @ setpos_exact 0 -638 216
  4635.  
  4636. Clip "_booster_bridge_TMP2" blocks Survivors @ setpos_exact 0 -1200 216
  4637.  
  4638. Brush "_losblock_plywoodc7only" created @ setpos_exact 193 -1124 16
  4639.  
  4640. Clip "_booster_windows" blocks Survivors @ setpos_exact -1032 568 352
  4641.  
  4642. Clip "_booster_skylight_c7only" blocks Survivors @ setpos_exact -768 930 325
  4643.  
  4644. Clip "_booster_coolingtanks" blocks Survivors @ setpos_exact -1473 958 402
  4645.  
  4646. LOGIC: TMP shortcut booster clips will be deleted on trigger_finale FinaleEscapeStarted.
  4647. Not a gamebreaker if absent and only for Sacrifice 3 to avoid players bumping their head.
  4648.  
  4649. Clip "_anti_finaleskip_TMP" blocks Survivors @ setpos_exact 230 -849 216
  4650.  
  4651. LOGIC: TMP finale skip clip will be deleted after bridge is almost fully raised.
  4652. Allows sacrificer to use stairs. Incompatible with Passing 3 because of Louis.
  4653.  
  4654. Clip "_booster_tankwindows" blocks Survivors @ setpos_exact -1280 -1016 216
  4655.  
  4656. Clip "_cliprework_semitrailer" blocks Survivors @ setpos_exact 1727 2883 285
  4657.  
  4658. Clip "_cliprework_startroofa" blocks Survivors @ setpos_exact 1370 2379 544
  4659.  
  4660. Clip "_cliprework_startroofb" blocks Survivors @ setpos_exact 675 2011 408
  4661.  
  4662. Clip "_cliprework_startroofc" blocks Survivors @ setpos_exact 517 2972 640
  4663.  
  4664. Clip "_cliprework_startroofd" blocks Survivors @ setpos_exact 983 3418 540
  4665.  
  4666. Clip "_cliprework_colossaldumpster" blocks Survivors @ setpos_exact 1583 962 64
  4667.  
  4668. Clip "_booster_tent" blocks Survivors @ setpos_exact 1196 -847 294
  4669.  
  4670. Clip "_booster_streetlamp" blocks Survivors @ setpos_exact 1493 -368 308
  4671.  
  4672. Clip "_booster_generator_side" blocks Survivors @ setpos_exact 1848 735 98
  4673.  
  4674. Clip "_booster_generator_main" blocks Survivors @ setpos_exact -434 -580 326
  4675.  
  4676. Clip "_booster_telepole1" blocks Survivors @ setpos_exact -232 1481 640
  4677.  
  4678. Clip "_booster_telepole2" blocks Survivors @ setpos_exact 252 1122 640
  4679.  
  4680. Clip "_booster_telepole3" blocks Survivors @ setpos_exact 258 153 480
  4681.  
  4682. Clip "_booster_telepole4" blocks Survivors @ setpos_exact -625 87 480
  4683.  
  4684. Clip "_booster_telepole5" blocks Survivors @ setpos_exact 1562 170 345
  4685.  
  4686. Clip "_booster_elecwiresbad" blocks Survivors @ setpos_exact -234 1078 392
  4687.  
  4688. Clip "_booster_genroom_shelf" blocks Survivors @ setpos_exact -739 -800 233
  4689.  
  4690. Clip "_booster_spaaaaaace" blocks Survivors @ setpos_exact 899 -426 53
  4691.  
  4692. Clip "_booster_fireescape" blocks Survivors @ setpos_exact 359 -788 160
  4693.  
  4694. Clip "_bridgerail_thinledge" blocks Survivors @ setpos_exact 288 -1275 414
  4695.  
  4696. Clip "_bridge_curbsmoother1" blocks Everyone @ setpos_exact -1 -1014 -8
  4697.  
  4698. Clip "_bridge_curbsmoother2" blocks Everyone @ setpos_exact 1 -1014 -8
  4699.  
  4700. PvP:
  4701.  
  4702. Brush "_losfix_dynamic_car" created @ setpos_exact 89 -1532 176
  4703.  
  4704. Brush "_losfix_dynamic_van" created @ setpos_exact -86 -1551 176
  4705.  
  4706. Brush "_losfix_gen1" created @ setpos_exact -460 -572 11
  4707.  
  4708. Brush "_losfix_gen2" created @ setpos_exact -1151 921 168
  4709.  
  4710. LADDER: _ladder_fencec6mirr_cloned_concbarrfront
  4711.  
  4712. LADDER: _ladder_pillarc6mirr_cloned_dumpsterhedge
  4713.  
  4714. MOVER: LOS dynamic car and van parented to move with bridge.
  4715.  
  4716. ------------------------------------------------------------------------------------------------------------------------
  4717. ------------------------------------------------------------------------------------------------------------------------
  4718.  
  4719. NO MERCY - APARTMENTS || c8m1_apartment
  4720.  
  4721. All:
  4722.  
  4723. Clip "_fallrevive_griefroom" blocks Survivors @ setpos_exact 632 984 292
  4724.  
  4725. Clip "_truckjump_window" blocks Survivors @ setpos_exact 1728 3976 268
  4726.  
  4727. Clip "_cliprework_rooftop03" blocks Survivors @ setpos_exact 2047 2792.5 495.5
  4728.  
  4729. Clip "_commonhop_electricalbox" blocks Survivors @ setpos_exact 2526 2418 209
  4730.  
  4731. Clip "_cliprework_rooftop02" blocks Survivors @ setpos_exact 2004 1996 640
  4732.  
  4733. Clip "_cliprework_rooftop04" blocks Survivors @ setpos_exact 2766 943 800
  4734.  
  4735. Clip "_cliprework_rooftop01" blocks Survivors @ setpos_exact 1943 480 800
  4736.  
  4737. Clip "_clipextend_van" blocks Survivors @ setpos_exact 2786 2528 404.7
  4738.  
  4739. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact 127 2648.5 16
  4740.  
  4741. Clip "_booster_corner" blocks Survivors @ setpos_exact 512 5296.1 272
  4742.  
  4743. Clip "_booster_windows" blocks Survivors @ setpos_exact 2040 4672 268
  4744.  
  4745. Clip "_booster_rubble" blocks Survivors @ setpos_exact 2952 5236 374.2
  4746.  
  4747. Clip "_clipextend_crushescape" blocks Survivors @ setpos_exact 2459 767 853
  4748.  
  4749. Clip "_cliprework_rooftop05" blocks Survivors @ setpos_exact 1793 1595 640
  4750.  
  4751. Clip "_clipextend_unattackable" blocks Survivors @ setpos_exact 2483 5327 528
  4752.  
  4753. Clip "_clipextend_policefence" blocks Survivors @ setpos_exact 1173 2032 656
  4754.  
  4755. Clip "_clipextend_subwayfence" blocks Survivors @ setpos_exact 3266 4137 552
  4756.  
  4757. Clip "_nav_electricalboxa" blocks Survivors @ setpos_exact 2476 1819 125
  4758.  
  4759. Clip "_nav_electricalboxb" blocks Survivors @ setpos_exact 2016 2188 127
  4760.  
  4761. Clip "_cliprework_subwayupper" blocks Survivors @ setpos_exact 2921 4194 156
  4762.  
  4763. Clip "_cliprework_subwayledge" blocks Survivors @ setpos_exact 3014 4017 156
  4764.  
  4765. Clip "_cliprework_subwayfence" blocks Survivors @ setpos_exact 3268 4141 552
  4766.  
  4767. Clip "_subwins_smoother" blocks Everyone @ setpos_exact 2968 4103 48
  4768.  
  4769. Insta-kill "_instakill_griefroom" Survivor @ setpos_exact 1152 936 8
  4770.  
  4771. FIX: Fans will now rotate. Server-side entities used to have Client-side Animation spawnflag.
  4772.  
  4773. PvP:
  4774.  
  4775. Deleted func_playerinfected_clip @ setpos_exact 2294 821 317.821
  4776.  
  4777. Deleted func_playerinfected_clip @ setpos_exact -1 2655 351
  4778.  
  4779. Deleted func_playerinfected_clip @ setpos_exact 1535 3999 775
  4780.  
  4781. Deleted func_playerinfected_clip @ setpos_exact 1023 5055 527
  4782.  
  4783. Deleted func_playerinfected_clip @ setpos_exact 2551 511 799
  4784.  
  4785. Deleted func_playerinfected_clip @ setpos_exact -1 2143 463
  4786.  
  4787. Deleted func_playerinfected_clip @ setpos_exact 2815 2751 831
  4788.  
  4789. Deleted func_playerinfected_clip @ setpos_exact -1 3451 465
  4790.  
  4791. Deleted func_playerinfected_clip @ setpos_exact -1 5087 271
  4792.  
  4793. Brush "_losfix_boxes" created @ setpos_exact 2956 3995.77 -224
  4794.  
  4795. Brush "_losfix_car" created @ setpos_exact 1163 2944 23
  4796.  
  4797. Brush "_losfix_debris1" created @ setpos_exact 2404 706 90
  4798.  
  4799. Brush "_losfix_debris2" created @ setpos_exact 2493 706 90
  4800.  
  4801. Brush "_losfix_debris3" created @ setpos_exact 2487 727 130
  4802.  
  4803. Brush "_losfix_debris4" created @ setpos_exact 2487 747 141
  4804.  
  4805. Brush "_losfix_truck" created @ setpos_exact 2232 4268 12
  4806.  
  4807. Brush "_losfix_van1" created @ setpos_exact 2588 3542 21
  4808.  
  4809. Brush "_losfix_van2" created @ setpos_exact 2546 3494 21
  4810.  
  4811. Clip "_ladder_startroof_clip" blocks Infected @ setpos_exact 2292 1340 319
  4812.  
  4813. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact 2293 850 322
  4814.  
  4815. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact 3175 3371 832
  4816.  
  4817. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact 153 2988 352
  4818.  
  4819. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact -5 4298 466
  4820.  
  4821. Clip "_meticulous_funcinfclip05" blocks Infected @ setpos_exact 153 2176 352
  4822.  
  4823. Clip "_yesdraw_dairy_clipa" blocks Infected @ setpos_exact 1737 5767 528
  4824.  
  4825. Clip "_yesdraw_dairy_clipb" blocks Infected @ setpos_exact 2031 5390 528
  4826.  
  4827. Clip "_yesdraw_farcorner_clip" blocks Infected @ setpos_exact 216 5303 528
  4828.  
  4829. Clip "_yesdraw_start_clipa" blocks Infected @ setpos_exact 3052 959 800
  4830.  
  4831. Clip "_yesdraw_start_clipb" blocks Infected @ setpos_exact 2710 508 1370
  4832.  
  4833. LADDER: _ladder_alleywindow_cloned_tankerwindow
  4834.  
  4835. LADDER: _ladder_commvignette_cloned_trashorange
  4836.  
  4837. LADDER: _ladder_crushedescape_cloned_tankerwindow
  4838.  
  4839. LADDER: _ladder_dairybrickleft_cloned_thinwhiteledge
  4840.  
  4841. LADDER: _ladder_dairybrickright_cloned_thinwhiteledge
  4842.  
  4843. LADDER: _ladder_fencebayB_cloned_garagewindow
  4844.  
  4845. LADDER: _ladder_fencebayT_cloned_garagewindow
  4846.  
  4847. LADDER: _ladder_fencefrontL_cloned_fencebackL
  4848.  
  4849. LADDER: _ladder_fencefrontM_cloned_fencebackM
  4850.  
  4851. LADDER: _ladder_fencefrontR_cloned_fencebackR
  4852.  
  4853. LADDER: _ladder_flatnose_cloned_chaintilt
  4854.  
  4855. LADDER: _ladder_ominouswin_cloned_helloworld
  4856.  
  4857. LADDER: _ladder_parkourstartB_cloned_tallpipecopcar
  4858.  
  4859. LADDER: _ladder_parkourstartT_cloned_thinwhiteledge
  4860.  
  4861. LADDER: _ladder_simondairy_cloned_helloworld
  4862.  
  4863. LADDER: _ladder_startroof_cloned_trashblack
  4864.  
  4865. LADDER: _ladder_subwaybricks_cloned_tankerwindow
  4866.  
  4867. LADDER: _ladder_subwayrubble_cloned_woodyjr
  4868.  
  4869. Static prop "_losblocker_fencea" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 896 3971 17
  4870.  
  4871. Static prop "_losblocker_fenceb" W/ "models/props_urban/fence_cover001_256.mdl" @ setpos_exact 1408 3971 17
  4872.  
  4873. Static prop "_commvignette_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 445 2790 416
  4874.  
  4875. Static prop "_commvignette_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 445 3190 416
  4876.  
  4877. Static prop "_ladder_commvignette_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 628 3296 330
  4878.  
  4879. Static prop "_ladder_ominouswin_pipeB" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 1824 5248 272
  4880.  
  4881. Static prop "_ladder_ominouswin_pipeT" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 1824 5248 528
  4882.  
  4883. Static prop "_ladder_simondairy_pipeB" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 1129 5056 272
  4884.  
  4885. Static prop "_ladder_simondairy_pipeT" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 1129 5056 528
  4886.  
  4887. Static prop "_losblocker_simondairy" W/ "models/props_rooftop/rooftopcluser06a.mdl" @ setpos_exact 1392 5397 630
  4888.  
  4889. Static prop "_solidify_dairyclust" W/ "models/props_rooftop/rooftopcluser06a.mdl" @ setpos_exact 1632 4672 869.405
  4890.  
  4891. Static prop "_solidify_dairyvent1" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact 1633 4676 776.299
  4892.  
  4893. Static prop "_solidify_dairyvent2" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact 1633 4548 776.299
  4894.  
  4895. Static prop "_solidify_dairyvent3" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact 1904 4145 776.299
  4896.  
  4897. Static prop "_solidify_dairyvent4" W/ "models/props_rooftop/acvent02.mdl" @ setpos_exact 1665 4124 776
  4898.  
  4899. Static prop "_window_ceda_body" W/ "models/DeadBodies/CEDA/ceda_truck_a.mdl" @ setpos_exact 2382 1414 257
  4900.  
  4901. Static prop "_yesdraw_dairy_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1309 5535 585
  4902.  
  4903. Static prop "_yesdraw_dairy_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1709 5535 585
  4904.  
  4905. Static prop "_yesdraw_farcorner_wall" W/ "models/props_update/c8m1_rooftop_4.mdl" @ setpos_exact 384 4272 529.3
  4906.  
  4907. Static prop "_yesdraw_farcorner_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 384 5303 320
  4908.  
  4909. Static prop "_yesdraw_fireroof_hunt1" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 544 1264 1232
  4910.  
  4911. Static prop "_yesdraw_fireroof_hunt2" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 544 1536 1232.1
  4912.  
  4913. Static prop "_yesdraw_fireroof_hunt3" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 544 1808 1232
  4914.  
  4915. Static prop "_yesdraw_roof_starta" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 2792 1192 799.9999
  4916.  
  4917. Static prop "_yesdraw_roof_startb" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 2792 744 799.9999
  4918.  
  4919. Static prop "_yesdraw_roof_startc" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 3272 1192 799.9999
  4920.  
  4921. Static prop "_yesdraw_roof_startd" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 3272 744 799.9999
  4922.  
  4923. Static prop "_yesdraw_rooftop_1" W/ "models/props_update/c8m1_rooftop_1.mdl" @ setpos_exact 1776 4528 776
  4924.  
  4925. Static prop "_yesdraw_rooftop_2" W/ "models/props_update/c8m1_rooftop_2.mdl" @ setpos_exact 1536 5536 528
  4926.  
  4927. Static prop "_yesdraw_rooftop_3" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 496 2400 616
  4928.  
  4929. Static prop "_yesdraw_rooftop_3_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 445 2495 678
  4930.  
  4931. Static prop "_yesdraw_rooftop_3_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 445 2305 678
  4932.  
  4933. Static prop "_yesdraw_start_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2752 1232 854
  4934.  
  4935. Static prop "_yesdraw_start_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2752 982 854
  4936.  
  4937. Deleted func_playerinfected_clip @ setpos_exact 2294 1311 317.821
  4938.  
  4939. ------------------------------------------------------------------------------------------------------------------------
  4940.  
  4941. NO MERCY - SUBWAY || c8m2_subway
  4942.  
  4943. All:
  4944.  
  4945. Clip "_permstuck_piperoom" blocks Everyone @ setpos_exact 7474 2355 -216
  4946.  
  4947. Clip "_tankwarp_pillar" blocks Everyone @ setpos_exact 7565 4164 -95
  4948.  
  4949. Clip "_busstop_fence" blocks Survivors @ setpos_exact 8600 5556 788
  4950.  
  4951. Clip "_dispcrouch_cavea" blocks Everyone @ setpos_exact 4354 3430 -174.7
  4952.  
  4953. Clip "_dispcrouch_caveb" blocks Everyone @ setpos_exact 4497 3316 -174.7
  4954.  
  4955. Clip "_booster_windowandfence" blocks Survivors @ setpos_exact 8416 3888 344
  4956.  
  4957. Clip "_booster_pipe" blocks Survivors @ setpos_exact 7351 3792 144
  4958.  
  4959. Clip "_booster_beama" blocks Survivors @ setpos_exact 7176 3138 424
  4960.  
  4961. Clip "_booster_beamb" blocks Survivors @ setpos_exact 7380 3138 424
  4962.  
  4963. Clip "_booster_beamc" blocks Survivors @ setpos_exact 7568 3138 424
  4964.  
  4965. Clip "_booster_beamd" blocks Survivors @ setpos_exact 7754 3138 424
  4966.  
  4967. Clip "_booster_beame" blocks Survivors @ setpos_exact 7943 3138 424
  4968.  
  4969. Clip "_booster_boxrow" blocks Survivors @ setpos_exact 7827 3816 381
  4970.  
  4971. Clip "_subwaymount_in" blocks Survivors @ setpos_exact 6337 3137 -154
  4972.  
  4973. Clip "_subwaymount_out" blocks Survivors @ setpos_exact 6769 2895 -154
  4974.  
  4975. Clip "_stuckwarp_underspawn" blocks Everyone @ setpos_exact 3111 2775 -70
  4976.  
  4977. Clip "_stuckwarp_tunnelend" blocks Everyone @ setpos_exact 4182 2831 -70
  4978.  
  4979. Clip "_tankwarp_solidify" blocks Infected + AI @ setpos_exact 5977 4742 -335
  4980.  
  4981. Clip "_unattackable_building" blocks Survivors @ setpos_exact 9311 4256 704
  4982.  
  4983. Clip "_unattackable_backalley1" blocks Survivors @ setpos_exact 6780 4279 632
  4984.  
  4985. Clip "_unattackable_backalley2" blocks Survivors @ setpos_exact 8319 3520 660
  4986.  
  4987. Clip "_unattackable_backalley3" blocks Survivors @ setpos_exact 10298 3765 16
  4988.  
  4989. Clip "_unattackable_backalley4" blocks Survivors @ setpos_exact 10871 4221 688
  4990.  
  4991. Clip "_unattackable_pawnshop1" blocks Survivors @ setpos_exact 11272 5336 16
  4992.  
  4993. Clip "_unattackable_pawnshop2" blocks Survivors @ setpos_exact 10112 5744 512
  4994.  
  4995. Clip "_clipextend_ledgehang" blocks Survivors @ setpos_exact 9394 5648 416
  4996.  
  4997. Clip "_unattackable_tanker1" blocks Survivors @ setpos_exact 6750 5141 512
  4998.  
  4999. Clip "_unattackable_tanker2" blocks Survivors @ setpos_exact 7700 5622 536
  5000.  
  5001. Clip "_ladderqol_orangebags" blocks Infected + AI @ setpos_exact 10660 5215 16
  5002.  
  5003. Clip "_genroomrail_smoother1" blocks Everyone @ setpos_exact 7285 3633 248
  5004.  
  5005. Clip "_genroomrail_smoother2" blocks Everyone @ setpos_exact 7285 2878 248
  5006.  
  5007. Clip "_nav_tankjukepipes" blocks Survivors @ setpos_exact 8276 3656 140
  5008.  
  5009. FIX: Generator Room has 13 hanging lights and 9 need to be made non-solid.
  5010.  
  5011. Un-solidified prop_dynamic @ setpos_exact 7915.86 3237.02 486
  5012.  
  5013. Un-solidified prop_dynamic @ setpos_exact 7726.86 3238.02 486
  5014.  
  5015. Un-solidified prop_dynamic @ setpos_exact 7538.86 3238.02 486
  5016.  
  5017. Un-solidified prop_dynamic @ setpos_exact 7301.75 3237.04 486
  5018.  
  5019. Un-solidified prop_dynamic @ setpos_exact 7300.86 2906.02 486
  5020.  
  5021. Un-solidified prop_dynamic @ setpos_exact 7539.75 3601.04 486
  5022.  
  5023. Un-solidified prop_dynamic @ setpos_exact 7727.75 3601.04 486
  5024.  
  5025. Un-solidified prop_dynamic @ setpos_exact 7915.88 3601.01 486
  5026.  
  5027. Un-solidified prop_dynamic @ setpos_exact 7859.87 3739.32 230.068
  5028.  
  5029. Un-solidified prop_dynamic @ setpos_exact 7917 2905 486
  5030.  
  5031. Un-solidified prop_dynamic @ setpos_exact 7728 2906 486
  5032.  
  5033. Un-solidified prop_dynamic @ setpos_exact 7540 2906 486
  5034.  
  5035. Un-solidified prop_dynamic @ setpos_exact 7302 3601 486
  5036.  
  5037. Un-solidified ALL props with model: "models/props/de_nuke/IndustrialLight01.mdl"
  5038.  
  5039. PvP:
  5040.  
  5041. Clip "_nav_backlightleft" blocks Survivors @ setpos_exact 5249 4124 -265
  5042.  
  5043. Clip "_nav_backlightright" blocks Survivors @ setpos_exact 5243 4210 -265
  5044.  
  5045. Deleted func_playerinfected_clip @ setpos_exact 10511 3839 687
  5046.  
  5047. Brush "_losfix_copcar" created @ setpos_exact 9996 5815 16
  5048.  
  5049. Brush "_losfix_semi1" created @ setpos_exact 9043 4927 26
  5050.  
  5051. Brush "_losfix_semi2" created @ setpos_exact 9073 4913 18
  5052.  
  5053. Clip "_generator_qolstep1" blocks Infected @ setpos_exact 8021 2880 16
  5054.  
  5055. Clip "_generator_qolstep2" blocks Infected @ setpos_exact 8021 3168 16
  5056.  
  5057. Clip "_ladder_deadendrubble_clip" blocks Everyone @ setpos_exact 2149 3922 -242
  5058.  
  5059. Clip "_ladder_generatorwindow_clipa" blocks Infected @ setpos_exact 7944 2512 425
  5060.  
  5061. Clip "_ladder_generatorwindow_clipb" blocks Infected @ setpos_exact 7568 2512 425
  5062.  
  5063. Clip "_ladder_generatorwindow_clipc" blocks Infected @ setpos_exact 7734 2462 425
  5064.  
  5065. Clip "_ladder_tanksubqol_clip" blocks Everyone @ setpos_exact 6290 3284 -336
  5066.  
  5067. Clip "_ladder_tanksubway_clip" blocks Infected @ setpos_exact 6999 2919 -188
  5068.  
  5069. Clip "_ladder_tanksubwreck_clip" blocks Everyone @ setpos_exact 4306 4053 -231
  5070.  
  5071. LADDER: _ladder_deadendrubble_cloned_endfenceshortest
  5072.  
  5073. LADDER: _ladder_endpawnbrick_cloned_trashbagdrop
  5074.  
  5075. LADDER: _ladder_endpolicefence_cloned_oneunitbroke
  5076.  
  5077. LADDER: _ladder_endquickroof_cloned_oneunitbroke
  5078.  
  5079. LADDER: _ladder_eventminigunnew_cloned_eventminigun
  5080.  
  5081. LADDER: _ladder_eventwindowleftB_cloned_endfenceshortest
  5082.  
  5083. LADDER: _ladder_eventwindowleftT_cloned_eventwindowright
  5084.  
  5085. LADDER: _ladder_genwinglassleft_cloned_firebarrelfence
  5086.  
  5087. LADDER: _ladder_genwinglassright_cloned_firebarrelfence
  5088.  
  5089. LADDER: _ladder_innertanker_cloned_nodrawfence
  5090.  
  5091. LADDER: _ladder_newrocketboom_cloned_trashbagdrop
  5092.  
  5093. LADDER: _ladder_permstuckpawnfence_cloned_endfenceshortest
  5094.  
  5095. LADDER: _ladder_permstuckpawnrear_cloned_eventminigun
  5096.  
  5097. LADDER: _ladder_postsubrubble_cloned_firebarrelfence
  5098.  
  5099. LADDER: _ladder_quickstepqol_cloned_wrongwayfence
  5100.  
  5101. LADDER: _ladder_subwaynontrashside_cloned_endalleyfence
  5102.  
  5103. LADDER: _ladder_tanksubqol_cloned_copcarsbrick
  5104.  
  5105. LADDER: _ladder_tanksubway_cloned_copcarsbrick
  5106.  
  5107. LADDER: _ladder_tanksubwreck_cloned_endfenceshortest
  5108.  
  5109. LADDER: _ladder_tankwarprubble_cloned_warehousewindow
  5110.  
  5111. LADDER: _ladder_windowdropleft_cloned_trashbagdrop
  5112.  
  5113. LADDER: _ladder_windowdropright_cloned_trashbagdrop
  5114.  
  5115. Static prop "_yesdraw_generatorroom" W/ "models/props_update/c8m2_generatorroom.mdl" @ setpos_exact 7748 2448.1 513
  5116.  
  5117. Static prop "_yesdraw_planka" W/ "models/props_swamp/plank001b_192.mdl" @ setpos_exact 7283 2638 424
  5118.  
  5119. Static prop "_yesdraw_plankb" W/ "models/props_swamp/plank001b_192.mdl" @ setpos_exact 7477 2638 444
  5120.  
  5121. Static prop "_yesdraw_plankc" W/ "models/props_swamp/plank001b_192.mdl" @ setpos_exact 8040 2638 435
  5122.  
  5123. Static prop "_yesdraw_tallroof_hunt1" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 8961 4364 1215.9
  5124.  
  5125. Static prop "_yesdraw_tallroof_hunt2" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 8548 4364 1215.99
  5126.  
  5127. Static prop "_yesdraw_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 7540 2556 410
  5128.  
  5129. Static prop "_yesdraw_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 7971 2556 410
  5130.  
  5131. Static prop "_yesdraw_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 7756 2440 410
  5132.  
  5133. Ladder found @ "8657 5483.5 92" and shifted w/ offset @ "0 -1 0"
  5134.  
  5135. FIX: Generator Room has 13 hanging lights and 9 need to be made non-solid.
  5136.  
  5137. Un-solidified prop_dynamic @ setpos_exact 7915.86 3237.02 486
  5138.  
  5139. Un-solidified prop_dynamic @ setpos_exact 7726.86 3238.02 486
  5140.  
  5141. Un-solidified prop_dynamic @ setpos_exact 7538.86 3238.02 486
  5142.  
  5143. Un-solidified prop_dynamic @ setpos_exact 7301.75 3237.04 486
  5144.  
  5145. Un-solidified prop_dynamic @ setpos_exact 7300.86 2906.02 486
  5146.  
  5147. Un-solidified prop_dynamic @ setpos_exact 7539.75 3601.04 486
  5148.  
  5149. Un-solidified prop_dynamic @ setpos_exact 7727.75 3601.04 486
  5150.  
  5151. Un-solidified prop_dynamic @ setpos_exact 7915.88 3601.01 486
  5152.  
  5153. Un-solidified prop_dynamic @ setpos_exact 7859.87 3739.32 230.068
  5154.  
  5155. Un-solidified prop_dynamic @ setpos_exact 7917 2905 486
  5156.  
  5157. Un-solidified prop_dynamic @ setpos_exact 7728 2906 486
  5158.  
  5159. Un-solidified prop_dynamic @ setpos_exact 7540 2906 486
  5160.  
  5161. Un-solidified prop_dynamic @ setpos_exact 7302 3601 486
  5162.  
  5163. Un-solidified ALL props with model: "models/props/de_nuke/IndustrialLight01.mdl"
  5164.  
  5165. Survival:
  5166.  
  5167. Clip "_survival_vendors" blocks Survivors @ setpos_exact 7406 3769 381.4
  5168.  
  5169. ------------------------------------------------------------------------------------------------------------------------
  5170.  
  5171. NO MERCY - SEWER || c8m3_sewers
  5172.  
  5173. All:
  5174.  
  5175. Clip "_commonhop_trashbags" blocks Survivors @ setpos_exact 10693 5279 17
  5176.  
  5177. Clip "_clipextend_roofandfence" blocks Survivors @ setpos_exact 10525 6365 24
  5178.  
  5179. Clip "_filecabinet_hole" blocks Survivors @ setpos_exact 10928 8208 292
  5180.  
  5181. Clip "_window_ricky" blocks Survivors @ setpos_exact 13680 11132 208
  5182.  
  5183. Clip "_commonhop_trimescape" blocks Survivors @ setpos_exact 14240 11137 208
  5184.  
  5185. Clip "_permstuck_semitrailer" blocks Infected @ setpos_exact 13349 11144 24
  5186.  
  5187. Clip "_booster_escapeladder" blocks Survivors @ setpos_exact 14680 13819 255
  5188.  
  5189. Clip "_nav_garagewindow1" blocks Everyone @ setpos_exact 12044 5900 19
  5190.  
  5191. Clip "_nav_garagewindow2" blocks Everyone @ setpos_exact 11928 5948 19
  5192.  
  5193. Clip "_unattackable_wrongway1" blocks Survivors @ setpos_exact 11030 4601 560
  5194.  
  5195. Clip "_unattackable_wrongway2" blocks Survivors @ setpos_exact 12264 4532 468
  5196.  
  5197. Clip "_unattackable_wrongway3" blocks Survivors @ setpos_exact 13003 5742 568
  5198.  
  5199. Clip "_unattackable_hospital1" blocks Survivors @ setpos_exact 12473 12235 457
  5200.  
  5201. Clip "_unattackable_hospital2" blocks Survivors @ setpos_exact 12473 11475 457
  5202.  
  5203. Clip "_unattackable_hospital3" blocks Survivors @ setpos_exact 13890 10833 464
  5204.  
  5205. Clip "_unattackable_hospital4" blocks Survivors @ setpos_exact 14791 11454 608
  5206.  
  5207. Clip "_clipextend_alley" blocks Survivors @ setpos_exact 12774 8347 432
  5208.  
  5209. Clip "_clipextend_warehouse1" blocks Survivors @ setpos_exact 10742 7529 843
  5210.  
  5211. Clip "_clipextend_warehouse2" blocks Survivors @ setpos_exact 11795 7941 800
  5212.  
  5213. trigger_auto_crouch "_duckqol_warehousevent" created @ setpos_exact 12712 8148 304
  5214.  
  5215. Clip "_gasstationroof_TMP" blocks Survivors @ setpos_exact 12186 6694 324
  5216.  
  5217. Clip "_ladderqol_scissorlift" blocks Everyone initially disabled @ setpos_exact 12687 7171 16
  5218.  
  5219. LOGIC: TMP Gas Station roof clip will be deleted when it explodes.
  5220.  
  5221. MOVER: Clip "_ladderqol_scissorlift" simulated to move up with Scissor Lift.
  5222.  
  5223. PvP:
  5224.  
  5225. LOGIC: TMP shortcut booster clips will be deleted when Scissor Lift is started.
  5226. Caution: Do not delete this logic otherwise the clips are gamebreakers.
  5227.  
  5228. Clip "_shortcut_booster_TMP1" blocks Survivors @ setpos_exact 10897 6764 176
  5229.  
  5230. Clip "_shortcut_booster_TMP2" blocks Survivors @ setpos_exact 11032 7048 252
  5231.  
  5232. Deleted ([1395] func_brush) @ setpos_exact 10528 6170.91 62.5938
  5233.  
  5234. Deleted ([1394] func_brush) @ setpos_exact 10528 6558.31 62.5938
  5235.  
  5236. Deleted ([1426] func_brush) @ setpos_exact 14794 11567.2 625.313
  5237.  
  5238. Deleted func_playerinfected_clip @ setpos_exact 14778 11135 607
  5239.  
  5240. Deleted func_playerinfected_clip @ setpos_exact 13319 10275 745
  5241.  
  5242. Deleted func_playerinfected_clip @ setpos_exact 10503 5935 7
  5243.  
  5244. Deleted func_playerinfected_clip @ setpos_exact 12695 6679 799
  5245.  
  5246. Tank/Charger chokepoint atomizer created @ setpos_exact 12695 8149 16
  5247.  
  5248. Tank/Charger chokepoint atomizer created @ setpos_exact 14272 11613 -20
  5249.  
  5250. Tank/Charger chokepoint atomizer created @ setpos_exact 14272 11613 -30
  5251.  
  5252. Tank/Charger chokepoint atomizer created @ setpos_exact 14272 11613 -10
  5253.  
  5254. Brush "_losfix_copcar" created @ setpos_exact 10222 5963 16
  5255.  
  5256. Brush "_losfix_gasstation_los" created @ setpos_exact 12659 6089 312
  5257.  
  5258. Brush "_losfix_pipes" created @ setpos_exact 13490 7744.5 -249
  5259.  
  5260. Brush "_losfix_semi" created @ setpos_exact 11906 6664 30
  5261.  
  5262. Brush "_losfix_sewage_tank1a" created @ setpos_exact 13472 8306 -251
  5263.  
  5264. Brush "_losfix_sewage_tank1b" created @ setpos_exact 13472 7893 -251
  5265.  
  5266. Brush "_losfix_sewage_tank2a" created @ setpos_exact 13042 7891 -251
  5267.  
  5268. Brush "_losfix_sewage_tank2b" created @ setpos_exact 13042 8120 -251
  5269.  
  5270. Brush "_losfix_sewage_tank2c" created @ setpos_exact 13040 8300 -251
  5271.  
  5272. Clip "_burgerfence_blocker1" blocks Infected @ setpos_exact 10137 6395 8
  5273.  
  5274. Clip "_burgerfence_blocker2" blocks Infected @ setpos_exact 10137 6395 8
  5275.  
  5276. Clip "_burgerfence_blocker3" blocks Infected @ setpos_exact 10137 6395 8
  5277.  
  5278. Clip "_ladder_burgerfenceshared_clip" blocks Infected @ setpos_exact 10521 6386 8
  5279.  
  5280. Clip "_ladder_scissormini_clipleft" blocks Everyone @ setpos_exact 12044 7545 323
  5281.  
  5282. Clip "_ladder_scissormini_clipright" blocks Everyone @ setpos_exact 12094 7545 323
  5283.  
  5284. Clip "_ladder_warehousealley_clip" blocks Everyone @ setpos_exact 12789 8317 48
  5285.  
  5286. Clip "_losfix_gasstation_coll" blocks Infected @ setpos_exact 12659 6089 312
  5287.  
  5288. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact 15184 11445 608
  5289.  
  5290. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact 14964 11156 736
  5291.  
  5292. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact 13584 10754 746
  5293.  
  5294. Clip "_waterworks_blocker" blocks Infected @ setpos_exact 13008 7408 800
  5295.  
  5296. Clip "_waterworks_collision" blocks Infected @ setpos_exact 12761 7407 857
  5297.  
  5298. LADDER: _ladder_brickapartment_cloned_unusedmercyback
  5299.  
  5300. LADDER: _ladder_gasstationfence_cloned_warehousepipe
  5301.  
  5302. LADDER: _ladder_overturnedsemiB_cloned_nodrawfence
  5303.  
  5304. LADDER: _ladder_overturnedsemiT_cloned_sewerdropB
  5305.  
  5306. LADDER: _ladder_sewerup1_cloned_uppershafts
  5307.  
  5308. LADDER: _ladder_sewerup2_cloned_uppershafts
  5309.  
  5310. LADDER: _ladder_startpawnrear_cloned_warehousepipe
  5311.  
  5312. LADDER: _ladder_warehousealley_cloned_endminialley
  5313.  
  5314. LADDER: _ladder_warehouseexittall_cloned_unusedmercyback
  5315.  
  5316. LADDER: _ladder_warehousemiddleB_cloned_endminialley
  5317.  
  5318. LADDER: _ladder_warehousemiddleT_cloned_burgerentrance
  5319.  
  5320. LADDER: _ladder_warehouserightboxes_cloned_mercyside
  5321.  
  5322. LADDER: _ladder_warehousewindow_cloned_endminialley
  5323.  
  5324. Static prop "_burgerfence_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 10357 7000 65
  5325.  
  5326. Static prop "_burgerfence_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 10057 7000 65
  5327.  
  5328. Static prop "_burgerfence_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 9757 7000 65
  5329.  
  5330. Static prop "_ladder_scissormini_pipeB" W/ "models/props_mill/pipeset08d_64_001a.mdl" @ setpos_exact 12070 7541 351
  5331.  
  5332. Static prop "_ladder_scissormini_pipeT" W/ "models/props_mill/pipeset08d_64_001a.mdl" @ setpos_exact 12070 7541 405
  5333.  
  5334. Static prop "_permstuck_dumpsterspool" W/ "models/props_industrial/wire_spool_02.mdl" @ setpos_exact 10419 6513 45
  5335.  
  5336. Static prop "_propladder_gasstation" W/ "models/props_rooftop/acvent02.mdl" @ setpos_exact 12766 6626 320
  5337.  
  5338. Static prop "_waterworks_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 13004 6822 855
  5339.  
  5340. Static prop "_waterworks_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 13004 7122 855
  5341.  
  5342. Static prop "_waterworks_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 13004 7422 855
  5343.  
  5344. Static prop "_waterworks_wrongwayd" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 13004 7722 855
  5345.  
  5346. Static prop "_waterworks_wrongwaye" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 12914 7765 855
  5347.  
  5348. VIS: Infected ladder "_scissormini" parented to its pipe to force render.
  5349.  
  5350. LADDER: _ladder_scissormini_cloned_sewerdropB
  5351.  
  5352. LOGIC: Gas Station explosion will spawn a new Infected ladder.
  5353.  
  5354. LADDER: _ladder_gasdynamictop_cloned_burgerbackm
  5355.  
  5356. LADDER: _ladder_gasdynamicbot_cloned_burgerbackm
  5357.  
  5358. Survival:
  5359.  
  5360. LOGIC: Gas Station explosion will alternatively start Survival timer.
  5361.  
  5362. ------------------------------------------------------------------------------------------------------------------------
  5363.  
  5364. NO MERCY - HOSPITAL || c8m4_interior
  5365.  
  5366. All:
  5367.  
  5368. Clip "_permstuck_cabinetchair" blocks Everyone @ setpos_exact 11935 13061 312
  5369.  
  5370. Clip "_witch_windows" blocks Survivors @ setpos_exact 12909 12360 320
  5371.  
  5372. Clip "_booster_skylights" blocks Survivors @ setpos_exact 12550 12112 448
  5373.  
  5374. Clip "_nav_elevatorbutton" blocks Survivors @ setpos_exact 13491 15103 493
  5375.  
  5376. Clip "_counterweight_edging" blocks Survivors @ setpos_exact 13144 15243 5526
  5377.  
  5378. FIX: Lower and upper elevator doors will no longer break if SI spawn inside them.
  5379.  
  5380. FIX: Upper generator prop made immovable until Survivors reach top of elevator.
  5381.  
  5382. PvP:
  5383.  
  5384. Deleted ([894] prop_physics) @ setpos_exact 13248 14320 553.625
  5385.  
  5386. Deleted ([1102] prop_physics) @ setpos_exact 13056 14416 553.625
  5387.  
  5388. Brush "_losfix_icucurtain1_los" created @ setpos_exact 11936 14463 424
  5389.  
  5390. Brush "_losfix_icucurtain2_los" created @ setpos_exact 11936 14575 424
  5391.  
  5392. Brush "_losfix_icucurtain3_los" created @ setpos_exact 11936 14687 424
  5393.  
  5394. Brush "_losfix_icucurtain4_los" created @ setpos_exact 11936 14799 424
  5395.  
  5396. Brush "_losfix_icucurtain5_los" created @ setpos_exact 11936 14911 424
  5397.  
  5398. Clip "_losfix_icucurtain1_coll" blocks Everyone @ setpos_exact 11936 14463 424
  5399.  
  5400. Clip "_losfix_icucurtain2_coll" blocks Everyone @ setpos_exact 11936 14575 424
  5401.  
  5402. Clip "_losfix_icucurtain3_coll" blocks Everyone @ setpos_exact 11936 14687 424
  5403.  
  5404. Clip "_losfix_icucurtain4_coll" blocks Everyone @ setpos_exact 11936 14799 424
  5405.  
  5406. Clip "_losfix_icucurtain5_coll" blocks Everyone @ setpos_exact 11936 14911 424
  5407.  
  5408. Clip "_yesdrawskylight_clipwaya" blocks Infected @ setpos_exact 11912 12204 448
  5409.  
  5410. Clip "_yesdrawskylight_clipwayb" blocks Infected @ setpos_exact 12416 11904 448
  5411.  
  5412. Clip "_yesdrawskylight_clipwayc" blocks Infected @ setpos_exact 12920 12204 448
  5413.  
  5414. LADDER: _ladder_skylighthanglight_cloned_shortestvent
  5415.  
  5416. LADDER: _ladder_ventceiling02left_cloned_sinkvent
  5417.  
  5418. LADDER: _ladder_ventceiling03right_cloned_sinkvent
  5419.  
  5420. Static prop "_ventceiling02_static" W/ "models/props_vents/VentBreakable01_DM01_Frame.mdl" @ setpos_exact 13248 14320 554
  5421.  
  5422. Static prop "_yesdrawskylight_acvent1" W/ "models/props_rooftop/acvent03.mdl" @ setpos_exact 12343 12237 448
  5423.  
  5424. Static prop "_yesdrawskylight_acvent2" W/ "models/props_rooftop/acvent03.mdl" @ setpos_exact 12343 12365 448
  5425.  
  5426. Static prop "_yesdrawskylight_hanginglight1" W/ "models/props/cs_office/Light_shop.mdl" @ setpos_exact 12348.2 12200.3 373
  5427.  
  5428. Static prop "_yesdrawskylight_hanginglight2" W/ "models/props/cs_office/Light_shop.mdl" @ setpos_exact 12380 12758 373
  5429.  
  5430. Static prop "_yesdrawskylight_hanginglight3" W/ "models/props/cs_office/Light_shop.mdl" @ setpos_exact 12380 12911 373
  5431.  
  5432. Static prop "_yesdrawskylight_roof" W/ "models/props_update/c8m4_skylight_rooftop.mdl" @ setpos_exact 12416 12216 447
  5433.  
  5434. Static prop "_yesdrawskylight_wrongway1" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 11903.5 12326.2 511.365
  5435.  
  5436. Static prop "_yesdrawskylight_wrongway2" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 11903.5 12070.2 511.365
  5437.  
  5438. Static prop "_yesdrawskylight_wrongway3" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 12117.5 11902.2 511.365
  5439.  
  5440. Static prop "_yesdrawskylight_wrongway4" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 12415.5 11902.2 511.365
  5441.  
  5442. Static prop "_yesdrawskylight_wrongway5" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 12713.5 11902.2 511.365
  5443.  
  5444. Static prop "_yesdrawskylight_wrongway6" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 12927.5 12070.2 511.365
  5445.  
  5446. Static prop "_yesdrawskylight_wrongway7" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 12927.5 12326.2 511.365
  5447.  
  5448. Static prop "_ventceiling03_static" W/ "models/props_vents/VentBreakable01.mdl" @ setpos_exact 13090 14416 520
  5449.  
  5450. QOL: The breakable railings in the cafeteria have had their health reduced for Versus-only QoL.
  5451.  
  5452. Logic modified for elevator fall-through fix
  5453. Clip "_elevator_tabbernaut" blocks Survivors @ setpos_exact 13541 15357 5543
  5454.  
  5455. Clip "_elevator_infectdump" blocks Infected initially disabled @ setpos_exact 13541 15357 5619
  5456.  
  5457. ------------------------------------------------------------------------------------------------------------------------
  5458.  
  5459. NO MERCY - ROOFTOP || c8m5_rooftop
  5460.  
  5461. All:
  5462.  
  5463. Decal "decals/decalstain002a" painted @ setpos_exact 6480 8794 6161
  5464.  
  5465. Decal "decals/prodconcrete05" painted @ setpos_exact 7281 8960 6191
  5466.  
  5467. Decal "decals/debris_concrete001a" painted @ setpos_exact 7283 8926 6088
  5468.  
  5469. Decal "decals/prodconcrete04" painted @ setpos_exact 5942 9424 5983
  5470.  
  5471. Decal "decals/infstains" painted @ setpos_exact 6188 7616 5967
  5472.  
  5473. Clip "_charger_smoother_01" blocks Everyone @ setpos_exact 7932 8496 5780
  5474.  
  5475. Clip "_charger_smoother_02" blocks Everyone @ setpos_exact 7804 8058 5780
  5476.  
  5477. Clip "_charger_smoother_03" blocks Everyone @ setpos_exact 7804 8974 5780
  5478.  
  5479. Clip "_charger_smoother_04" blocks Everyone @ setpos_exact 7877 8795 5780
  5480.  
  5481. Clip "_charger_smoother_05" blocks Everyone @ setpos_exact 7273 9436 5780
  5482.  
  5483. Clip "_charger_smoother_06" blocks Everyone @ setpos_exact 7273 7780 5780
  5484.  
  5485. Clip "_charger_smoother_07" blocks Everyone @ setpos_exact 5421 7780 5780
  5486.  
  5487. Clip "_charger_smoother_08" blocks Everyone @ setpos_exact 4996 8496 5780
  5488.  
  5489. Clip "_charger_smoother_09" blocks Everyone @ setpos_exact 5124 8962 5780
  5490.  
  5491. Clip "_charger_smoother_10" blocks Everyone @ setpos_exact 5124 8042 5780
  5492.  
  5493. Clip "_charger_smoother_11" blocks Everyone @ setpos_exact 5049 8798 5780
  5494.  
  5495. Clip "_charger_smoother_12" blocks Everyone @ setpos_exact 5066 8188 5780
  5496.  
  5497. Clip "_charger_smoother_13" blocks Everyone @ setpos_exact 5418 9228 5780
  5498.  
  5499. Clip "_charger_smoother_14" blocks Everyone @ setpos_exact 6112 9644 5652
  5500.  
  5501. Clip "_charger_smoother_15" blocks Everyone @ setpos_exact 6988 9462 5652
  5502.  
  5503. Clip "_charger_smoother_16" blocks Everyone @ setpos_exact 5556 9386 5652
  5504.  
  5505. Clip "_charger_smoother_17" blocks Everyone @ setpos_exact 5666 9572 5652
  5506.  
  5507. Clip "_charger_smoother_18" blocks Everyone @ setpos_exact 6897 9557 5652
  5508.  
  5509. Clip "_charger_smoother_19" blocks Everyone @ setpos_exact 6988 7570 5652
  5510.  
  5511. Clip "_charger_smoother_20" blocks Everyone @ setpos_exact 6875 7434 5652
  5512.  
  5513. Clip "_charger_smoother_21" blocks Everyone @ setpos_exact 6114 7364 5652
  5514.  
  5515. Clip "_charger_smoother_22" blocks Everyone @ setpos_exact 5649 7449 5652
  5516.  
  5517. Clip "_charger_smoother_23" blocks Everyone @ setpos_exact 5556 7630 5652
  5518.  
  5519. Clip "_charger_smoother_24" blocks Everyone @ setpos_exact 5816 7780 5780
  5520.  
  5521. Clip "_charger_smoother_25" blocks Everyone @ setpos_exact 5816 9228 5780
  5522.  
  5523. Clip "_charger_smoother_26" blocks Everyone @ setpos_exact 7861 8193 5780
  5524.  
  5525. Clip "_railing_rampright" blocks Everyone @ setpos_exact 5473 8478 6000
  5526.  
  5527. Clip "_railing_rampleft" blocks Everyone @ setpos_exact 5567 8478 6000
  5528.  
  5529. PvP:
  5530.  
  5531. Brush "_losfix_pipes1" created @ setpos_exact 5830 8147 6055.36
  5532.  
  5533. Brush "_losfix_pipes2" created @ setpos_exact 5982 8852 6055.36
  5534.  
  5535. Clip "_ladder_helipadcosmetic_clip" blocks Everyone @ setpos_exact 7288 8968 6206
  5536.  
  5537. Clip "_ladder_missingpiece_clipl" blocks Everyone @ setpos_exact 6460 7911 5772
  5538.  
  5539. Clip "_ladder_missingpiece_clipr" blocks Everyone @ setpos_exact 6462 7951 5772
  5540.  
  5541. LADDER: _ladder_deathchargenew_cloned_deathcharge
  5542.  
  5543. LADDER: _ladder_deathjockeynew_cloned_deathjockey
  5544.  
  5545. LADDER: _ladder_helipadclimbable_cloned_satelliteyellow
  5546.  
  5547. LADDER: _ladder_helipadcosmetic_cloned_deathcharge
  5548.  
  5549. LADDER: _ladder_missingpiece_cloned_northgutter
  5550.  
  5551. LADDER: _ladder_saferoomlulz_cloned_rooftopmain
  5552.  
  5553. LADDER: _ladder_startstairwell_cloned_deathjockey
  5554.  
  5555. LADDER: _ladder_transformer1_cloned_deathcharge
  5556.  
  5557. LADDER: _ladder_transformer2_cloned_deathcharge
  5558.  
  5559. LADDER: _ladder_transformer3_cloned_deathjockey
  5560.  
  5561. LADDER: _ladder_transformer4_cloned_deathcharge
  5562.  
  5563. LADDER: _ladder_transformer5_cloned_deathjockey
  5564.  
  5565. LADDER: _ladder_uponewayside_cloned_longshaft
  5566.  
  5567. Static prop "_ladder_missingpiece_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 6464 7933 5952
  5568.  
  5569. Static prop "_ladder_startstairwell_pipe" W/ "models/props_pipes/PipeSet02d_512_001a.mdl" @ setpos_exact 5421 8586 5587.8
  5570.  
  5571. Static prop "_ladder_transformer5_patch" W/ "models/props_pipes/PipeSet32d_256_001a.mdl" @ setpos_exact 6340 8757 5784
  5572.  
  5573. Static prop "_ladder_uponewayside_pipe" W/ "models/props_pipes/pipeset02d_512_001a.mdl" @ setpos_exact 7553 9100 5950
  5574.  
  5575. Coop:
  5576.  
  5577. LADDER: _ladder_saferoomlulz_cloned_rooftopmain
  5578.  
  5579. Scavenge:
  5580.  
  5581. SCAV: Deleted named safe door to no longer disconnect tongues when in CHECKPOINT.
  5582.  
  5583. SCAV: Spawned physics clip to prevent can falling through displacement.
  5584.  
  5585. Clip "_dispcollision_rooftop" blocks All and Physics @ setpos_exact 6825 9535 5612
  5586.  
  5587. ------------------------------------------------------------------------------------------------------------------------
  5588. ------------------------------------------------------------------------------------------------------------------------
  5589.  
  5590. CRASH COURSE - THE ALLEYS || c9m1_alleys
  5591.  
  5592. All:
  5593.  
  5594. Clip "_allmodes_griefrooma" blocks Survivors @ setpos_exact 156 -6648 -22
  5595.  
  5596. Clip "_allmodes_griefroomb" blocks Survivors @ setpos_exact 28 -6652 -22
  5597.  
  5598. Clip "_cliprework_rooftop01" blocks Survivors @ setpos_exact -5434 -9392 336
  5599.  
  5600. Clip "_cliprework_rooftop02" blocks Survivors @ setpos_exact -4864 -9722 352
  5601.  
  5602. Clip "_commonhop_window" blocks Survivors @ setpos_exact -4480 -10632 144
  5603.  
  5604. Clip "_clipgap_alley" blocks Survivors @ setpos_exact -4295 -8320 256
  5605.  
  5606. Clip "_curvejump_van" blocks Survivors @ setpos_exact -3311 -4407 -345
  5607.  
  5608. Clip "_cliprework_mirrorwarehouse" blocks Everyone @ setpos_exact -5412 -10506 64
  5609.  
  5610. Clip "_permstuck_treea" blocks Everyone @ setpos_exact -3520 -4949 -242
  5611.  
  5612. Clip "_permstuck_treeb" blocks Everyone @ setpos_exact -2656 -4782 -300
  5613.  
  5614. Clip "_permstuck_treec" blocks Everyone @ setpos_exact -865 -6583 -17
  5615.  
  5616. Clip "_permstuck_treed" blocks Everyone @ setpos_exact -577 -7055 -23
  5617.  
  5618. Clip "_curvejump_railing" blocks Survivors @ setpos_exact -1714 -1650 64
  5619.  
  5620. Clip "_cliprework_noladders" blocks Survivors @ setpos_exact -7976 -10924 208
  5621.  
  5622. Clip "_solidify_acunit" blocks Everyone @ setpos_exact -708 -1224 23
  5623.  
  5624. Clip "_commonhop_van" blocks Survivors @ setpos_exact -2312 -9675 155
  5625.  
  5626. Clip "_booster_trafficlighta" blocks Survivors @ setpos_exact -1420 -7002 230
  5627.  
  5628. Clip "_booster_trafficlightb" blocks Survivors @ setpos_exact -1364 -6902 367
  5629.  
  5630. Clip "_booster_trafficlightc" blocks Survivors @ setpos_exact -1094 -6917 309
  5631.  
  5632. Clip "_booster_trafficlightd" blocks Survivors @ setpos_exact -1242 -6515 309
  5633.  
  5634. Clip "_booster_acunit" blocks Survivors @ setpos_exact -1631 -6152 304
  5635.  
  5636. Clip "_booster_brokenframe" blocks Survivors @ setpos_exact -1965 -6409 414
  5637.  
  5638. Clip "_booster_rentsign" blocks Survivors @ setpos_exact -1648 -5552 291
  5639.  
  5640. Clip "_booster_enginecar" blocks Survivors @ setpos_exact -1982 -7055 465
  5641.  
  5642. Clip "_booster_telepole1" blocks Survivors @ setpos_exact -1111 -6480 694
  5643.  
  5644. Clip "_booster_telepole2" blocks Survivors @ setpos_exact 50 -5432 464
  5645.  
  5646. Clip "_clipgap_survivoronly" blocks Survivors @ setpos_exact 1428 -4936 -144
  5647.  
  5648. LOGIC: Bile anti-skip made 2 breakwalls indestructible until howitzer fires.
  5649.  
  5650. PvP:
  5651.  
  5652. Tank/Charger chokepoint atomizer created @ setpos_exact -6392 -10719 64
  5653.  
  5654. Tank/Charger chokepoint atomizer created @ setpos_exact -10312 -9907 0
  5655.  
  5656. Brush "_losfix_ambulance" created @ setpos_exact -1431 -4449 71
  5657.  
  5658. Brush "_losfix_boxcar" created @ setpos_exact -7360 -10074 2
  5659.  
  5660. Brush "_losfix_shelf1" created @ setpos_exact -5331 -10944 69
  5661.  
  5662. Brush "_losfix_shelf2" created @ setpos_exact 561 -2002 -171
  5663.  
  5664. Clip "_ladder_aftertanker_clipleft" blocks Everyone @ setpos_exact -2248 -5372 -224
  5665.  
  5666. Clip "_ladder_aftertanker_clipright" blocks Everyone @ setpos_exact -2292 -5372 -224
  5667.  
  5668. Clip "_ladder_dualwindowshared_clip" blocks Infected + AI @ setpos_exact -7960 -10924 191
  5669.  
  5670. Clip "_solidify_acunit" blocks Everyone @ setpos_exact -708 -1224 23
  5671.  
  5672. LADDER: _ladder_aftertankerB_cloned_flatnosetruck
  5673.  
  5674. LADDER: _ladder_aftertankerT_cloned_flatnosetruck
  5675.  
  5676. LADDER: _ladder_armybarricadeleftfront_cloned_armybarricadeleftback
  5677.  
  5678. LADDER: _ladder_deliveryfence_cloned_extrabarricade
  5679.  
  5680. LADDER: _ladder_dualwindowleft_cloned_startacunit
  5681.  
  5682. LADDER: _ladder_dualwindowright_cloned_startacunit
  5683.  
  5684. LADDER: _ladder_eventsemitrailer_cloned_semitrailerleft
  5685.  
  5686. LADDER: _ladder_firebarrelleft_cloned_firebarrelright
  5687.  
  5688. LADDER: _ladder_gooddeliveryvan_cloned_fencedinstart
  5689.  
  5690. LADDER: _ladder_parkourpipeB_cloned_stainedfence
  5691.  
  5692. LADDER: _ladder_parkourpipeT_cloned_endbackfence
  5693.  
  5694. LADDER: _ladder_parkourtruck_cloned_truckpassage
  5695.  
  5696. LADDER: _ladder_semifenceleft_cloned_endbackfence
  5697.  
  5698. LADDER: _ladder_semifenceright_cloned_endbackfence
  5699.  
  5700. LADDER: _ladder_semitrailerright_cloned_semitrailerleft
  5701.  
  5702. LADDER: _ladder_shortvanqol_cloned_shortwarehouse
  5703.  
  5704. LADDER: _ladder_wreckedboxcar_cloned_bridgesemitrailer
  5705.  
  5706. LADDER: _ladder_yesdrawwindow_cloned_boxwreckback
  5707.  
  5708. Static prop "_yesdrawwindow_surface" W/ "models/props_update/c9m1_nodraw_window.mdl" @ setpos_exact -4350.5 -10816 192
  5709.  
  5710. Ladder found @ "-5432 -11009 224" and shifted w/ offset @ "-450 0 0"
  5711.  
  5712. Ladder found @ "-7056 -11023 140" and shifted w/ offset @ "360 0 0"
  5713.  
  5714. Navmesh modified w/ CHECKPOINT @ setpos_exact 337 -1550 -176
  5715.  
  5716. PROP: Dumpster near "_ladder_yesdrawwindow" moved to improve accessibility.
  5717.  
  5718. Deleted ([344] prop_physics) @ setpos_exact -4433.78 -10580.1 1.875
  5719.  
  5720. Physics prop "_replacement_dumpster" W/ "models/props_junk/dumpster.mdl" @ setpos_exact -4392 -10597 5
  5721.  
  5722. LOGIC: Lowered health of 4 breakwalls from 8.3 scratches to 5 scratches.
  5723.  
  5724. KILL: Deleted 5 func_brush wooden planks and 5 func_brush entry blockers.
  5725.  
  5726. Deleted func_playerinfected_clip @ setpos_exact -7665 -9729 7
  5727.  
  5728. Deleted func_playerinfected_clip @ setpos_exact -6385 -10577 63
  5729.  
  5730. Deleted func_playerinfected_clip @ setpos_exact -4097 -8961 -1
  5731.  
  5732. Deleted func_playerinfected_clip @ setpos_exact -3761 -6081 15
  5733.  
  5734. Deleted func_playerinfected_clip @ setpos_exact 871 -6561 -145
  5735.  
  5736. ------------------------------------------------------------------------------------------------------------------------
  5737.  
  5738. CRASH COURSE - THE TRUCK DEPOT FINALE || c9m2_lots
  5739.  
  5740. All:
  5741.  
  5742. Clip "_commonhop_windowsa" blocks Survivors @ setpos_exact 6850 7040 268
  5743.  
  5744. Clip "_commonhop_windowsb" blocks Survivors @ setpos_exact 7328 6850 268
  5745.  
  5746. Clip "_permstuck_treea" blocks Everyone @ setpos_exact 973 -1632 -231
  5747.  
  5748. Clip "_permstuck_treeb" blocks Everyone @ setpos_exact 5050.6 2458.2 -106.6
  5749.  
  5750. Clip "_permstuck_treec" blocks Everyone @ setpos_exact 3516 616 -198.6
  5751.  
  5752. Clip "_permstuck_treed" blocks Everyone @ setpos_exact 3845 1192 -141
  5753.  
  5754. Clip "_permstuck_treee" blocks Everyone @ setpos_exact 2257 2997 -70.4
  5755.  
  5756. Clip "_permstuck_treef" blocks Everyone @ setpos_exact 2054 4320 25.8
  5757.  
  5758. Clip "_permstuck_treeg" blocks Everyone @ setpos_exact 6724 7421 62.2
  5759.  
  5760. Clip "_cliprework_rooftop" blocks Survivors @ setpos_exact 4118 886 288
  5761.  
  5762. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact 6246 1852 29
  5763.  
  5764. Clip "_cliprework_tracka" blocks Survivors @ setpos_exact 5437 -52 206.3
  5765.  
  5766. Clip "_cliprework_trackb" blocks Survivors @ setpos_exact 5437.3 5128 385
  5767.  
  5768. Clip "_clipgap_fence" blocks Survivors @ setpos_exact 5791 8132 65.8
  5769.  
  5770. Clip "_booster_rollupdoors" blocks Survivors @ setpos_exact 6541 5853 250
  5771.  
  5772. Clip "_booster_rollupdoor" blocks Survivors @ setpos_exact 7040 6836 280
  5773.  
  5774. Clip "_booster_liftframes" blocks Survivors @ setpos_exact 7844 6657 371.3
  5775.  
  5776. Clip "_booster_boxtop" blocks Survivors @ setpos_exact 8479 5823 304.9
  5777.  
  5778. Clip "_booster_elecbox" blocks Survivors @ setpos_exact 7548 5412 434
  5779.  
  5780. Clip "_booster_ventpipe" blocks Survivors @ setpos_exact 7535 6160 495
  5781.  
  5782. Clip "_nav_jump_semitrailer" blocks Survivors @ setpos_exact 5756 1062 -32
  5783.  
  5784. Clip "_nav_jump_cargowindow" blocks Survivors @ setpos_exact 2044 3030 49
  5785.  
  5786. Clip "_booster_armoredtop" blocks Survivors @ setpos_exact 7838 6366 449
  5787.  
  5788. trigger_playermovement "_duckqol_finalevent" with Option Duck @ setpos_exact 7568 7392 447
  5789.  
  5790. LOGIC: Finale switch will re-Lock when all Survivors aren't inside trigger.
  5791.  
  5792. LOGIC: Point-of-no-return clip will be Enabled when finale switch is full.
  5793.  
  5794. Clip "_point_of_no_return" blocks Survivors initially disabled @ setpos_exact 5750 7177 368
  5795.  
  5796. PvP:
  5797.  
  5798. Brush "_losfix_gen1a" created @ setpos_exact 6853 5881 50
  5799.  
  5800. Brush "_losfix_gen1b" created @ setpos_exact 6837 5885 50
  5801.  
  5802. Brush "_losfix_gen2a" created @ setpos_exact 7498 6786 55
  5803.  
  5804. Brush "_losfix_gen2b" created @ setpos_exact 7484 6779 55
  5805.  
  5806. Brush "_losfix_semi1a" created @ setpos_exact 4519 -91 -206
  5807.  
  5808. Brush "_losfix_semi1b" created @ setpos_exact 4477 -121 -206
  5809.  
  5810. Brush "_losfix_semi2" created @ setpos_exact 3560 4539 10
  5811.  
  5812. LADDER: _ladder_armybusfront_cloned_finalebus
  5813.  
  5814. LADDER: _ladder_backfenceright_cloned_backfenceleft
  5815.  
  5816. LADDER: _ladder_bluecontainerplus_cloned_bluecontainer
  5817.  
  5818. LADDER: _ladder_buggycullfix_cloned_bluecontainer
  5819.  
  5820. LADDER: _ladder_containeryardsemi_cloned_metalsupplysemi
  5821.  
  5822. LADDER: _ladder_crashedbus_cloned_finalebus
  5823.  
  5824. LADDER: _ladder_finaleshelffront_cloned_finaleshelfback
  5825.  
  5826. LADDER: _ladder_permstuck_cloned_finalecornerfence
  5827.  
  5828. LADDER: _ladder_startareasemi_cloned_metalsupplysemi
  5829.  
  5830. LADDER: _ladder_startfenceright_cloned_startfenceleft
  5831.  
  5832. LADDER: _ladder_startroofbrick_cloned_startroofpipe
  5833.  
  5834. LADDER: _ladder_warehousesemi_cloned_metalsupplysemi
  5835.  
  5836. LADDER: _ladder_whitecontainer_cloned_bluecontainer
  5837.  
  5838. Static prop "_solidify_startacvent1" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact -99.0076 -574.692 310.902
  5839.  
  5840. Static prop "_solidify_startacvent2" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact -99.2042 -750.692 310.934
  5841.  
  5842. KILL: Deleted 7 func_brush wooden planks and 7 func_brush entry blockers.
  5843.  
  5844. Deleted func_playerinfected_clip @ setpos_exact 2575 -1105 -217
  5845.  
  5846. Deleted func_playerinfected_clip @ setpos_exact 4367 511 -217
  5847.  
  5848. Deleted func_playerinfected_clip @ setpos_exact 6143 959 -145
  5849.  
  5850. Deleted func_playerinfected_clip @ setpos_exact 4335 1583 -65
  5851.  
  5852. Deleted func_playerinfected_clip @ setpos_exact 2559 2495 -113
  5853.  
  5854. Deleted func_playerinfected_clip @ setpos_exact 2959 4751 47
  5855.  
  5856. Deleted func_playerinfected_clip @ setpos_exact 4607 5631 95
  5857.  
  5858. ------------------------------------------------------------------------------------------------------------------------
  5859. ------------------------------------------------------------------------------------------------------------------------
  5860.  
  5861. DEATH TOLL - THE TURNPIKE || c10m1_caves
  5862.  
  5863. All:
  5864.  
  5865. Clip "_dispcrouch_hardone" blocks Everyone @ setpos_exact -11790 -12821 -65
  5866.  
  5867. Clip "_booster_funnel" blocks Survivors @ setpos_exact -12976 -12262 100
  5868.  
  5869. Clip "_curvejump_rocky" blocks Survivors @ setpos_exact -13152 -11044 60.6
  5870.  
  5871. Clip "_cliprework_hillside01" blocks Survivors @ setpos_exact -11849.1 -10286.1 504.3
  5872.  
  5873. Clip "_cliprework_hillside02" blocks Survivors @ setpos_exact -10597.5 -10811 848.5
  5874.  
  5875. Clip "_unattackable_tunnelsolidify" blocks Survivors @ setpos_exact -12367 -9747 496
  5876.  
  5877. Clip "_dispcrouch_popular" blocks Everyone @ setpos_exact -10569 -11466 -510
  5878.  
  5879. Clip "_dispcrouch_unknown" blocks Everyone @ setpos_exact -10812 -11821 -507
  5880.  
  5881. Clip "_dispcrouch_endarea" blocks Everyone @ setpos_exact -11880 -6636 -24
  5882.  
  5883. Clip "_cliprework_dispcrouch_1a" blocks Survivors @ setpos_exact -13714 -12191 142
  5884.  
  5885. Clip "_cliprework_dispcrouch_1b" blocks Everyone @ setpos_exact -13714 -12191 142
  5886.  
  5887. Clip "_cliprework_dispcrouch_2a" blocks Survivors @ setpos_exact -14360 -11744 142
  5888.  
  5889. Clip "_cliprework_dispcrouch_2b" blocks Everyone @ setpos_exact -14360 -11744 142
  5890.  
  5891. Clip "_cliprework_dispcrouch_endarea1" blocks Everyone @ setpos_exact -11066 -5132 -84
  5892.  
  5893. Clip "_cliprework_dispcrouch_endarea2" blocks Everyone @ setpos_exact -10896 -5942 5
  5894.  
  5895. Clip "_permstuck_endrocktree" blocks Infected @ setpos_exact -10228 -5209 388
  5896.  
  5897. Clip "_permstuck_endrockcorner" blocks Everyone @ setpos_exact -11277 -6770 193
  5898.  
  5899. Clip "_dispcrouch_endrocktinytop" blocks Everyone @ setpos_exact -11216 -6525 62
  5900.  
  5901. Clip "_dispcrouch_endrockparkour" blocks Everyone @ setpos_exact -12284 -6439 147
  5902.  
  5903. Static prop "_crashcourse_armoredvan_glass" W/ "models/props_vehicles/deliveryvan_armored_glass.mdl" @ setpos_exact -11274 -15292 -150.2
  5904.  
  5905. Static prop "_crashcourse_armoredvan" W/ "models/props_vehicles/deliveryvan_armored.mdl" @ setpos_exact -11274 -15292 -150.2
  5906.  
  5907. PvP:
  5908.  
  5909. Deleted func_playerinfected_clip @ setpos_exact -12961 -9825 319
  5910.  
  5911. Deleted func_playerinfected_clip @ setpos_exact -12017 -10977 -513
  5912.  
  5913. Deleted func_playerinfected_clip @ setpos_exact -11929 -11177 -513
  5914.  
  5915. Brush "_losfix_semi" created @ setpos_exact -12260 -11102 -49
  5916.  
  5917. Brush "_losfix_van1" created @ setpos_exact -12318 -8360 -56
  5918.  
  5919. Brush "_losfix_van2" created @ setpos_exact -12990 -6644 -56
  5920.  
  5921. Clip "_ladder_bridgetunnel_backboard" blocks Everyone @ setpos_exact -12348 -9814 272
  5922.  
  5923. Clip "_ladder_bridgetunnel_clip" blocks Everyone @ setpos_exact -12617 -9856 -50
  5924.  
  5925. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -12353 -9664 496
  5926.  
  5927. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact -11980 -9735 496
  5928.  
  5929. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact -12031 -9735 496
  5930.  
  5931. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact -12975 -9745 496
  5932.  
  5933. Clip "_yesdrawcliff_clip1" blocks Infected @ setpos_exact -11472 -10279 496
  5934.  
  5935. Clip "_yesdrawcliff_clip2" blocks Infected @ setpos_exact -10881 -10752 496
  5936.  
  5937. LADDER: _ladder_bridgetunnelB1_cloned_endfencedumpster
  5938.  
  5939. LADDER: _ladder_bridgetunnelB2_cloned_endfencesafehouse
  5940.  
  5941. LADDER: _ladder_bridgetunnelT_cloned_firsttunnelhole
  5942.  
  5943. LADDER: _ladder_trafficlightB_cloned_secondtunnelhole
  5944.  
  5945. LADDER: _ladder_trafficlightT_cloned_secondtunnelhole
  5946.  
  5947. Static prop "_bridgetunnel_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -11988 -9752 544
  5948.  
  5949. Static prop "_yesdrawcliff_rocks1" W/ "models/props_wasteland/rock_cliff01.mdl" @ setpos_exact -11723 -9966 520
  5950.  
  5951. Static prop "_yesdrawcliff_rocks2" W/ "models/props_wasteland/rock_cliff01.mdl" @ setpos_exact -11429 -10350 520
  5952.  
  5953. trigger_playermovement "_duckqol_trafficlight" with Option Duck @ setpos_exact -12158 -9866 60
  5954.  
  5955. ------------------------------------------------------------------------------------------------------------------------
  5956.  
  5957. DEATH TOLL - THE DRAINS || c10m2_drainage
  5958.  
  5959. All:
  5960.  
  5961. Clip "_commonhop_cisterntunnela" blocks Survivors @ setpos_exact -9477 -7279 -308
  5962.  
  5963. Clip "_commonhop_cisterntunnelb" blocks Survivors @ setpos_exact -9872 -6886 -308
  5964.  
  5965. Clip "_commonhop_bagstoroof" blocks Survivors @ setpos_exact -7118 -6111 351
  5966.  
  5967. Clip "_bunnyhop_endwindow" blocks Survivors @ setpos_exact -7998 -6007 -48
  5968.  
  5969. Clip "_commonhop_pipe" blocks Survivors @ setpos_exact -8044 -7280 -408
  5970.  
  5971. Clip "_unattackable_pipea" blocks Survivors @ setpos_exact -7790 -8110 -388
  5972.  
  5973. Clip "_unattackable_pipeb" blocks Survivors @ setpos_exact -8339 -9043 -388
  5974.  
  5975. Clip "_unattackable_pipec" blocks Survivors @ setpos_exact -9144 -9043 -388
  5976.  
  5977. Clip "_cliprework_commonhop" blocks Survivors @ setpos_exact -6452 -6008 136
  5978.  
  5979. Clip "_nav_electricalbox" blocks Survivors @ setpos_exact -10806 -8537 -347
  5980.  
  5981. Clip "_unattackable_debrisfall" blocks Survivors @ setpos_exact -9870 -8168 -180
  5982.  
  5983. Clip "_cliprework_cisternroof" blocks Survivors @ setpos_exact -9860 -7288 -98
  5984.  
  5985. Clip "_cliprework_endrooftop1" blocks Survivors @ setpos_exact -6448 -6730 620
  5986.  
  5987. Clip "_cliprework_endrooftop2" blocks Survivors @ setpos_exact -7500 -5634 256
  5988.  
  5989. Clip "_nav_cistern_anomaly" blocks Survivors @ setpos_exact -9859 -7064 -221
  5990.  
  5991. Clip "_nav_cistern_highpipe1" blocks Survivors @ setpos_exact -9935 -6961 -191
  5992.  
  5993. Clip "_nav_cistern_highpipe2" blocks Survivors @ setpos_exact -9812 -6957 -169
  5994.  
  5995. Clip "_nav_cistern_highpipe3" blocks Survivors @ setpos_exact -9533 -7217 -169
  5996.  
  5997. Clip "_nav_cistern_tunnelexit" blocks Survivors @ setpos_exact -9872 -7669 -219
  5998.  
  5999. Clip "_nav_cistern_angpipe1" blocks Survivors @ setpos_exact -9988 -7555 -229
  6000.  
  6001. Clip "_nav_cistern_angpipe2" blocks Survivors @ setpos_exact -10155 -7450 -229
  6002.  
  6003. Clip "_nav_cistern_angpipe3" blocks Survivors @ setpos_exact -10166 -7137 -229
  6004.  
  6005. Clip "_nav_cistern_angpipe4" blocks Survivors @ setpos_exact -9723 -6991 -229
  6006.  
  6007. Clip "_nav_cistern_angpipe5" blocks Survivors @ setpos_exact -9727 -7542 -229
  6008.  
  6009. Clip "_ledgehang_endsaferoof" blocks Survivors @ setpos_exact -8361 -5553 131
  6010.  
  6011. Clip "_smoother_pipes1" blocks Everyone @ setpos_exact -8712 -7404 -609
  6012.  
  6013. Clip "_smoother_pipes2" blocks Everyone @ setpos_exact -8712 -7159 -615
  6014.  
  6015. Clip "_smoother_pipes3" blocks Everyone @ setpos_exact -8307 -7154.5 -541
  6016.  
  6017. Clip "_chargerassist_eventbutton" blocks Survivors @ setpos_exact -8706 -7744 -308
  6018.  
  6019. Clip "_chargerassist_footlocker" blocks Survivors @ setpos_exact -8992 -8554 -308
  6020.  
  6021. Clip "_grating_smoothera" blocks Everyone @ setpos_exact -8642 -7855 -528.613
  6022.  
  6023. Clip "_grating_smootherb" blocks Everyone @ setpos_exact -8642 -7855 -528.613
  6024.  
  6025. PvP:
  6026.  
  6027. Clip "_shortcut_commonhop" blocks Survivors @ setpos_exact -8050 -8422 -487
  6028.  
  6029. Brush "_losfix_bridge_base1" created @ setpos_exact -8693 -8517 -498
  6030.  
  6031. Brush "_losfix_bridge_base2" created @ setpos_exact -8404 -8517 -541
  6032.  
  6033. Brush "_losfix_bridge_base3" created @ setpos_exact -8115 -8517 -498
  6034.  
  6035. Brush "_losfix_bridge_base4" created @ setpos_exact -8693 -8568 -400
  6036.  
  6037. Brush "_losfix_bridge_base5" created @ setpos_exact -8117 -8568 -400
  6038.  
  6039. Brush "_losfix_dynamic_bridge1" created @ setpos_exact -8566 -8525 -289
  6040.  
  6041. Brush "_losfix_dynamic_bridge2" created @ setpos_exact -8243 -8525 -289
  6042.  
  6043. Brush "_losfix_dynamic_bridge_floor1" created @ setpos_exact -8538 -8566 -196
  6044.  
  6045. Brush "_losfix_dynamic_bridge_floor2" created @ setpos_exact -8270 -8566 -196
  6046.  
  6047. Brush "_losfix_van" created @ setpos_exact -7071 -5218 -30
  6048.  
  6049. Clip "_ladder_quickstairwell_clip" blocks Infected @ setpos_exact -6394 -7264.7 89
  6050.  
  6051. Clip "_ladder_starttriplebig_clip" blocks Everyone @ setpos_exact -11632 -8168 -231
  6052.  
  6053. LADDER: _ladder_endtrainbox_cloned_endchainlink
  6054.  
  6055. LADDER: _ladder_quickstairwell_cloned_wrongturn
  6056.  
  6057. LADDER: _ladder_starttriplebig_cloned_startcoolingtanks
  6058.  
  6059. LADDER: _ladder_warewinright_cloned_wrongturn
  6060.  
  6061. MOVER: LOS dynamic fixes parented to move with bridge.
  6062.  
  6063. PROP: Barrels at end of sewers moved to reduce stuck-warp obligation.
  6064.  
  6065. ------------------------------------------------------------------------------------------------------------------------
  6066.  
  6067. DEATH TOLL - THE CHURCH || c10m3_ranchhouse
  6068.  
  6069. All:
  6070.  
  6071. Clip "_commonhop_saferoom" blocks Survivors @ setpos_exact -8080 -5684 421
  6072.  
  6073. Clip "_commonhop_traintoroof" blocks Survivors @ setpos_exact -12000 -8094 286
  6074.  
  6075. Clip "_commonhop_stationroof" blocks Survivors @ setpos_exact -12632 -6040 500
  6076.  
  6077. Clip "_dispcrouch_flatcartunnel" blocks Everyone @ setpos_exact -12534 -3574 -36
  6078.  
  6079. Clip "_holdoutsafe_cabinmountain" blocks Survivors @ setpos_exact -7518 -2770 307
  6080.  
  6081. Clip "_cliprework_watchtower" blocks Survivors @ setpos_exact -10438 -6325 542
  6082.  
  6083. Clip "_cliprework_rockcliff01" blocks Survivors @ setpos_exact -6272 -2688 848
  6084.  
  6085. Clip "_cliprework_roadblock" blocks Survivors @ setpos_exact -4585 -944 496
  6086.  
  6087. Clip "_cliprework_churchlonga" blocks Survivors @ setpos_exact -4533 -503 496
  6088.  
  6089. Clip "_cliprework_rockcliff02" blocks Survivors @ setpos_exact -7043 -3005 848
  6090.  
  6091. Clip "_cliprework_churchlongb" blocks Survivors @ setpos_exact -2232 -467 290
  6092.  
  6093. Clip "_clipextend_trainstationa" blocks Survivors @ setpos_exact -12811 -7486 344
  6094.  
  6095. Clip "_clipextend_trainstationb" blocks Survivors @ setpos_exact -13001 -5725.4 344
  6096.  
  6097. Clip "_dipscrouch_multicliff" blocks Everyone @ setpos_exact -13282 -3756 240
  6098.  
  6099. Clip "_cliprework_church01" blocks Survivors @ setpos_exact -3070 25 576
  6100.  
  6101. Clip "_cliprework_church02" blocks Survivors @ setpos_exact -2710 1072 576
  6102.  
  6103. Clip "_cliprework_church03" blocks Survivors @ setpos_exact -3798 930 576
  6104.  
  6105. Clip "_cliprework_church04" blocks Survivors @ setpos_exact -4538 578 576
  6106.  
  6107. Clip "_cliprework_church05" blocks Survivors @ setpos_exact -4962 712 576
  6108.  
  6109. Clip "_cliprework_church06" blocks Survivors @ setpos_exact -5528 137 576
  6110.  
  6111. Clip "_cliprework_church07" blocks Survivors @ setpos_exact -3390 -135 576
  6112.  
  6113. Clip "_cliprework_church08" blocks Survivors @ setpos_exact -5492 667 576
  6114.  
  6115. Clip "_cliprework_church09" blocks Survivors @ setpos_exact -3612 -319 576
  6116.  
  6117. Clip "_cliprework_church10" blocks Survivors @ setpos_exact -2256 506 576
  6118.  
  6119. Clip "_cliprework_church11" blocks Survivors @ setpos_exact -2928 448 736
  6120.  
  6121. Clip "_cliprework_church12" blocks Survivors @ setpos_exact -2558 220 736
  6122.  
  6123. Clip "_cliprework_corner1" blocks Survivors @ setpos_exact -13282 -3756 240
  6124.  
  6125. Clip "_cliprework_corner2" blocks Survivors @ setpos_exact -12651 -3566 400
  6126.  
  6127. Clip "_tankpunch_booster" blocks Survivors @ setpos_exact -8838 -4633 124
  6128.  
  6129. Clip "_permstuck_triplerock" blocks Everyone @ setpos_exact -9539 -4313 16
  6130.  
  6131. Clip "_cliprework_vulnerable" blocks Survivors @ setpos_exact -8709 -3352 269
  6132.  
  6133. Clip "_cliprework_smokertrolling" blocks Survivors @ setpos_exact -11857 -5323 85
  6134.  
  6135. Clip "_cliprework_churchwindows" blocks Survivors @ setpos_exact -2372 192 194
  6136.  
  6137. Clip "_clipextend_padlockgate" blocks Survivors @ setpos_exact -8594 -5033 344
  6138.  
  6139. Clip "_permstuck_openedrockcliff" blocks Infected @ setpos_exact -9247 -3950 412
  6140.  
  6141. Clip "_permstuck_fatcliffladder1" blocks Infected @ setpos_exact -8302 -3322 383
  6142.  
  6143. Clip "_permstuck_fatcliffladder2" blocks Infected @ setpos_exact -8224 -3527 378
  6144.  
  6145. Clip "_chargerassist_brokenwall" blocks Survivors @ setpos_exact -2480 1104 221
  6146.  
  6147. Clip "_booster_watertowerclip" blocks Survivors @ setpos_exact -6472 -871 1024
  6148.  
  6149. PvP:
  6150.  
  6151. Deleted func_playerinfected_clip @ setpos_exact -9857 -7984.99 511
  6152.  
  6153. Deleted func_playerinfected_clip @ setpos_exact -8961 -7473 639
  6154.  
  6155. Brush "_losfix_ambulance1" created @ setpos_exact -5924 -1034 -39
  6156.  
  6157. Brush "_losfix_ambulance2" created @ setpos_exact -5965 -1134 -38
  6158.  
  6159. Brush "_losfix_bus1" created @ setpos_exact -9815 -3582 -43
  6160.  
  6161. Brush "_losfix_bus2" created @ setpos_exact -9782 -3864 -43
  6162.  
  6163. Brush "_losfix_bus3" created @ setpos_exact -9857 -3507 -43
  6164.  
  6165. Brush "_losfix_van" created @ setpos_exact -9414 -2952 -42
  6166.  
  6167. Brush "_losfix_watertank" created @ setpos_exact -10456 -6456 -58
  6168.  
  6169. Clip "_solidify_permstuck01" blocks Infected @ setpos_exact -6606 -722 -58
  6170.  
  6171. Clip "_solidify_permstuck02" blocks Infected @ setpos_exact -6243 -697 -48
  6172.  
  6173. Clip "_solidify_permstuck03" blocks Infected @ setpos_exact -6067 -585 -31
  6174.  
  6175. Clip "_solidify_permstuck04" blocks Infected @ setpos_exact -6001 -266 -30
  6176.  
  6177. Clip "_solidify_permstuck05" blocks Infected @ setpos_exact -5620.3 -301.3 -50.5
  6178.  
  6179. Clip "_solidify_permstuck06" blocks Infected @ setpos_exact -9674 -1131 -10
  6180.  
  6181. Clip "_solidify_permstuck07" blocks Infected @ setpos_exact -8918 -860 -42
  6182.  
  6183. Clip "_solidify_permstuck08" blocks Infected @ setpos_exact -8570 -994 -66
  6184.  
  6185. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -9348 -7694 584
  6186.  
  6187. LADDER: _ladder_brokenwallL_cloned_graveshort
  6188.  
  6189. LADDER: _ladder_brokenwallM_cloned_graveshort
  6190.  
  6191. LADDER: _ladder_brokenwallR_cloned_graveshort
  6192.  
  6193. LADDER: _ladder_churchcampperimeter_cloned_churchtallninety
  6194.  
  6195. LADDER: _ladder_churchfarperimeter_cloned_churchsandbags
  6196.  
  6197. LADDER: _ladder_concretebags_cloned_acunitcorner
  6198.  
  6199. LADDER: _ladder_mountaincrawl_cloned_fatcliffladder
  6200.  
  6201. LADDER: _ladder_ramptohersch_cloned_lightsignalfence
  6202.  
  6203. LADDER: _ladder_shedelectricbox_cloned_hellcade
  6204.  
  6205. LADDER: _ladder_stationfencebackL_cloned_stationfencebackR
  6206.  
  6207. LADDER: _ladder_stationfencebackM_cloned_stationfencebackR
  6208.  
  6209. LADDER: _ladder_stationfencefrontL_cloned_stationfencefrontR
  6210.  
  6211. LADDER: _ladder_trainsignalleftB_cloned_sandtowerbest
  6212.  
  6213. LADDER: _ladder_trainsignalleftT_cloned_sandtowerbest
  6214.  
  6215. LADDER: _ladder_trainsignalrightB_cloned_sandtowerbest
  6216.  
  6217. LADDER: _ladder_trainsignalrightT_cloned_sandtowerbest
  6218.  
  6219. Static prop "_losblocker_rock" W/ "models/props/cs_militia/militiarock03.mdl" @ setpos_exact -5921 -453 19
  6220.  
  6221. Static prop "_solidify_tree01" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -6608 -712 -84
  6222.  
  6223. Static prop "_solidify_tree02" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -6240 -704 -36
  6224.  
  6225. Static prop "_solidify_tree03" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -6064 -584 -84
  6226.  
  6227. Static prop "_solidify_tree04" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -6000 -272 -84
  6228.  
  6229. Static prop "_solidify_tree05" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -5622 -298 -84
  6230.  
  6231. Static prop "_solidify_tree06" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -9678.08 -1120 11.46
  6232.  
  6233. Static prop "_solidify_tree07" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -8914.98 -852.481 -26.4875
  6234.  
  6235. Static prop "_solidify_tree08" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact -8568 -984 -52
  6236.  
  6237. Static prop "_solidify_tree09" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact -7168 -880 -91.8731
  6238.  
  6239. Static prop "_solidify_tree10" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact -9664 -1400 -36.5395
  6240.  
  6241. ------------------------------------------------------------------------------------------------------------------------
  6242.  
  6243. DEATH TOLL - THE TOWN || c10m4_mainstreet
  6244.  
  6245. All:
  6246.  
  6247. Clip "_commonhop_bankwindow" blocks Survivors @ setpos_exact -672 -4351 176
  6248.  
  6249. Clip "_cliprework_church" blocks Survivors @ setpos_exact -3010 30 720.9
  6250.  
  6251. Clip "_cliprework_buses" blocks Survivors @ setpos_exact -1437 -461 1124
  6252.  
  6253. Clip "_cliprework_houses01" blocks Survivors @ setpos_exact 744 -324 512
  6254.  
  6255. Clip "_cliprework_houses02" blocks Survivors @ setpos_exact 854 -272 512
  6256.  
  6257. Clip "_cliprework_houses03" blocks Survivors @ setpos_exact 1400 -158 512
  6258.  
  6259. Clip "_cliprework_houses04" blocks Survivors @ setpos_exact 1993 -254 512
  6260.  
  6261. Clip "_cliprework_houses05" blocks Survivors @ setpos_exact 2883 -465 602
  6262.  
  6263. Clip "_dispcrouch_spawn" blocks Everyone @ setpos_exact -4294 -1729 -2
  6264.  
  6265. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact -1608 -2368 884
  6266.  
  6267. Clip "_cliprework_electricalbox" blocks Survivors @ setpos_exact 2667 -1769 164
  6268.  
  6269. Clip "_cliprework_windows" blocks Survivors @ setpos_exact 2688 -2136 372
  6270.  
  6271. Clip "_cliprework_balcony" blocks Survivors @ setpos_exact 2822 -1694 336
  6272.  
  6273. Clip "_cliprework_awning" blocks Survivors @ setpos_exact 2885 -1580 297
  6274.  
  6275. Clip "_cliprework_eventskip1" blocks Survivors @ setpos_exact 852 -2433 140
  6276.  
  6277. Clip "_cliprework_eventskip2" blocks Survivors @ setpos_exact 661 -2569 140
  6278.  
  6279. Clip "_cliprework_eventskip3" blocks Survivors @ setpos_exact 372 -2717 140
  6280.  
  6281. Clip "_cliprework_eventskip4" blocks Survivors @ setpos_exact 242 -2757 140
  6282.  
  6283. Insta-kill "_instakill_deathcharger" Survivor @ setpos_exact -2449 122 -43
  6284.  
  6285. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 288 -5284 93
  6286.  
  6287. PvP:
  6288.  
  6289. Clip "_cliprework_trucknuke" blocks Survivors @ setpos_exact 693 -1867 105
  6290.  
  6291. Deleted ([67] func_breakable) @ setpos_exact -1335 -4910 244
  6292.  
  6293. Deleted func_playerinfected_clip @ setpos_exact 1359 -3625 479
  6294.  
  6295. Deleted func_playerinfected_clip @ setpos_exact 1479 -457 295
  6296.  
  6297. Deleted func_playerinfected_clip @ setpos_exact -5057 -2625 71
  6298.  
  6299. Deleted func_playerinfected_clip @ setpos_exact -2731 -3241 455
  6300.  
  6301. Deleted func_playerinfected_clip @ setpos_exact -2145 -553 233
  6302.  
  6303. Deleted func_playerinfected_clip @ setpos_exact -113 -721 201
  6304.  
  6305. Deleted func_playerinfected_clip @ setpos_exact 495 -737 217
  6306.  
  6307. Deleted func_playerinfected_clip @ setpos_exact 943 -625 279
  6308.  
  6309. Deleted func_playerinfected_clip @ setpos_exact 2903 -673 271
  6310.  
  6311. Deleted func_playerinfected_clip @ setpos_exact 2023 -697 331
  6312.  
  6313. Deleted func_playerinfected_clip @ setpos_exact 2903 -673 271
  6314.  
  6315. Deleted func_playerinfected_clip @ setpos_exact -5121 -1841 -161
  6316.  
  6317. Deleted func_playerinfected_clip @ setpos_exact 1615 -4769 335
  6318.  
  6319. Tank/Charger chokepoint atomizer created @ setpos_exact -572 -2019 -48
  6320.  
  6321. Brush "_losfix_bus1" created @ setpos_exact -1264 -4031 -54
  6322.  
  6323. Brush "_losfix_bus2" created @ setpos_exact -1292 -3874 -54
  6324.  
  6325. Brush "_losfix_truck" created @ setpos_exact -3636 -1019 -53
  6326.  
  6327. Brush "_losfix_van1" created @ setpos_exact -3340 -1677 -47
  6328.  
  6329. Brush "_losfix_van2" created @ setpos_exact -762 -2268 -48
  6330.  
  6331. Clip "_fineantique_surf_collision" blocks Infected @ setpos_exact 1968 -4608 320
  6332.  
  6333. Clip "_hellcade_clipa" blocks Infected @ setpos_exact -5360 -504 -64
  6334.  
  6335. Clip "_hellcade_clipb" blocks Infected @ setpos_exact -5605 -1001 -64
  6336.  
  6337. Clip "_hellcade_clipc" blocks Infected @ setpos_exact -5360 -1857 -64
  6338.  
  6339. Clip "_hellcade_permstuck" blocks Infected @ setpos_exact -5115 -1028 -49
  6340.  
  6341. Clip "_ladder_eventskybridge_clip" blocks Infected @ setpos_exact -1314 -4766 296
  6342.  
  6343. Clip "_ladder_starthilltop_clip" blocks Infected @ setpos_exact -4608 -1906 520
  6344.  
  6345. Clip "_losblocker_deliveryclip" blocks Survivors @ setpos_exact 583 -2463 -52
  6346.  
  6347. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -3906 -3153 384
  6348.  
  6349. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact -4935 -2560 675
  6350.  
  6351. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact 2038 -3044 560
  6352.  
  6353. Clip "_yesdrawhellcade_collision" blocks Infected @ setpos_exact -5254.8 -691.5 17
  6354.  
  6355. LADDER: _ladder_churchleftm3mirr_cloned_churchrearwrong
  6356.  
  6357. LADDER: _ladder_eventfinalalley_cloned_endgraffiti
  6358.  
  6359. LADDER: _ladder_eventpipewires_cloned_endchainlink
  6360.  
  6361. LADDER: _ladder_eventskybridge_cloned_churchwalltallest
  6362.  
  6363. LADDER: _ladder_fineantiques_cloned_enddumpstertall
  6364.  
  6365. LADDER: _ladder_house5sideup_cloned_churchwallmedium
  6366.  
  6367. LADDER: _ladder_house6semifront_cloned_house6semiback
  6368.  
  6369. LADDER: _ladder_house6telepole_cloned_eventbarricadepipe
  6370.  
  6371. LADDER: _ladder_house7Bthin_cloned_balconytrimmed
  6372.  
  6373. LADDER: _ladder_house7Mthick_cloned_quadwindows
  6374.  
  6375. LADDER: _ladder_house7Tthick_cloned_quadwindows
  6376.  
  6377. LADDER: _ladder_house8Bthin_cloned_balconytrimmed
  6378.  
  6379. LADDER: _ladder_house8Tthick_cloned_policebarricade
  6380.  
  6381. LADDER: _ladder_naturalstains_cloned_awningpipe
  6382.  
  6383. LADDER: _ladder_semitrucknose_cloned_startgenerator
  6384.  
  6385. LADDER: _ladder_stainedboard_cloned_surplusfluff
  6386.  
  6387. LADDER: _ladder_starthilltopB_cloned_awningpipe
  6388.  
  6389. LADDER: _ladder_starthilltopM_cloned_awningpipe
  6390.  
  6391. LADDER: _ladder_starthilltopT_cloned_awningpipe
  6392.  
  6393. LADDER: _ladder_theatreleft_cloned_theatreright
  6394.  
  6395. LADDER: _ladder_yesdrawhellbackL_cloned_copbarrfront
  6396.  
  6397. LADDER: _ladder_yesdrawhellbackR_cloned_copbarrfront
  6398.  
  6399. LADDER: _ladder_yesdrawhellfrontL_cloned_copbarrback
  6400.  
  6401. LADDER: _ladder_yesdrawhellfrontR_cloned_copbarrback
  6402.  
  6403. Navblocker "_losblocker_deliverynavblock" blocks Everyone w/ Apply @ setpos_exact 562 -2425 -48
  6404.  
  6405. Static prop "_losblocker_deliveryvan" W/ "models/props_vehicles/deliveryvan.mdl" @ setpos_exact 600 -2429 -47
  6406.  
  6407. Static prop "_losblocker_deliveryvanglass" W/ "models/props_vehicles/deliveryvan_glass.mdl" @ setpos_exact 600 -2429 -47
  6408.  
  6409. Static prop "_losblocker_sheetrock" W/ "models/props_interiors/sheetrock_leaning.mdl" @ setpos_exact -368 -2142 -48
  6410.  
  6411. Static prop "_fineantique_surf1" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 2064 -4608 320.3
  6412.  
  6413. Static prop "_fineantique_surf2" W/ "models/props_update/c8m1_rooftop_3.mdl" @ setpos_exact 1872 -4608 320.2
  6414.  
  6415. Static prop "_hellcade_m3mirr01" W/ "models/props_c17/concrete_barrier001a.mdl" @ setpos_exact -5136 -1224.06 -77.94
  6416.  
  6417. Static prop "_hellcade_m3mirr02" W/ "models/props_c17/concrete_barrier001a.mdl" @ setpos_exact -5136 -744.06 -74
  6418.  
  6419. Static prop "_hellcade_m3mirr03" W/ "models/props_foliage/cedar01.mdl" @ setpos_exact -5247.66 -1365 -91.57
  6420.  
  6421. Static prop "_hellcade_m3mirr04" W/ "models/props_foliage/cedar01.mdl" @ setpos_exact -5485.07 -1318.82 -96
  6422.  
  6423. Static prop "_hellcade_m3mirr05" W/ "models/props_street/concertinawire128.mdl" @ setpos_exact -5112 -901.06 -35.94
  6424.  
  6425. Static prop "_hellcade_m3mirr06" W/ "models/props_street/concertinawire128.mdl" @ setpos_exact -5114 -1026.06 -35.94
  6426.  
  6427. Static prop "_hellcade_m3mirr07" W/ "models/props_street/concertinawire128.mdl" @ setpos_exact -5115 -1157.66 7.55
  6428.  
  6429. Static prop "_hellcade_m3mirr08" W/ "models/props_street/concertinawire128.mdl" @ setpos_exact -5116 -1158.06 -35.94
  6430.  
  6431. Static prop "_hellcade_m3mirr09" W/ "models/props_street/concertinawire128.mdl" @ setpos_exact -5117 -1032.66 7.55
  6432.  
  6433. Static prop "_hellcade_m3mirr10" W/ "models/props_street/concertinawire128.mdl" @ setpos_exact -5119 -900.66 7.55
  6434.  
  6435. Static prop "_hellcade_m3mirr11" W/ "models/props_street/stopsign01.mdl" @ setpos_exact -5108 -1080.06 -73
  6436.  
  6437. Static prop "_hellcade_m3mirr12" W/ "models/props_street/stopsign01.mdl" @ setpos_exact -5267.23 -719.82 -69.49
  6438.  
  6439. Static prop "_hellcade_m3mirr13" W/ "models/props_street/stopsign01.mdl" @ setpos_exact -5280.22 -667.42 -68.13
  6440.  
  6441. Static prop "_hellcade_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5605 -1257 0
  6442.  
  6443. Static prop "_hellcade_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5605 -1001 0
  6444.  
  6445. Static prop "_hellcade_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5605 -745 0
  6446.  
  6447. Static prop "_ladder_churchleftm3mirr_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact -3276 -7 321
  6448.  
  6449. Static prop "_solidify_stainedawning" W/ "models/props_street/awning_department_store.mdl" @ setpos_exact 2036 -2528 385
  6450.  
  6451. Static prop "_stainedroof_wrongway1" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1728 -2920 541
  6452.  
  6453. Static prop "_stainedroof_wrongway2" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2028 -2920 541
  6454.  
  6455. Static prop "_stainedroof_wrongway3" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2328 -2920 541
  6456.  
  6457. Static prop "_yesdrawhellcade_surface" W/ "models/props_update/c10m4_hellcade_nodraw.mdl" @ setpos_exact -5093.8 -1038 0
  6458.  
  6459. Ladder found @ "1698.6658 -3959.1636 -13.5" and shifted w/ offset @ "0 -3 0"
  6460.  
  6461. Ladder found @ "1712.9192 -3843.1353 -12.5" and shifted w/ offset @ "0 3 0"
  6462.  
  6463. Physics prop "_hittable_hellcar" W/ "models/props_vehicles/cara_95sedan.mdl" @ setpos_exact -5351 -993.06 -63.59
  6464.  
  6465. Static prop "_hittable_hellcarglass" W/ "models/props_vehicles/cara_95sedan_glass.mdl" @ setpos_exact -5351 -993.06 -63.59
  6466.  
  6467. Survival:
  6468.  
  6469. Clip "_booster_eatsign" blocks Survivors @ setpos_exact -1649 -3723 293
  6470.  
  6471. ------------------------------------------------------------------------------------------------------------------------
  6472.  
  6473. DEATH TOLL - BOAT HOUSE FINALE || c10m5_houseboat
  6474.  
  6475. All:
  6476.  
  6477. Clip "_cliprework_startarea02" blocks Survivors @ setpos_exact 2738 3824 412
  6478.  
  6479. Clip "_cliprework_startarea01" blocks Survivors @ setpos_exact 1311.5 3785 596
  6480.  
  6481. Clip "_cliprework_startarea03" blocks Survivors @ setpos_exact 4250 3811 792
  6482.  
  6483. Clip "_permstuck_cornertree" blocks Infected @ setpos_exact 4414.32 1858 17
  6484.  
  6485. Clip "_solidify_railposta" blocks Everyone @ setpos_exact 3924 -4516 -24
  6486.  
  6487. Clip "_solidify_railpostb" blocks Everyone @ setpos_exact 4020 -4516 -24
  6488.  
  6489. Clip "_solidify_railpostc" blocks Everyone @ setpos_exact 4116 -4228 -24
  6490.  
  6491. Clip "_solidify_railpostd" blocks Everyone @ setpos_exact 4116 -4132 -24
  6492.  
  6493. Clip "_solidify_railposte" blocks Everyone @ setpos_exact 4116 -4036 -24
  6494.  
  6495. Clip "_solidify_railpostf" blocks Everyone @ setpos_exact 4020 -3940 -24
  6496.  
  6497. Clip "_commonhop_backyard1" blocks Survivors @ setpos_exact 2689 2237 347
  6498.  
  6499. Clip "_commonhop_backyard2" blocks Survivors @ setpos_exact 2179 2456 360
  6500.  
  6501. Clip "_commonhop_backyard3" blocks Survivors @ setpos_exact 1505 2509 360
  6502.  
  6503. Clip "_commonhop_backyard4" blocks Survivors @ setpos_exact 2175 2582 219
  6504.  
  6505. Clip "_nav_rockcliff_complete" blocks Survivors @ setpos_exact 6430 -4504 222
  6506.  
  6507. Clip "_permstuck_rockclipwedge" blocks Survivors @ setpos_exact 1386 -4758 -161
  6508.  
  6509. Static prop "_laststand_truck" W/ "models/props_vehicles/pickup_truck_2004.mdl" & color "67 108 112" @ setpos_exact 1261.08 1237.97 -207.962
  6510.  
  6511. Static prop "_laststand_truckglass" W/ "models/props_vehicles/pickup_truck_2004_glass.mdl" & color "67 108 112" @ setpos_exact 1261.08 1237.97 -207.962
  6512.  
  6513. Static prop "_laststand_ammocan1" W/ "models/props/de_prodigy/ammo_can_02.mdl" @ setpos_exact 1345.13 1232.73 -158.673
  6514.  
  6515. Static prop "_laststand_ammocan2" W/ "models/props/de_prodigy/ammo_can_02.mdl" @ setpos_exact 1337.56 1234.67 -164.912
  6516.  
  6517. Static prop "_laststand_oldmanmurray" W/ "models/props_crates/static_crate_40.mdl" @ setpos_exact 1310 1260.02 -166.166
  6518.  
  6519. Static prop "_laststand_ammocan3" W/ "models/props/de_prodigy/ammo_can_02.mdl" @ setpos_exact 1305.72 1280.81 -142.713
  6520.  
  6521. Static prop "_laststand_lantern" W/ "models/props_unique/spawn_apartment/lantern.mdl" @ setpos_exact 1340 1251 -163.04
  6522.  
  6523. LOGIC: Rockslide and point-of-no-return entities will spawn when finale is started.
  6524.  
  6525. Static prop "_rockslide_permtree" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 4220 -314 -221.9
  6526.  
  6527. Static prop "_rockslide_static_1a" W/ "models/props/cs_militia/militiarock01.mdl" @ setpos_exact 4759 169 -96.8125
  6528.  
  6529. Static prop "_rockslide_static_1b" W/ "models/props/cs_militia/militiarock01.mdl" & color "222 222 222" @ setpos_exact 4378.5313 -104.9063 -86.4063
  6530.  
  6531. Static prop "_rockslide_static_1c" W/ "models/props/cs_militia/militiarock01.mdl" & color "177 177 177" @ setpos_exact 4480.125 -2.7188 -149.9375
  6532.  
  6533. Static prop "_rockslide_static_2a" W/ "models/props/cs_militia/militiarock02.mdl" @ setpos_exact 4606.125 98.625 -81.7813
  6534.  
  6535. Static prop "_rockslide_static_2b" W/ "models/props/cs_militia/militiarock02.mdl" & color "222 222 222" @ setpos_exact 4494.4688 -23.4688 -136.5
  6536.  
  6537. Static prop "_rockslide_static_2c" W/ "models/props/cs_militia/militiarock02.mdl" & color "177 177 177" @ setpos_exact 4450.1875 -119.8125 -83.0938
  6538.  
  6539. Clip "_rockslide_survivorclipa" blocks Survivors @ setpos_exact 4455 -54 -224
  6540.  
  6541. Clip "_rockslide_survivorclipb" blocks Survivors @ setpos_exact 4187 -415 -153
  6542.  
  6543. Clip "_rockslide_survivorclipc" blocks Everyone @ setpos_exact 4226 -192 -132
  6544.  
  6545. Insta-kill "_rockslide_trighurta" Infected @ setpos_exact 4417 -83 -221
  6546.  
  6547. Insta-kill "_rockslide_trighurtb" Infected @ setpos_exact 4667 157 -221
  6548.  
  6549. PvP:
  6550.  
  6551. Clip "_indoor_roof" blocks Survivors @ setpos_exact 2244 4076 100
  6552.  
  6553. Brush "_losfix_van" created @ setpos_exact 3736 753 -181
  6554.  
  6555. Clip "_ladder_middlehouse_clip" blocks Everyone @ setpos_exact 3488 -3063 -84
  6556.  
  6557. Clip "_rock_infected_clipqol" blocks Infected @ setpos_exact 3340 -5010 -324
  6558.  
  6559. Clip "_rock_survivor_clipright" blocks Survivors @ setpos_exact 3255 -4984 -253
  6560.  
  6561. Clip "_rock_survivor_clipleft" blocks Survivors @ setpos_exact 3255 -4984 -253
  6562.  
  6563. Clip "_rock_survivor_clipwedge" blocks Survivors @ setpos_exact 3255 -4984 -253
  6564.  
  6565. Clip "_solidify_permstuck1" blocks Infected @ setpos_exact 2100 253 -112
  6566.  
  6567. Clip "_solidify_permstuck2" blocks Infected @ setpos_exact 3141 387 -168
  6568.  
  6569. Clip "_solidify_permstuck3" blocks Infected @ setpos_exact 5463 220 222
  6570.  
  6571. Clip "_solidify_permstuck4" blocks Infected @ setpos_exact 6736 -2753 207
  6572.  
  6573. Clip "_solidify_permstuck5" blocks Infected @ setpos_exact 2914 -1462 213
  6574.  
  6575. Clip "_solidify_railposta" blocks Everyone @ setpos_exact 3924 -4516 -24
  6576.  
  6577. Clip "_solidify_railpostb" blocks Everyone @ setpos_exact 4020 -4516 -24
  6578.  
  6579. Clip "_solidify_railpostc" blocks Everyone @ setpos_exact 4116 -4228 -24
  6580.  
  6581. Clip "_solidify_railpostd" blocks Everyone @ setpos_exact 4116 -4132 -24
  6582.  
  6583. Clip "_solidify_railposte" blocks Everyone @ setpos_exact 4116 -4036 -24
  6584.  
  6585. Clip "_solidify_railpostf" blocks Everyone @ setpos_exact 4020 -3940 -24
  6586.  
  6587. LADDER: _ladder_firebarrelarea_cloned_eventperimloner
  6588.  
  6589. LADDER: _ladder_middlehouse_cloned_docksinwater
  6590.  
  6591. LADDER: _ladder_tankfightcorner_cloned_eventperimloner
  6592.  
  6593. Navblocker "_rock_navblock_outabounds" blocks Everyone w/ Apply @ setpos_exact 2951 -5211 -295
  6594.  
  6595. Navblocker "_rock_navblock_underneath" blocks Everyone w/ Apply @ setpos_exact 3198 -4848 -295
  6596.  
  6597. Static prop "_losblocker_tallladder" W/ "models/props/cs_militia/militiarock01.mdl" @ setpos_exact 5639 -419 292
  6598.  
  6599. Static prop "_propladder_back" W/ "models/props/cs_militia/militiarock02.mdl" @ setpos_exact 5205 -2 -118
  6600.  
  6601. Static prop "_propladder_front" W/ "models/props/cs_militia/militiarock03.mdl" @ setpos_exact 4521 370 -250
  6602.  
  6603. Static prop "_rock_nav" 191 191 191 & solid_yes w/ "models/props_foliage/rock_coast02f.mdl" @ setpos_exact 3050 -5000 -438
  6604.  
  6605. Static prop "_rock_rene" 191 191 191 & solid_yes w/ "models/props_foliage/rock_coast02f.mdl" @ setpos_exact 3250 -4977 -242
  6606.  
  6607. Static prop "_solidify_tree01" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 6115.44 -1254.23 254.159
  6608.  
  6609. Static prop "_solidify_tree02" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 5840.49 -1231.82 262.096
  6610.  
  6611. Static prop "_solidify_tree03" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 5674.99 -173.235 286.403
  6612.  
  6613. Static prop "_solidify_tree04" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 5482.81 241.228 132.695
  6614.  
  6615. Static prop "_solidify_tree05" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 5140.97 482.588 161.3
  6616.  
  6617. Static prop "_solidify_tree06" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 4947.63 841.389 177.102
  6618.  
  6619. Static prop "_solidify_tree07" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 4596 -847.291 46.5099
  6620.  
  6621. Static prop "_solidify_tree08" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 4472.11 -1332.35 92.7903
  6622.  
  6623. Static prop "_solidify_tree09" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 3330.26 -1363.53 109.319
  6624.  
  6625. Static prop "_solidify_tree10" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 2913.72 -1441.18 125.267
  6626.  
  6627. Static prop "_solidify_tree11" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 2806.21 -1397.96 136.034
  6628.  
  6629. Static prop "_solidify_tree12" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 6591.85 -1674.72 249.755
  6630.  
  6631. Static prop "_solidify_tree13" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 6860.31 -1957.59 260.658
  6632.  
  6633. Static prop "_solidify_tree14" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 6936.06 -2695.45 140.336
  6634.  
  6635. Static prop "_solidify_tree15" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 6743.79 -2761.88 140.372
  6636.  
  6637. Static prop "_solidify_tree16" W/ "models/props_foliage/old_tree01.mdl" @ setpos_exact 6754.94 -3134.69 175.772
  6638.  
  6639. Static prop "_solidify_tree17" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 6691.45 -3321.24 167.145
  6640.  
  6641. Static prop "_solidify_tree18" W/ "models/props_foliage/old_tree01.mdl" @ setpos_exact 3392 -87.0611 -192
  6642.  
  6643. Static prop "_solidify_tree19" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 3343.3 304.445 -195.784
  6644.  
  6645. Static prop "_solidify_tree20" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 3135.65 343.649 -172.46
  6646.  
  6647. Static prop "_solidify_tree21" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 3004 -49.16 -159.143
  6648.  
  6649. Static prop "_solidify_tree22" W/ "models/props_foliage/old_tree01.mdl" @ setpos_exact 2800 176.84 -175
  6650.  
  6651. Static prop "_solidify_tree23" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 2600 166.84 -176
  6652.  
  6653. Static prop "_solidify_tree24" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 2472.84 354 -191
  6654.  
  6655. Static prop "_solidify_tree25" W/ "models/props_foliage/trees_cluster01.mdl" @ setpos_exact 2103.88 254.77 -193.143
  6656.  
  6657. Static prop "_solidify_tree26" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 2236.99 768.711 -202.778
  6658.  
  6659. Static prop "_solidify_tree27" W/ "models/props_foliage/old_tree01.mdl" @ setpos_exact 2157.68 1276.4 -199.196
  6660.  
  6661. Static prop "_solidify_tree28" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 5416.34 565.308 209.588
  6662.  
  6663. Physics prop "_hittable_log" W/ "models/props_foliage/tree_trunk_fallen.mdl" @ setpos_exact 5405 -2480 -103
  6664.  
  6665. Navmesh modified w/ OBSCURED @ setpos_exact 5298 328 153
  6666.  
  6667. Navmesh modified w/ OBSCURED @ setpos_exact 5020 664 190
  6668.  
  6669. Survival:
  6670.  
  6671. Clip "_survival_docksrocks" blocks Survivors @ setpos_exact 2201 -4720 -174
  6672.  
  6673. ------------------------------------------------------------------------------------------------------------------------
  6674. ------------------------------------------------------------------------------------------------------------------------
  6675.  
  6676. DEAD AIR - THE GREENHOUSE || c11m1_greenhouse
  6677.  
  6678. All:
  6679.  
  6680. Clip "_commonhop_greenhouse" blocks Survivors @ setpos_exact 5226 -752 1023
  6681.  
  6682. Clip "_oddhang_electricalbox" blocks Survivors @ setpos_exact 3338 1147 466
  6683.  
  6684. Clip "_ladderqol_electricalbox" blocks Infected @ setpos_exact 3340 1151 536
  6685.  
  6686. Clip "_cliprework_stunfall" blocks Survivors @ setpos_exact 2464 784 409
  6687.  
  6688. Clip "_stunfall_jeep" blocks Survivors @ setpos_exact 4669 1491 8
  6689.  
  6690. Clip "_cliprework_nopedocks01" blocks Survivors @ setpos_exact 4221.4 -1175 16
  6691.  
  6692. Clip "_tankpunch_escapeladder" blocks Survivors @ setpos_exact 3412 -932 259
  6693.  
  6694. Clip "_cliprework_nopedocks02" blocks Survivors @ setpos_exact 2312 -1141 16
  6695.  
  6696. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact 7188.6 -601.2 16
  6697.  
  6698. Clip "_stunfall_lamp" blocks Survivors @ setpos_exact 5549 1313 8
  6699.  
  6700. Clip "_outtabounds_ledge" blocks Survivors @ setpos_exact 2700 649 640
  6701.  
  6702. Clip "_cliprework_endpassage" blocks Survivors @ setpos_exact 4858 2552 274
  6703.  
  6704. Insta-kill "_instakill_thankyoufailzz" Survivor @ setpos_exact 5148 -1121 165
  6705.  
  6706. PvP:
  6707.  
  6708. Deleted func_playerinfected_clip @ setpos_exact 5223 -1073 841
  6709.  
  6710. Deleted func_playerinfected_clip @ setpos_exact 5247 -1073 1007
  6711.  
  6712. Deleted func_playerinfected_clip @ setpos_exact 2663 1383 1087
  6713.  
  6714. Deleted func_playerinfected_clip @ setpos_exact 3431 -1097 1199
  6715.  
  6716. Deleted func_playerinfected_clip @ setpos_exact 3991 -73 1487
  6717.  
  6718. Deleted func_playerinfected_clip @ setpos_exact 2559 2655 727
  6719.  
  6720. Deleted func_playerinfected_clip @ setpos_exact 5247 -297 919
  6721.  
  6722. Brush "_losfix_semi1" created @ setpos_exact 3456 2233 43
  6723.  
  6724. Brush "_losfix_semi2" created @ setpos_exact 3999 2268 23
  6725.  
  6726. Brush "_losfix_semi3" created @ setpos_exact 3977 2264 23
  6727.  
  6728. Brush "_losfix_van" created @ setpos_exact 3729 2932 15
  6729.  
  6730. Clip "_bustedwatertower_clip" blocks Infected @ setpos_exact 3872 -909 1464
  6731.  
  6732. Clip "_greenhouse_gutterleft" blocks Infected + AI @ setpos_exact 5707 -993 984
  6733.  
  6734. Clip "_greenhouse_gutterright" blocks Infected + AI @ setpos_exact 5707 -271 984
  6735.  
  6736. Clip "_greenhouse_randomgapa" blocks Infected @ setpos_exact 4874 -752 923
  6737.  
  6738. Clip "_greenhouse_randomgapb" blocks Infected @ setpos_exact 5823 -633 1088
  6739.  
  6740. Clip "_greenhouse_saferoof_survivor" blocks Survivors @ setpos_exact 6530 -541 1004
  6741.  
  6742. Clip "_greenhouse_saferoof_infected" blocks Infected @ setpos_exact 6530 -541 1004
  6743.  
  6744. Clip "_greenhouse_saferoof_infecgap" blocks Infected @ setpos_exact 6296 -208 943
  6745.  
  6746. Clip "_meticulous_funcinfclip01" blocks Infected + AI @ setpos_exact 5758 -1069 848
  6747.  
  6748. Clip "_meticulous_funcinfclip02" blocks Infected + AI @ setpos_exact 6658 -893 916
  6749.  
  6750. Clip "_meticulous_funcinfclip03" blocks Infected + AI @ setpos_exact 6658 -199 916
  6751.  
  6752. Clip "_meticulous_funcinfclip04" blocks Infected + AI @ setpos_exact 7011 -509 908
  6753.  
  6754. Clip "_meticulous_funcinfclip05" blocks Infected + AI @ setpos_exact 6291 -978 848
  6755.  
  6756. Clip "_yesdraw_longjump_clip" blocks Infected @ setpos_exact 3010 3568 1292
  6757.  
  6758. Clip "_yesdraw_longjump_stuck" blocks Infected @ setpos_exact 2584 2864 728
  6759.  
  6760. LADDER: _ladder_endcarpetwin_cloned_onewayupper
  6761.  
  6762. LADDER: _ladder_endupperwalkway_cloned_longnosegrille
  6763.  
  6764. LADDER: _ladder_greenhousebox_cloned_firstbuildfront
  6765.  
  6766. LADDER: _ladder_greenhouseroof_cloned_betweenacunits
  6767.  
  6768. LADDER: _ladder_startplankdoor_cloned_endchainlink
  6769.  
  6770. Static prop "_bustedwatertower_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 4069 -758 1264
  6771.  
  6772. Static prop "_bustedwatertower_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3664 -758 1264
  6773.  
  6774. Static prop "_yesdraw_longjump_roofa" W/ "models/props_update/c8m1_rooftop_1.mdl" @ setpos_exact 3088 3312 856
  6775.  
  6776. Static prop "_yesdraw_longjump_roofb" W/ "models/props_update/c8m1_rooftop_1.mdl" @ setpos_exact 2832 3312 855.9
  6777.  
  6778. Static prop "_yesdraw_longjump_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3090 3065 918
  6779.  
  6780. Static prop "_yesdraw_longjump_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2805 3065 918
  6781.  
  6782. Static prop "_yesdrawgreenhouse_panels" W/ "models/props_update/c11m1_greenhouse_nodraw.mdl" @ setpos_exact 6118.9 -632 943
  6783.  
  6784. Static prop "_yesdrawgreenhouse_plywood" W/ "models/props_update/c11m1_greenhouse_plywood.mdl" @ setpos_exact 5524 -717 968
  6785.  
  6786. ------------------------------------------------------------------------------------------------------------------------
  6787.  
  6788. DEAD AIR - THE CRANE || c11m2_offices
  6789.  
  6790. All:
  6791.  
  6792. Clip "_fallrevive_nopejumpa" blocks Survivors @ setpos_exact 6142 2312 9
  6793.  
  6794. Clip "_fallrevive_nopejumpb" blocks Survivors @ setpos_exact 8648 2672 16
  6795.  
  6796. Clip "_permstuck_officechairs" blocks Everyone @ setpos_exact 8865 4003 252
  6797.  
  6798. Clip "_nav_craneledge" blocks Survivors @ setpos_exact 6117 3856 646
  6799.  
  6800. Insta-kill "_instakill_semitrailer" Survivor @ setpos_exact 6854 2779 173
  6801.  
  6802. Static prop "_omg_valve_wrongwayc" W/ "models/props_vehicles/van.mdl" @ setpos_exact 8815 2888 10
  6803.  
  6804. Static prop "_omg_valve_wrongwayg" W/ "models/props_vehicles/van_glass.mdl" @ setpos_exact 8815 2888 10
  6805.  
  6806. LOGIC: Anti-shortcut trighurts will be deleted when a Survivor exits final office stairwell.
  6807.  
  6808. Insta-kill "_finalstreet_trighurta" Survivor @ setpos_exact 9071 3888 196
  6809.  
  6810. Insta-kill "_finalstreet_trighurtb" Survivor @ setpos_exact 8261 4759 196
  6811.  
  6812. Insta-kill "_finalstreet_trighurtc" Survivor @ setpos_exact 9101 4969 196
  6813.  
  6814. PvP:
  6815.  
  6816. Deleted func_playerinfected_clip @ setpos_exact 9087 5551 535
  6817.  
  6818. Deleted func_playerinfected_clip @ setpos_exact 8271 3147 1055
  6819.  
  6820. Brush "_losfix_copcar" created @ setpos_exact 9613 4999 16
  6821.  
  6822. Brush "_losfix_crane1" created @ setpos_exact 5692 3913 784
  6823.  
  6824. Brush "_losfix_crane2" created @ setpos_exact 5823 3913 746
  6825.  
  6826. Brush "_losfix_crane3" created @ setpos_exact 6032 3914 746
  6827.  
  6828. Brush "_losfix_crane4" created @ setpos_exact 5886 3828 756
  6829.  
  6830. Brush "_losfix_crane5" created @ setpos_exact 5810 3914 1213
  6831.  
  6832. Brush "_losfix_crane6" created @ setpos_exact 5820 3914 1194
  6833.  
  6834. Brush "_losfix_semi" created @ setpos_exact 7412 5366 27
  6835.  
  6836. Brush "_losfix_van" created @ setpos_exact 8754 5174.01 16
  6837.  
  6838. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact 6197 4672 1056
  6839.  
  6840. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact 9668 6033 536
  6841.  
  6842. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact 8904 3512 1056
  6843.  
  6844. LADDER: _ladder_endchaingate_cloned_endtallstraight
  6845.  
  6846. LADDER: _ladder_endcornerleft_cloned_farendmiddle
  6847.  
  6848. LADDER: _ladder_endcornerright_cloned_farendmiddle
  6849.  
  6850. LADDER: _ladder_endcornertop_cloned_undercranedump
  6851.  
  6852. LADDER: _ladder_officefoyerB_cloned_firebarrelfence
  6853.  
  6854. LADDER: _ladder_officefoyerT_cloned_undercranepipe
  6855.  
  6856. LADDER: _ladder_poleconnection_cloned_semiexploit
  6857.  
  6858. Static prop "_officefoyer_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 8544 3284 1122
  6859.  
  6860. Static prop "_officefoyer_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 8544 3761 1122
  6861.  
  6862. Static prop "_solidify_officefoyer_pole" W/ "models/props_trainstation/pole_384connection001a.mdl" @ setpos_exact 8511.9 3565.75 1248.34
  6863.  
  6864. Ladder found @ "8596 5497.5 92.3941" and shifted w/ offset @ "0 4 0"
  6865.  
  6866. Ladder found @ "8260 5497.5 92.3941" and shifted w/ offset @ "0 4 0"
  6867.  
  6868. Survival:
  6869.  
  6870. Clip "_survival_electricgod" blocks Survivors @ setpos_exact 8328 3196 783
  6871.  
  6872. ------------------------------------------------------------------------------------------------------------------------
  6873.  
  6874. DEAD AIR - THE CONSTRUCTION SITE || c11m3_garage
  6875.  
  6876. All:
  6877.  
  6878. Clip "_dispcrouch_rubblepipes" blocks Everyone @ setpos_exact -6060 758 -125
  6879.  
  6880. Clip "_clipgap_roof" blocks Survivors @ setpos_exact -2226 5494 825
  6881.  
  6882. Clip "_permstuck_processortanks" blocks Everyone @ setpos_exact -3000 2129 103
  6883.  
  6884. Clip "_booster_windows" blocks Survivors @ setpos_exact -3082 3152 160
  6885.  
  6886. Clip "_bunnyhop_windows" blocks Survivors @ setpos_exact -2954 1393 160
  6887.  
  6888. Clip "_cliprework_construction01" blocks Survivors @ setpos_exact -6885 -2488 712
  6889.  
  6890. Clip "_cliprework_construction02" blocks Survivors @ setpos_exact -7518 -2488 712
  6891.  
  6892. Clip "_cliprework_construction03" blocks Survivors @ setpos_exact -5645 -884 1118
  6893.  
  6894. Clip "_cliprework_construction04" blocks Survivors @ setpos_exact -5384 -1528 1000
  6895.  
  6896. Clip "_cliprework_startarea02" blocks Survivors @ setpos_exact -5008 -2351 712
  6897.  
  6898. Clip "_cliprework_startarea01" blocks Survivors @ setpos_exact -4232 -3186 548
  6899.  
  6900. Clip "_nav_constructwin" blocks Survivors @ setpos_exact -5776 -1304 216
  6901.  
  6902. Clip "_permstuck_watertank" blocks Everyone @ setpos_exact -4044 2880 16
  6903.  
  6904. Static prop "_nav_constructwin_propper" W/ "models/props_update/plywood_128.mdl" @ setpos_exact -5776 -1302 280
  6905.  
  6906. FIX: Tanks prevented from being able to punch barricade gascans to delete them.
  6907.  
  6908. PvP:
  6909.  
  6910. Deleted func_playerinfected_clip @ setpos_exact -7489 -2145 31
  6911.  
  6912. Deleted func_playerinfected_clip @ setpos_exact -8161 -3729 535
  6913.  
  6914. Deleted func_playerinfected_clip @ setpos_exact -7617 -1057 703
  6915.  
  6916. Deleted func_playerinfected_clip @ setpos_exact -6761 1111 619
  6917.  
  6918. Deleted func_playerinfected_clip @ setpos_exact -4245 -3665 547
  6919.  
  6920. Deleted func_playerinfected_clip @ setpos_exact -5144 1903 15
  6921.  
  6922. Tank/Charger chokepoint atomizer created @ setpos_exact -3451 2517 32
  6923.  
  6924. Tank/Charger chokepoint atomizer created @ setpos_exact -3573 2854 32
  6925.  
  6926. Brush "_losfix_copcar" created @ setpos_exact -3430 875 15
  6927.  
  6928. Brush "_losfix_end_van" created @ setpos_exact -3221 4198 23
  6929.  
  6930. Brush "_losfix_van" created @ setpos_exact -4577 664 16
  6931.  
  6932. Brush "_losfix_watertank1" created @ setpos_exact -4854 3494 22
  6933.  
  6934. Brush "_losfix_watertank2" created @ setpos_exact -3733 2330 38
  6935.  
  6936. Brush "_losfix_watertank3" created @ setpos_exact -3947 2566 38
  6937.  
  6938. Brush "_losfix_watertank4" created @ setpos_exact -3994 2929 25
  6939.  
  6940. Clip "_constructsite_fireescape_booster" blocks Survivors @ setpos_exact -5434 -1145 792
  6941.  
  6942. Clip "_constructsite_scaffold_clip" blocks Infected @ setpos_exact -7551 -1707 180
  6943.  
  6944. Clip "_constructsite_wwblocker" blocks Infected @ setpos_exact -7203 -723 736
  6945.  
  6946. Clip "_ladder_constructionfireescapea_qolclip" blocks Infected @ setpos_exact -5478 -1153 727
  6947.  
  6948. Clip "_ladder_fireescapehelper_qolclip" blocks Infected @ setpos_exact -5456 -1312 512
  6949.  
  6950. Clip "_ladderqol_lessworthlessthanbefore" blocks Infected @ setpos_exact -2901 2420 168
  6951.  
  6952. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -7753 -2058 16
  6953.  
  6954. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact -7711 -1040 308
  6955.  
  6956. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact -7976 -1504 180
  6957.  
  6958. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact -6583 -3412 584
  6959.  
  6960. Clip "_meticulous_funcinfclip05" blocks Infected @ setpos_exact -5602 -2703 976
  6961.  
  6962. Clip "_meticulous_funcinfclip06" blocks Infected @ setpos_exact -6217 1232 380
  6963.  
  6964. Clip "_meticulous_funcinfclip07" blocks Infected @ setpos_exact -5655 1952 8
  6965.  
  6966. Clip "_meticulous_funcinfclip08" blocks Infected @ setpos_exact -3664 -3207 548
  6967.  
  6968. Clip "_meticulous_funcinfclip09" blocks Infected @ setpos_exact -3934 -3627 548
  6969.  
  6970. Clip "_yeswayfence1st_clip" blocks Everyone @ setpos_exact -5135 3067 16
  6971.  
  6972. Clip "_yeswayfence2nd_clip" blocks Everyone @ setpos_exact -4447 4199 16
  6973.  
  6974. Clip "_yeswayfence_funcinfclip1" blocks Infected @ setpos_exact -5521 3273 8
  6975.  
  6976. Clip "_yeswayfence_funcinfclip2" blocks Infected @ setpos_exact -4632 4593 8
  6977.  
  6978. Clip "_yeswayfence_funcinfclip3" blocks Infected @ setpos_exact -3736 4867 8
  6979.  
  6980. LADDER: _ladder_airportleft_cloned_airportright
  6981.  
  6982. LADDER: _ladder_airportmidB_cloned_airportright
  6983.  
  6984. LADDER: _ladder_airportmidT_cloned_onewayfence
  6985.  
  6986. LADDER: _ladder_constructnewarea_cloned_alleyelecbox
  6987.  
  6988. LADDER: _ladder_constructnewpipe_cloned_prevunused
  6989.  
  6990. LADDER: _ladder_constructpillarB_cloned_alleyfirstpipe
  6991.  
  6992. LADDER: _ladder_constructpillarT_cloned_whitepillar
  6993.  
  6994. LADDER: _ladder_constructionfireescapea_cloned_tricountytop
  6995.  
  6996. LADDER: _ladder_constructionfireescapeb_cloned_skybridgetiny
  6997.  
  6998. LADDER: _ladder_fireescapehelpera_cloned_skybridgetiny
  6999.  
  7000. LADDER: _ladder_fireescapehelperb_cloned_skybridgetiny
  7001.  
  7002. LADDER: _ladder_tallibeamright_cloned_tallibeamleft
  7003.  
  7004. LADDER: _ladder_yellowgirder_cloned_skybridgemini
  7005.  
  7006. LADDER: _ladder_yesdrawtripleL_cloned_skybridgetiny
  7007.  
  7008. LADDER: _ladder_yesdrawtripleR_cloned_firewindow
  7009.  
  7010. LADDER: _ladder_yeswayfenceback1_cloned_1stfenceback
  7011.  
  7012. LADDER: _ladder_yeswayfenceback2_cloned_1stfenceback
  7013.  
  7014. LADDER: _ladder_yeswayfenceback3_cloned_1stfenceback
  7015.  
  7016. LADDER: _ladder_yeswayfenceback4_cloned_2ndfenceback
  7017.  
  7018. LADDER: _ladder_yeswayfenceback5_cloned_2ndfenceback
  7019.  
  7020. LADDER: _ladder_yeswayfenceback6_cloned_2ndfenceback
  7021.  
  7022. LADDER: _ladder_yeswayfencefront1_cloned_1stfenceback
  7023.  
  7024. LADDER: _ladder_yeswayfencefront2_cloned_1stfenceback
  7025.  
  7026. LADDER: _ladder_yeswayfencefront3_cloned_1stfenceback
  7027.  
  7028. LADDER: _ladder_yeswayfencefront4_cloned_1stfenceback
  7029.  
  7030. LADDER: _ladder_yeswayfencefront5_cloned_2ndfenceback
  7031.  
  7032. LADDER: _ladder_yeswayfencefront6_cloned_2ndfenceback
  7033.  
  7034. LADDER: _ladder_yeswayfencefront7_cloned_2ndfenceback
  7035.  
  7036. LADDER: _ladder_yeswayfencefront8_cloned_2ndfenceback
  7037.  
  7038. Static prop "_constructsite_fireescapetop" W/ "models/props_urban/fire_escape_upper.mdl" @ setpos_exact -5392 -1067 792
  7039.  
  7040. Static prop "_constructsite_fireescapebot" W/ "models/props_urban/fire_escape_lower.mdl" @ setpos_exact -5392 -1067 664
  7041.  
  7042. Static prop "_constructsite_propladdera" W/ "models/props_pipes/concrete_pipe001a.mdl" @ setpos_exact -7629 -1214 222
  7043.  
  7044. Static prop "_constructsite_propladderb" W/ "models/props_pipes/concrete_pipe001a.mdl" @ setpos_exact -7531 -1212 236
  7045.  
  7046. Static prop "_constructsite_propladderc" W/ "models/props_urban/metal_plate001.mdl" @ setpos_exact -7573 -1199 291
  7047.  
  7048. Static prop "_constructsite_scaffold" W/ "models/props_equipment/scaffolding.mdl" @ setpos_exact -7551 -1710 80
  7049.  
  7050. Static prop "_constructsite_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7967 -1760 232
  7051.  
  7052. Static prop "_constructsite_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7967 -1505 232
  7053.  
  7054. Static prop "_constructsite_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7967 -1250 232
  7055.  
  7056. Static prop "_constructsite_wrongwayd" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7051 -745 789
  7057.  
  7058. Static prop "_constructsite_wrongwaye" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7325 -745 789
  7059.  
  7060. Static prop "_constructsite_wrongwayf" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7490 -2346 590
  7061.  
  7062. Static prop "_constructsite_wrongwayg" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -7340 -2475 590
  7063.  
  7064. Static prop "_fadedistfix_airport_acunitleft" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact -1344.2 4559.64 384.299
  7065.  
  7066. Static prop "_fadedistfix_airport_acunitright" W/ "models/props_rooftop/acvent01.mdl" @ setpos_exact -1344.2 4015.64 384.299
  7067.  
  7068. Static prop "_yesdrawtriple_surface" W/ "models/props_update/c11m3_nodraw_cinderwall.mdl" @ setpos_exact -2948 1392 224
  7069.  
  7070. Static prop "_yeswayfence_curb" W/ "models/props_update/c11m3_wrongway_curb.mdl" @ setpos_exact -4512 3264 0
  7071.  
  7072. Static prop "_yeswayfence_van" W/ "models/props_vehicles/van.mdl" @ setpos_exact -5221 3669 16
  7073.  
  7074. Static prop "_yeswayfence_vanglass" W/ "models/props_vehicles/van_glass.mdl" @ setpos_exact -5221 3669 16
  7075.  
  7076. Static prop "_yeswayfence_wall" W/ "models/props_update/c11m3_wrongway_fence.mdl" @ setpos_exact -4448 3072 96
  7077.  
  7078. Static prop "_yeswayfence_wrongway1" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5521 2393 72
  7079.  
  7080. Static prop "_yeswayfence_wrongway2" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5521 2833 72
  7081.  
  7082. Static prop "_yeswayfence_wrongway3" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5521 3273 72
  7083.  
  7084. Static prop "_yeswayfence_wrongway4" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5521 3713 72
  7085.  
  7086. Static prop "_yeswayfence_wrongway5" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5521 4153 72
  7087.  
  7088. Static prop "_yeswayfence_wrongway6" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -5072 4593 72
  7089.  
  7090. Static prop "_yeswayfence_wrongway7" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -4632 4593 72
  7091.  
  7092. Static prop "_yeswayfence_wrongway8" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -4192 4593 72
  7093.  
  7094. Physics prop "_losblocker_closetcrate" W/ "models/props_junk/wood_crate002a.mdl" @ setpos_exact -559 3577 335
  7095.  
  7096. Ladder found @ "-1539.5 1472 192.315" and shifted w/ offset @ "-1 0 0"
  7097.  
  7098. Ladder found @ "-3352 2426 110" and shifted w/ offset @ "0 -1 0"
  7099.  
  7100. ------------------------------------------------------------------------------------------------------------------------
  7101.  
  7102. DEAD AIR - THE TERMINAL || c11m4_terminal
  7103.  
  7104. All:
  7105.  
  7106. Clip "_conveyorvent_upper" blocks Survivors @ setpos_exact 632 928 368
  7107.  
  7108. Clip "_conveyorvent_lower" blocks Survivors @ setpos_exact 712 928 160
  7109.  
  7110. Clip "_permstuck_ladderqol" blocks Infected @ setpos_exact 580 3565 524
  7111.  
  7112. Clip "_booster_atlaswon" blocks Survivors @ setpos_exact 1978.4 1555.4 448
  7113.  
  7114. Clip "_booster_drophole" blocks Survivors @ setpos_exact -15 5336 512
  7115.  
  7116. Clip "_booster_barbyoutcrop" blocks Survivors @ setpos_exact 302 4460 488
  7117.  
  7118. Clip "_booster_skylight" blocks Survivors @ setpos_exact -39 4459 763
  7119.  
  7120. Clip "_booster_vent" blocks Survivors @ setpos_exact 386 4112 241
  7121.  
  7122. Clip "_booster_bannerb" blocks Survivors @ setpos_exact -200 4163 600
  7123.  
  7124. Clip "_booster_bannera" blocks Survivors @ setpos_exact -200 4674 472
  7125.  
  7126. Clip "_booster_pipea" blocks Survivors @ setpos_exact 302 5096 519
  7127.  
  7128. Clip "_booster_pipeb" blocks Survivors @ setpos_exact 302 3801 519
  7129.  
  7130. Clip "_chairbodypile_smoother" blocks Everyone @ setpos_exact 500 5301 295
  7131.  
  7132. Clip "_hallwayguard_right" blocks Everyone @ setpos_exact 693 5566.3 296
  7133.  
  7134. Clip "_hallwayguard_left" blocks Everyone @ setpos_exact 667.5 5679.3 296
  7135.  
  7136. Static prop "_cosmetic_wallpaper" W/ "models/props_unique/zombiebreakwallexteriorairport01_main.mdl" @ setpos_exact 2507.95 3263.99 216
  7137.  
  7138. Static prop "_cosmetic_wallblock" W/ "models/props_unique/zombiebreakwallhospitalexterior01_main.mdl" @ setpos_exact 2507.99 3263.99 252
  7139.  
  7140. LIGHTS: Metal detector spotlight was never moved for L4D2's port -- but it's fixed now!
  7141.  
  7142. PvP:
  7143.  
  7144. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 2552 4080 152
  7145.  
  7146. Clip "_altpath_escalator" blocks Survivors @ setpos_exact 2289 1737 51
  7147.  
  7148. Brush "_losfix_chairs1" created @ setpos_exact 2976 2257 162
  7149.  
  7150. Brush "_losfix_chairs2" created @ setpos_exact 3022 3230 161
  7151.  
  7152. Brush "_losfix_chairs3" created @ setpos_exact 2967 3931 162
  7153.  
  7154. Brush "_losfix_chairs_long1" created @ setpos_exact 2969 3383 162
  7155.  
  7156. Brush "_losfix_chairs_long2" created @ setpos_exact 2968 3760 162
  7157.  
  7158. Brush "_losfix_chairs_long3" created @ setpos_exact 2970 4924 162
  7159.  
  7160. Brush "_losfix_chairs_long4" created @ setpos_exact 2971 5097 162
  7161.  
  7162. Brush "_losfix_chairs_long5" created @ setpos_exact 2970 5457 162
  7163.  
  7164. Clip "_collision_terminaltruss1" blocks Infected @ setpos_exact -202 4742 670
  7165.  
  7166. Clip "_collision_terminaltruss2" blocks Infected @ setpos_exact 128 4230 582
  7167.  
  7168. Clip "_collision_terminaltruss3" blocks Infected @ setpos_exact -400 4230 630
  7169.  
  7170. Clip "_ladder_baggageclaim_rampclip" blocks Infected @ setpos_exact 640 4417 305
  7171.  
  7172. Clip "_ladderqol_vaneventarea_left" blocks Infected @ setpos_exact 306 5104 264
  7173.  
  7174. Clip "_ladderqol_vaneventarea_right" blocks Infected @ setpos_exact 306 3811 264
  7175.  
  7176. Clip "_losblocker_finalrun_clip" blocks Survivors @ setpos_exact 3032 3925 320
  7177.  
  7178. LADDER: _ladder_baggageclaim_cloned_farluggageback
  7179.  
  7180. LADDER: _ladder_exploitventB_cloned_basheddoors
  7181.  
  7182. LADDER: _ladder_exploitventT_cloned_givebloodrubble
  7183.  
  7184. LADDER: _ladder_farluggagefront_cloned_farluggageback
  7185.  
  7186. LADDER: _ladder_midluggagefront_cloned_midluggageback
  7187.  
  7188. LADDER: _ladder_midventfront_cloned_midventback
  7189.  
  7190. Navblocker "_losblocker_finalrun_navblock" blocks Everyone w/ Apply @ setpos_exact 3050 3925 153
  7191.  
  7192. Static prop "_losblocker_finalrun_screen" W/ "models/props_unique/airportdeparturescreen01.mdl" @ setpos_exact 2983 3925 151.25
  7193.  
  7194. trigger_auto_crouch "_duckqol_missingvent" created @ setpos_exact 716 928 160
  7195.  
  7196. trigger_playermovement "_duckqol_vanfence" with Option Duck @ setpos_exact -285 3524 191
  7197.  
  7198. Navmesh modified w/ CHECKPOINT @ setpos_exact 3175 4562 152
  7199.  
  7200. Coop:
  7201.  
  7202. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 2552 4080 152
  7203.  
  7204. ------------------------------------------------------------------------------------------------------------------------
  7205.  
  7206. DEAD AIR - RUNWAY FINALE || c11m5_runway
  7207.  
  7208. All:
  7209.  
  7210. Clip "_lowthinwing_collision" blocks Everyone @ setpos_exact -6057 9725 -12
  7211.  
  7212. Clip "_nav_skybridge" blocks Survivors @ setpos_exact -6035 8761 32
  7213.  
  7214. Clip "_nav_firering_cheese" blocks Survivors @ setpos_exact -3408 9155 -192
  7215.  
  7216. Clip "_planecrash_concreteramp" blocks Infected @ setpos_exact -4127 11223 -128
  7217.  
  7218. Static prop "_terry" W/ "models/deadbodies/dead_male_civilian_body.mdl" @ setpos_exact -4154 9350 -140
  7219.  
  7220. PvP:
  7221.  
  7222. Brush "_losfix_lowthinwing" created @ setpos_exact -6057 9725 -12
  7223.  
  7224. Brush "_losfix_truck1" created @ setpos_exact -5039 8665 -180
  7225.  
  7226. Brush "_losfix_truck2" created @ setpos_exact -4968 8695 -181
  7227.  
  7228. Brush "_losfix_truck3" created @ setpos_exact -5093 8635 -180
  7229.  
  7230. Clip "_boardingramp_wallclip" blocks Infected @ setpos_exact -5824 10391.5 220
  7231.  
  7232. Clip "_collapsedbuilding_clip1" blocks Infected @ setpos_exact -6506 7723 -123
  7233.  
  7234. Clip "_collapsedbuilding_clip2" blocks Infected @ setpos_exact -6495 7469 403
  7235.  
  7236. Clip "_lowthinwing_collision" blocks Everyone @ setpos_exact -6057 9725 -12
  7237.  
  7238. Clip "_planecrash_concreteramp" blocks Infected @ setpos_exact -4127 11223 -128
  7239.  
  7240. LADDER: _ladder_boardingtables_cloned_cargocontainerfront
  7241.  
  7242. LADDER: _ladder_catertruckleft1_cloned_escapeplaneright
  7243.  
  7244. LADDER: _ladder_catertruckleft2_cloned_escapeplaneright
  7245.  
  7246. LADDER: _ladder_catertruckright1_cloned_escapeplaneright
  7247.  
  7248. LADDER: _ladder_catertruckright2_cloned_escapeplaneright
  7249.  
  7250. LADDER: _ladder_collapsedbuilding_cloned_escapeplaneleft
  7251.  
  7252. LADDER: _ladder_collapsedbuildingdoor_cloned_cargocontainerfront
  7253.  
  7254. LADDER: _ladder_skybridgeleft_cloned_skybridgemid
  7255.  
  7256. LADDER: _ladder_wreckedengine_cloned_escapeplaneleft
  7257.  
  7258. LADDER: _ladder_wreckedfuselage_cloned_cargoslanted
  7259.  
  7260. LADDER: _ladder_wreckedrear_cloned_escapeplaneleft
  7261.  
  7262. Static prop "_losblocker_fireline_tractor" W/ "models/props_vehicles/airport_baggage_tractor.mdl" @ setpos_exact -2980.23 10393 -141
  7263.  
  7264. PROP: Baggage cart under the plane wing moved closer to the ring of fire to give infected better spawn points
  7265.  
  7266. Deleted ([260] prop_physics) @ setpos_exact -3704.09 8863.66 -166.781
  7267.  
  7268. Physics prop "_replacement_baggagecart" W/ "models/props_vehicles/airport_baggage_cart2.mdl" @ setpos_exact -3791 9604 -191
  7269.  
  7270. FILE: RunScriptFile'd "c11m5_versus_planecrash.nut" for ladders and LOS fixes.
  7271.  
  7272. Navblocker "_debris_navblock_1" blocks Infected w/ Apply @ setpos_exact -4085 11291 -88
  7273.  
  7274. Navblocker "_debris_navblock_2" blocks Infected w/ Apply @ setpos_exact -3735 10741 -88
  7275.  
  7276. Navblocker "_debris_navblock_3" blocks Infected w/ Apply @ setpos_exact -3575 10531 -88
  7277.  
  7278. Navblocker "_debris_navblock_4" blocks Infected w/ Apply @ setpos_exact -3435 10361 -88
  7279.  
  7280. Navblocker "_debris_navblock_5" blocks Infected w/ Apply @ setpos_exact -3435 10271 -88
  7281.  
  7282. Navblocker "_debris_navblock_6" blocks Infected w/ Apply @ setpos_exact -3085 10771 -88
  7283.  
  7284. Navblocker "_debris_navblock_7" blocks Infected w/ Apply @ setpos_exact -2795 10681 -88
  7285.  
  7286. Navblocker "_debris_navblock_8" blocks Infected w/ Apply @ setpos_exact -2795 10471 -88
  7287.  
  7288. Trigger "_debris_trigpush_1" pushes Infected w/ speed 610 @ setpos_exact -4085 11291 -88
  7289.  
  7290. Trigger "_debris_trigpush_2" pushes Infected w/ speed 610 @ setpos_exact -3735 10741 -88
  7291.  
  7292. Trigger "_debris_trigpush_3" pushes Infected w/ speed 610 @ setpos_exact -3575 10531 -88
  7293.  
  7294. Trigger "_debris_trigpush_4" pushes Infected w/ speed 610 @ setpos_exact -3435 10361 -88
  7295.  
  7296. Trigger "_debris_trigpush_5" pushes Infected w/ speed 610 @ setpos_exact -3435 10271 -88
  7297.  
  7298. Trigger "_debris_trigpush_6" pushes Infected w/ speed 610 @ setpos_exact -3085 10771 -88
  7299.  
  7300. Trigger "_debris_trigpush_7" pushes Infected w/ speed 610 @ setpos_exact -2795 10681 -88
  7301.  
  7302. Trigger "_debris_trigpush_8" pushes Infected w/ speed 610 @ setpos_exact -2795 10471 -88
  7303.  
  7304. LADDER: _ladder_debriscabinleft_cloned_escapeplaneright
  7305.  
  7306. LADDER: _ladder_debriscabinright_cloned_escapeplaneright
  7307.  
  7308. LADDER: _ladder_debriscabinfront_cloned_escapeplaneleft
  7309.  
  7310. LADDER: _ladder_debriswing_cloned_cargocontainerright
  7311.  
  7312. Brush "_losfix_debris_1a" created @ setpos_exact -3020 11040 35
  7313.  
  7314. Brush "_losfix_debris_1b" created @ setpos_exact -2870 11028 33
  7315.  
  7316. Brush "_losfix_debris_1c" created @ setpos_exact -2720 10988 26
  7317.  
  7318. Brush "_losfix_debris_1d" created @ setpos_exact -2699 10948 16
  7319.  
  7320. Brush "_losfix_debris_1e" created @ setpos_exact -2678 10913 7
  7321.  
  7322. Brush "_losfix_debris_1f" created @ setpos_exact -2670 10878 7
  7323.  
  7324. Clip "_losfix_debris_1clipa" blocks Infected @ setpos_exact -2854 10895 -17
  7325.  
  7326. Clip "_losfix_debris_1clipb" blocks Infected @ setpos_exact -2867 11010 3
  7327.  
  7328. Clip "_losfix_debris_1clipc" blocks Infected @ setpos_exact -2706 10945 3
  7329.  
  7330. Clip "_losfix_debris_1clipd" blocks Infected @ setpos_exact -2672 10881 3
  7331.  
  7332. Clip "_losfix_debris_1clipe" blocks Infected @ setpos_exact -2670 10894 3
  7333.  
  7334. Brush "_losfix_debris_2a" created @ setpos_exact -2733 10965 99
  7335.  
  7336. Brush "_losfix_debris_2b" created @ setpos_exact -2725 10957 103
  7337.  
  7338. Brush "_losfix_debris_2c" created @ setpos_exact -2717 10931 100
  7339.  
  7340. Brush "_losfix_debris_2d" created @ setpos_exact -2707 10905 118
  7341.  
  7342. Brush "_losfix_debris_2e" created @ setpos_exact -2697 10880 118
  7343.  
  7344. Brush "_losfix_debris_2f" created @ setpos_exact -2687 10855 118
  7345.  
  7346. Brush "_losfix_debris_2g" created @ setpos_exact -2677 10830 118
  7347.  
  7348. Brush "_losfix_debris_2h" created @ setpos_exact -2667 10805 118
  7349.  
  7350. Clip "_losfix_debris_2clip" blocks Infected @ setpos_exact -2698 10884 69
  7351.  
  7352. Brush "_losfix_debris_3a" created @ setpos_exact -3220 11085 42
  7353.  
  7354. Brush "_losfix_debris_3b" created @ setpos_exact -3300 11125 42
  7355.  
  7356. Clip "_losfix_debris_3clip" blocks Infected @ setpos_exact -3217 11068 48
  7357.  
  7358. Brush "_losfix_debris_4a" created @ setpos_exact -2910 10743 -26
  7359.  
  7360. Brush "_losfix_debris_4b" created @ setpos_exact -2936 10743 -20
  7361.  
  7362. Brush "_losfix_debris_4c" created @ setpos_exact -2898 10693 -33
  7363.  
  7364. Brush "_losfix_debris_4d" created @ setpos_exact -2886 10679 -48
  7365.  
  7366. Brush "_losfix_debris_4e" created @ setpos_exact -2876 10665 -55
  7367.  
  7368. Brush "_losfix_debris_4f" created @ setpos_exact -2866 10655 -65
  7369.  
  7370. Brush "_losfix_debris_4g" created @ setpos_exact -2866 10639 -73
  7371.  
  7372. Brush "_losfix_debris_4h" created @ setpos_exact -2866 10627 -83
  7373.  
  7374. Clip "_losfix_debris_4clip" blocks Infected @ setpos_exact -2910 10714 -61
  7375.  
  7376. Brush "_losfix_debris_5a" created @ setpos_exact -3490 10660 -53
  7377.  
  7378. Brush "_losfix_debris_5b" created @ setpos_exact -3520 10660 -43
  7379.  
  7380. Brush "_losfix_debris_5c" created @ setpos_exact -3540 10690 -43
  7381.  
  7382. Brush "_losfix_debris_5d" created @ setpos_exact -3590 10720 -43
  7383.  
  7384. Brush "_losfix_debris_5e" created @ setpos_exact -3640 10785 -43
  7385.  
  7386. Brush "_losfix_debris_5f" created @ setpos_exact -3740 10850 -43
  7387.  
  7388. Brush "_losfix_debris_5g" created @ setpos_exact -3840 10950 -43
  7389.  
  7390. Brush "_losfix_debris_5h" created @ setpos_exact -3920 11050 -28
  7391.  
  7392. Brush "_losfix_debris_5i" created @ setpos_exact -4030 11050 -43
  7393.  
  7394. Brush "_losfix_debris_5j" created @ setpos_exact -3755 10640 0
  7395.  
  7396. Brush "_losfix_debris_5k" created @ setpos_exact -3765 10660 0
  7397.  
  7398. Brush "_losfix_debris_5l" created @ setpos_exact -3775 10680 0
  7399.  
  7400. Brush "_losfix_debris_5m" created @ setpos_exact -3787 10700 0
  7401.  
  7402. Brush "_losfix_debris_5n" created @ setpos_exact -3799 10710 0
  7403.  
  7404. Clip "_losfix_debris_5clipa" blocks Infected @ setpos_exact -3618 10750 -70
  7405.  
  7406. Clip "_losfix_debris_5clipb" blocks Infected @ setpos_exact -3716 10867 -178
  7407.  
  7408. Clip "_losfix_debris_5clipc" blocks Infected @ setpos_exact -3893 10838 -110
  7409.  
  7410. Clip "_losfix_debris_5clipd" blocks Infected @ setpos_exact -3995 11241 -42
  7411.  
  7412. Clip "_losfix_debris_5clipe" blocks Infected @ setpos_exact -4108 11488 -102
  7413.  
  7414. Brush "_losfix_debris_6a" created @ setpos_exact -3750 10790 86
  7415.  
  7416. Brush "_losfix_debris_6b" created @ setpos_exact -3770 10805 -4
  7417.  
  7418. Brush "_losfix_debris_6c" created @ setpos_exact -3790 10850 84
  7419.  
  7420. Brush "_losfix_debris_6d" created @ setpos_exact -3750 10820 48
  7421.  
  7422. Brush "_losfix_debris_6e" created @ setpos_exact -3565 10690 53
  7423.  
  7424. Brush "_losfix_debris_6f" created @ setpos_exact -3965 10935 41
  7425.  
  7426. Clip "_losfix_debris_6clipa" blocks Infected @ setpos_exact -3744 10808 50
  7427.  
  7428. Clip "_losfix_debris_6clipb" blocks Infected @ setpos_exact -3654 10898 50
  7429.  
  7430. Clip "_losfix_debris_7clipa" blocks Infected @ setpos_exact -4340 11609 -169
  7431.  
  7432. Clip "_losfix_debris_7clipb" blocks Infected @ setpos_exact -4179 11609 -148
  7433.  
  7434. Clip "_losfix_debris_7clipc" blocks Infected @ setpos_exact -3977 11658 -191
  7435.  
  7436. Clip "_losfix_debris_7clipd" blocks Infected @ setpos_exact -4090 11838 -210
  7437.  
  7438. ------------------------------------------------------------------------------------------------------------------------
  7439. ------------------------------------------------------------------------------------------------------------------------
  7440.  
  7441. BLOOD HARVEST - THE WOODS || c12m1_hilltop
  7442.  
  7443. All:
  7444.  
  7445. Clip "_curvejump_fence" blocks Survivors @ setpos_exact -10342 -8897 517
  7446.  
  7447. Clip "_cliprework_unattackable" blocks Survivors @ setpos_exact -8080 -8448 880.6
  7448.  
  7449. Clip "_permstuck_treeandrock" blocks Everyone @ setpos_exact -11270 -9471 447
  7450.  
  7451. Clip "_nav_quarrybeams" blocks Survivors @ setpos_exact -7808 -9481 512
  7452.  
  7453. Clip "_tankpunch_deflector" blocks Survivors @ setpos_exact -11503 -10981 375
  7454.  
  7455. Clip "_dispcrouch_smoker" blocks Everyone @ setpos_exact -10650 -15068 -46
  7456.  
  7457. Insta-kill "_instakill_longperimeter1" Survivor @ setpos_exact -11827 -13824 -84
  7458.  
  7459. Insta-kill "_instakill_longperimeter2" Survivor @ setpos_exact -12855 -10361 -84
  7460.  
  7461. Insta-kill "_instakill_fallrevivefence" Survivor @ setpos_exact -8883 -8543 87
  7462.  
  7463. Insta-kill "_instakill_fallrevivenoper" Survivor @ setpos_exact -9496 -7665 -96
  7464.  
  7465. PvP:
  7466.  
  7467. Deleted func_playerinfected_clip @ setpos_exact -10432 -9227 1097.5
  7468.  
  7469. Deleted func_playerinfected_clip @ setpos_exact -11072 -9227 1097.5
  7470.  
  7471. Deleted func_playerinfected_clip @ setpos_exact -7564 -14656 688
  7472.  
  7473. Deleted func_playerinfected_clip @ setpos_exact -9672 -12712 672
  7474.  
  7475. Deleted func_playerinfected_clip @ setpos_exact -9962.5 -13558.1 1270.84
  7476.  
  7477. Deleted func_playerinfected_clip @ setpos_exact -9672 -13833.4 1270.84
  7478.  
  7479. Deleted func_playerinfected_clip @ setpos_exact -10304 -13006 1144.44
  7480.  
  7481. Deleted func_playerinfected_clip @ setpos_exact -8528 -8352 1098.19
  7482.  
  7483. Deleted func_playerinfected_clip @ setpos_exact -6448 -7283 1342
  7484.  
  7485. Deleted func_playerinfected_clip @ setpos_exact -5592 -7267 1130
  7486.  
  7487. Deleted func_playerinfected_clip @ setpos_exact -8544 -7816 688
  7488.  
  7489. Clip "_ladder_rockcliffback_clip" blocks Infected @ setpos_exact -10172 -10751 813
  7490.  
  7491. Clip "_ladderqol_rockcliff" blocks Infected @ setpos_exact -10235 -12716 528
  7492.  
  7493. Clip "_meticulous_funcinfclip00" blocks Infected @ setpos_exact -7624 -14554 257
  7494.  
  7495. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -7806 -7614 1536
  7496.  
  7497. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact -9771 -13110 257
  7498.  
  7499. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact -9849 -12580 257
  7500.  
  7501. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact -10788 -8902 557
  7502.  
  7503. Clip "_meticulous_funcinfclip05" blocks Infected @ setpos_exact -11103 -9082 557
  7504.  
  7505. Clip "_meticulous_funcinfclip06" blocks Infected @ setpos_exact -9996 -8345 738
  7506.  
  7507. Clip "_meticulous_funcinfclip07" blocks Infected @ setpos_exact -6728 -7101 820
  7508.  
  7509. Clip "_meticulous_funcinfclip08" blocks Infected @ setpos_exact -5988 -6941 820
  7510.  
  7511. Clip "_meticulous_funcinfclip09" blocks Infected @ setpos_exact -5988 -6941 -65
  7512.  
  7513. Clip "_meticulous_stuckspot" blocks Infected @ setpos_exact -9801 -13140 120
  7514.  
  7515. Clip "_meticulous_slidespot" blocks Infected @ setpos_exact -10932 -8918 432
  7516.  
  7517. LADDER: _ladder_1stcliffback_cloned_startwide
  7518.  
  7519. LADDER: _ladder_1stclifffront_cloned_prebridgewide
  7520.  
  7521. LADDER: _ladder_2ndcliffback_cloned_endfencewide
  7522.  
  7523. LADDER: _ladder_2ndclifffront_cloned_postbridgewide
  7524.  
  7525. LADDER: _ladder_2ndclifftank_cloned_elecboxchairs
  7526.  
  7527. LADDER: _ladder_endelecbox_cloned_elecboxchairs
  7528.  
  7529. LADDER: _ladder_endfenceback_cloned_farunused
  7530.  
  7531. LADDER: _ladder_endfencefront_cloned_freighttripipe
  7532.  
  7533. LADDER: _ladder_rockcliffback_cloned_unusedladder
  7534.  
  7535. LADDER: _ladder_skybridgeleftB_cloned_trackstoshed
  7536.  
  7537. LADDER: _ladder_skybridgeleftT_cloned_trackstoshed
  7538.  
  7539. LADDER: _ladder_skybridgerightB_cloned_trackstoshed
  7540.  
  7541. LADDER: _ladder_skybridgerightT_cloned_trackstoshed
  7542.  
  7543. Ladder found @ "-10213 -12939 834.173" and shifted w/ offset @ "22 0 0"
  7544.  
  7545. Deleted func_playerinfected_clip @ setpos_exact -9556 -13664 688
  7546.  
  7547. ------------------------------------------------------------------------------------------------------------------------
  7548.  
  7549. BLOOD HARVEST - THE TUNNEL || c12m2_traintunnel
  7550.  
  7551. All:
  7552.  
  7553. Clip "_cliprework_outdoors01" blocks Survivors @ setpos_exact -7720 -8476 616
  7554.  
  7555. Clip "_cliprework_outdoors03" blocks Survivors @ setpos_exact -7720 -8476 616
  7556.  
  7557. Clip "_cliprework_outdoors02" blocks Survivors @ setpos_exact -7720 -8476 616
  7558.  
  7559. Clip "_cliprework_outdoors04" blocks Survivors @ setpos_exact -7720 -8476 616
  7560.  
  7561. Clip "_nav_eventlight1" blocks Survivors @ setpos_exact -8021 -7500 191
  7562.  
  7563. Clip "_nav_eventlight2" blocks Survivors @ setpos_exact -6613 -7752 247
  7564.  
  7565. Clip "_stuckwarp_rocketdude" blocks Everyone @ setpos_exact -5430 -8170 217
  7566.  
  7567. Clip "_rubble_smoother" blocks Everyone @ setpos_exact -1777 -9480 -25
  7568.  
  7569. trigger_auto_crouch "_duckqol_ventduct" created @ setpos_exact -8728 -7494 92
  7570.  
  7571. PvP:
  7572.  
  7573. Deleted func_playerinfected_clip @ setpos_exact -7808 -7360 1711.28
  7574.  
  7575. Tank/Charger chokepoint atomizer created @ setpos_exact -8604 -7271 -64
  7576.  
  7577. Tank/Charger chokepoint atomizer created @ setpos_exact -8604 -7531 -64
  7578.  
  7579. Clip "_charger_smoother_01" blocks Everyone @ setpos_exact -8733 -8038 176
  7580.  
  7581. Clip "_charger_smoother_02" blocks Everyone @ setpos_exact -7500 -8038 176
  7582.  
  7583. Clip "_ladder_indoorventduct_clip" blocks Everyone @ setpos_exact -8170 -6300 -64
  7584.  
  7585. Clip "_ladder_parkourvent_clip" blocks Infected @ setpos_exact -8723 -7415 163
  7586.  
  7587. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -7806 -7614 1536
  7588.  
  7589. LADDER: _ladder_boxcarbm1mirr_cloned_firstwindow
  7590.  
  7591. LADDER: _ladder_boxcarcm1mirr_cloned_firstwindow
  7592.  
  7593. LADDER: _ladder_eventdoorback_cloned_triplepipes
  7594.  
  7595. LADDER: _ladder_eventdoorfront_cloned_triplepipes
  7596.  
  7597. LADDER: _ladder_indoorboxcar_cloned_warehousecorner
  7598.  
  7599. LADDER: _ladder_indoorventduct_cloned_unusedcliff
  7600.  
  7601. LADDER: _ladder_parkourvent_cloned_insideboxcar
  7602.  
  7603. LADDER: _ladder_skybridgeleftB_cloned_trackstoshed
  7604.  
  7605. LADDER: _ladder_skybridgeleftT_cloned_trackstoshed
  7606.  
  7607. LADDER: _ladder_skybridgem1mirr_cloned_restoredbluebox
  7608.  
  7609. LADDER: _ladder_skybridgerightB_cloned_trackstoshed
  7610.  
  7611. LADDER: _ladder_skybridgerightT_cloned_trackstoshed
  7612.  
  7613. LADDER: _ladder_starthugevent_cloned_traintracktall
  7614.  
  7615. LADDER: _ladder_tankbeamescape_cloned_insideboxcar
  7616.  
  7617. LADDER: _ladder_warehouseboxes_cloned_warehousecorner
  7618.  
  7619. Ladder found @ "-4322 -8715 32" and shifted w/ offset @ "71 0 21"
  7620.  
  7621. Ladder found @ "-5991 -8719 32" and shifted w/ offset @ "247 0 21"
  7622.  
  7623. Static prop "_easter_dorykcir" W/ "models/weapons/melee/w_crowbar.mdl" @ setpos_exact -8690 -7340 201
  7624.  
  7625. Static prop "_easter_yofffej" W/ "models/props_junk/gnome.mdl" @ setpos_exact -8695 -7340 211
  7626.  
  7627. QOL: Deleted blockers to allow ghost infected to pass through the event door for Versus-only QoL.
  7628.  
  7629. Deleted ([466] func_brush) @ setpos_exact -8600 -7540 -8.125
  7630.  
  7631. Deleted ([467] func_brush) @ setpos_exact -8600 -7524 -8.125
  7632.  
  7633. Survival:
  7634.  
  7635. Clip "_nav_wareshelf" blocks Survivors @ setpos_exact -8740 -6996 170
  7636.  
  7637. Navblocker "_survival_navblock_stairs" blocks Everyone w/ Apply @ setpos_exact -6688 -7700 -80
  7638.  
  7639. ------------------------------------------------------------------------------------------------------------------------
  7640.  
  7641. BLOOD HARVEST - THE BRIDGE || c12m3_bridge
  7642.  
  7643. All:
  7644.  
  7645. Clip "_dispcrouch_preslope" blocks Everyone @ setpos_exact 3090 -10118 -23
  7646.  
  7647. Clip "_dispcrouch_trains" blocks Everyone @ setpos_exact 4120 -14380 88
  7648.  
  7649. Clip "_dispcrouch_eventlever" blocks Everyone @ setpos_exact 8302 -13946 21
  7650.  
  7651. Clip "_dispcrouch_recompilefail" blocks Everyone @ setpos_exact 5930 -14086 -70
  7652.  
  7653. Clip "_permstuck_eventlever" blocks Everyone @ setpos_exact 8150 -13811 57
  7654.  
  7655. Clip "_nav_bridgecollapsea" blocks Survivors @ setpos_exact 5854 -12656 -41.3
  7656.  
  7657. Clip "_nav_bridgecollapseb" blocks Survivors @ setpos_exact 6000 -12656 -41.3
  7658.  
  7659. Clip "_stuckwarp_endtunnel" blocks Everyone @ setpos_exact 968 -12932 20
  7660.  
  7661. Clip "_permstuck_terribadcliff" blocks Everyone @ setpos_exact 7317 -11487 451
  7662.  
  7663. MOVER: Clip "_bridge_dynamic_clip" simulated to move when bridge collapses.
  7664.  
  7665. Clip "_bridge_dynamic_clip" blocks Survivors @ setpos_exact 5932 -13314 272
  7666.  
  7667. PvP:
  7668.  
  7669. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 7136 -11876 394
  7670.  
  7671. Deleted func_playerinfected_clip @ setpos_exact 1536 -10864 383.75
  7672.  
  7673. Deleted func_playerinfected_clip @ setpos_exact 5760 -12928 600
  7674.  
  7675. Clip "_ladder_generatorhouse_clip" blocks Everyone @ setpos_exact 6531 -13083 -58
  7676.  
  7677. Clip "_ladder_newtankperch_clip" blocks Infected @ setpos_exact 3465 -10222 158
  7678.  
  7679. Clip "_ladder_pinkstairwell_clip" blocks Survivors @ setpos_exact 1740 -12296 260
  7680.  
  7681. Clip "_ladder_rightquickcliff_clip" blocks Infected @ setpos_exact 2032 -10510 232
  7682.  
  7683. Clip "_ladder_rightquickcliff_rock" blocks Infected @ setpos_exact 2101 -10514 17
  7684.  
  7685. Clip "_ladder_startventshaft_clipleft" blocks Everyone @ setpos_exact -1030 -10911 -32
  7686.  
  7687. Clip "_ladder_startventshaft_clipright" blocks Everyone @ setpos_exact -1005 -10903 -32
  7688.  
  7689. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact -688 -10708 321
  7690.  
  7691. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact 262 -11524 321
  7692.  
  7693. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact 1323 -12178 321
  7694.  
  7695. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact 1616 -12255 321
  7696.  
  7697. Clip "_meticulous_funcinfclip05" blocks Infected @ setpos_exact 262 -11524 321
  7698.  
  7699. Clip "_meticulous_funcinfclip06" blocks Infected @ setpos_exact 2560 -12100 321
  7700.  
  7701. Clip "_meticulous_funcinfclip07" blocks Infected @ setpos_exact 3276 -11409 321
  7702.  
  7703. Clip "_meticulous_funcinfclip08" blocks Infected @ setpos_exact 3821 -10047 321
  7704.  
  7705. Clip "_meticulous_funcinfclip09" blocks Infected @ setpos_exact 1980 -9420 321
  7706.  
  7707. Clip "_meticulous_funcinfclip10" blocks Infected @ setpos_exact -132 -9696 321
  7708.  
  7709. Clip "_meticulous_funcinfclip11" blocks Infected @ setpos_exact 2361 -13935 321
  7710.  
  7711. Clip "_meticulous_funcinfclip12" blocks Infected @ setpos_exact 5344 -14507 321
  7712.  
  7713. Clip "_meticulous_funcinfclip13" blocks Infected @ setpos_exact 9070 -14172 321
  7714.  
  7715. Clip "_meticulous_funcinfclip14" blocks Infected @ setpos_exact 9216 -13284 321
  7716.  
  7717. Clip "_meticulous_funcinfclip15" blocks Infected @ setpos_exact 8456 -12150 321
  7718.  
  7719. Clip "_meticulous_funcinfclip16" blocks Infected @ setpos_exact 8153 -11970 321
  7720.  
  7721. Clip "_meticulous_funcinfclip17" blocks Infected @ setpos_exact 7954 -11343 321
  7722.  
  7723. Clip "_meticulous_funcinfclip18" blocks Infected @ setpos_exact 7660 -11343 321
  7724.  
  7725. Clip "_meticulous_funcinfclip19" blocks Infected @ setpos_exact 6359 -11309 321
  7726.  
  7727. Clip "_meticulous_funcinfclip20" blocks Infected @ setpos_exact 4998 -11810 321
  7728.  
  7729. Clip "_meticulous_funcinfclip21" blocks Infected @ setpos_exact 3060 -12382 321
  7730.  
  7731. Clip "_tunneltophill_wrongway_clip" blocks Infected @ setpos_exact 3320 -12528 658
  7732.  
  7733. LADDER: _ladder_backtrains_cloned_midmound
  7734.  
  7735. LADDER: _ladder_barnhousefront_cloned_treetrunkcliff
  7736.  
  7737. LADDER: _ladder_generatorhouse_cloned_doublerbottom
  7738.  
  7739. LADDER: _ladder_leftcliffmini_cloned_startcliff
  7740.  
  7741. LADDER: _ladder_lobsterrock_cloned_startcliff
  7742.  
  7743. LADDER: _ladder_newtankperchB_cloned_midmound
  7744.  
  7745. LADDER: _ladder_newtankperchT_cloned_midmound
  7746.  
  7747. LADDER: _ladder_peskyrooftopB_cloned_midmound
  7748.  
  7749. LADDER: _ladder_peskyrooftopT_cloned_midmound
  7750.  
  7751. LADDER: _ladder_rightquickcliff_cloned_trainshedpipe
  7752.  
  7753. LADDER: _ladder_startventshaft_cloned_treetrunkcliff
  7754.  
  7755. LADDER: _ladder_tunnelexittop1_cloned_midmound
  7756.  
  7757. LADDER: _ladder_tunnelexittop2_cloned_midmound
  7758.  
  7759. LADDER: _ladder_tunnelexittop3_cloned_midmound
  7760.  
  7761. LADDER: _ladder_tunnelexittop4_cloned_midmound
  7762.  
  7763. LADDER: _ladder_tunnelexittop5_cloned_midmound
  7764.  
  7765. Static prop "_cosmetic_starthillside_treea" W/ "models/props_foliage/cedar_large01.mdl" @ setpos_exact 3643 -9364 245
  7766.  
  7767. Static prop "_cosmetic_starthillside_treeb" W/ "models/props_foliage/cedar_large01.mdl" @ setpos_exact 1166 -12035 527
  7768.  
  7769. Static prop "_cosmetic_starthillside_treec" W/ "models/props_foliage/cedar_large01.mdl" @ setpos_exact 1048 -11800 504
  7770.  
  7771. Static prop "_cosmetic_starthillside_rock" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 3760 -10536 264
  7772.  
  7773. Static prop "_losblocker_finalfence" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 5510 -12032 444
  7774.  
  7775. Static prop "_peskyrooftop_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1882 -12238 540
  7776.  
  7777. Static prop "_peskyrooftop_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1648 -12238 540
  7778.  
  7779. Static prop "_peskyrooftop_leftside_wrongway" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 2320 -11900 520
  7780.  
  7781. Static prop "_peskyrooftop_rightside_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1116 -11423 565
  7782.  
  7783. Static prop "_peskyrooftop_rightside_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 1116 -11660 565
  7784.  
  7785. Static prop "_redbrushclip_wrongwaya1" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 5412 -12008 545
  7786.  
  7787. Static prop "_redbrushclip_wrongwaya2" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 5412 -12008 545
  7788.  
  7789. Static prop "_redbrushclip_wrongwayb1" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 5412 -12295 455
  7790.  
  7791. Static prop "_redbrushclip_wrongwayb2" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 5412 -12295 455
  7792.  
  7793. Static prop "_tunneltopcliff_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3330 -12400 825
  7794.  
  7795. Static prop "_tunneltopcliff_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3330 -12590 730
  7796.  
  7797. Static prop "_tunneltopcliff_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3390 -12400 820
  7798.  
  7799. Static prop "_tunneltopcliff_wrongwayd" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 3390 -12590 730
  7800.  
  7801. Coop:
  7802.  
  7803. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 7136 -11876 394
  7804.  
  7805. Survival:
  7806.  
  7807. Clip "_booster_sandtower" blocks Survivors @ setpos_exact 4911 -13119 568
  7808.  
  7809. Clip "_missing_tree_1" blocks Survivors @ setpos_exact 2678 -13830 418
  7810.  
  7811. Clip "_missing_tree_2" blocks Survivors @ setpos_exact 3066 -14082 418
  7812.  
  7813. Clip "_missing_tree_3" blocks Survivors @ setpos_exact 4214 -12710 418
  7814.  
  7815. Clip "_missing_tree_4" blocks Survivors @ setpos_exact 3730 -14198 418
  7816.  
  7817. ------------------------------------------------------------------------------------------------------------------------
  7818.  
  7819. BLOOD HARVEST - THE TRAIN STATION || c12m4_barn
  7820.  
  7821. All:
  7822.  
  7823. Clip "_shortcut_warehouse" blocks Survivors @ setpos_exact 10272 -7848 152
  7824.  
  7825. Clip "_commonhop_traintruss" blocks Survivors @ setpos_exact 10879 -7463 116
  7826.  
  7827. Clip "_dispcrouch_traintracka" blocks Everyone @ setpos_exact 10250 -10145 -78
  7828.  
  7829. Clip "_dispcrouch_traintrackb" blocks Everyone @ setpos_exact 10120 -10600 -78
  7830.  
  7831. Clip "_curvejump_bridgeend" blocks Survivors @ setpos_exact 10230 -486 154
  7832.  
  7833. Clip "_dispcrouch_trainwall_one" blocks Everyone @ setpos_exact 10203 -6505 -58
  7834.  
  7835. Clip "_dispcrouch_trainwall_two" blocks Everyone @ setpos_exact 10177 -6376 -58
  7836.  
  7837. Clip "_dispcrouch_trainwall_three" blocks Everyone @ setpos_exact 9813 -4120 0
  7838.  
  7839. Clip "_permstuck_clifftree" blocks Everyone @ setpos_exact 10193 -6483 137
  7840.  
  7841. Clip "_permstuck_theonetheonly" blocks Everyone @ setpos_exact 11327 -8674 -64
  7842.  
  7843. Clip "_cliprework_pullcharge" blocks Survivors @ setpos_exact 9272 -11114 646
  7844.  
  7845. Clip "_permstuck_forgottena" blocks Everyone @ setpos_exact 9477 -11134 602
  7846.  
  7847. Clip "_permstuck_forgottenb" blocks Everyone @ setpos_exact 9268 -10468 565
  7848.  
  7849. Clip "_permstuck_forgottenc" blocks Everyone @ setpos_exact 9236 -9823 415
  7850.  
  7851. Clip "_permstuck_forgottend" blocks Everyone @ setpos_exact 10118 -9681 527
  7852.  
  7853. Clip "_permstuck_forgottene" blocks Everyone @ setpos_exact 9742 -9561 499
  7854.  
  7855. Clip "_permstuck_forgottenf" blocks Everyone @ setpos_exact 9740 -9194 435
  7856.  
  7857. Clip "_permstuck_forgotteng" blocks Everyone @ setpos_exact 10077 -9388 447
  7858.  
  7859. Clip "_permstuck_forgottenh" blocks Everyone @ setpos_exact 10103 -8810 320
  7860.  
  7861. Clip "_permstuck_thanksagain" blocks Everyone @ setpos_exact 11403 -4579 -402
  7862.  
  7863. Clip "_event_window" blocks Infected + AI @ setpos_exact 10876 -4166 88
  7864.  
  7865. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 10454 -1032 -64
  7866.  
  7867. Static prop "_solidify_survivorchimney" W/ "models/props/cs_militia/fireplacechimney01.mdl" @ setpos_exact 10862.2 -6085.53 120.492
  7868.  
  7869. PvP:
  7870.  
  7871. Clip "_commonhop_roadsidefence" blocks Survivors @ setpos_exact 10647 -7547 84
  7872.  
  7873. Clip "_clipextend_traintruss" blocks Survivors @ setpos_exact 10444 -7516 232
  7874.  
  7875. TRIG: New trigger will enforce onslaught even if fence is jumped.
  7876.  
  7877. Clip "_eventskip_commonhopa" blocks Survivors @ setpos_exact 10548 -4639 66
  7878.  
  7879. Clip "_eventskip_commonhopb" blocks Survivors @ setpos_exact 10125 -4780 113
  7880.  
  7881. Brush "_losfix_semia" created @ setpos_exact 11440 -7078 -56
  7882.  
  7883. Brush "_losfix_semib" created @ setpos_exact 11440 -7048 -56
  7884.  
  7885. Clip "_ladder_barnhousedoor_clip" blocks Everyone @ setpos_exact 8994 -9312 471
  7886.  
  7887. Clip "_ladder_finalrooftop_permstuck" blocks Everyone @ setpos_exact 10827 -4563 -62
  7888.  
  7889. Clip "_ladder_siloleft_clip1" blocks Infected @ setpos_exact 8556 -7849 1035
  7890.  
  7891. Clip "_ladder_siloleft_clip2" blocks Infected @ setpos_exact 8541 -7849 1052
  7892.  
  7893. Clip "_ladder_siloright_clip1" blocks Infected @ setpos_exact 8909 -7849 1035
  7894.  
  7895. Clip "_ladder_siloright_clip2" blocks Infected @ setpos_exact 8894 -7849 1052
  7896.  
  7897. Clip "_ladder_siloshared_clip" blocks Infected @ setpos_exact 8608 -7937 1001
  7898.  
  7899. Clip "_ladder_upperplanks_clipleft" blocks Everyone @ setpos_exact 10743 -9075 -11
  7900.  
  7901. Clip "_ladder_upperplanks_clipright" blocks Everyone @ setpos_exact 10678 -9067 -11
  7902.  
  7903. LADDER: _ladder_atlanticdiesel_cloned_trussfenceback
  7904.  
  7905. LADDER: _ladder_atlanticroofback_cloned_atlanticpipe
  7906.  
  7907. LADDER: _ladder_atlanticroofleftB_cloned_bridgetower
  7908.  
  7909. LADDER: _ladder_atlanticroofleftT_cloned_bridgetower
  7910.  
  7911. LADDER: _ladder_barnhousedoor_cloned_atlanticpipe
  7912.  
  7913. LADDER: _ladder_crashedback_cloned_trussfencefront
  7914.  
  7915. LADDER: _ladder_crashedfront_cloned_trussfenceback
  7916.  
  7917. LADDER: _ladder_elevatedhome_cloned_trussfencefront
  7918.  
  7919. LADDER: _ladder_finalrooftopB_cloned_bridgetower
  7920.  
  7921. LADDER: _ladder_finalrooftopT_cloned_bridgetower
  7922.  
  7923. LADDER: _ladder_rocklobboxcar_cloned_trussfencefront
  7924.  
  7925. LADDER: _ladder_shortfenceL_cloned_trussfencefront
  7926.  
  7927. LADDER: _ladder_shortfenceR_cloned_backbarnshortfence
  7928.  
  7929. LADDER: _ladder_siloleft_cloned_atlanticpipe
  7930.  
  7931. LADDER: _ladder_siloleft_cloned_atlanticpipe
  7932.  
  7933. LADDER: _ladder_siloright_cloned_atlanticpipe
  7934.  
  7935. LADDER: _ladder_siloright_cloned_atlanticpipe
  7936.  
  7937. LADDER: _ladder_upperplanks_cloned_bridgetower
  7938.  
  7939. LADDER: _ladder_wreckedboxcar_cloned_trussfencefront
  7940.  
  7941. Static prop "_ladder_atlanticroofback_pipe" W/ "models/props_mill/PipeSet08d_256_001a.mdl" @ setpos_exact 11590 -8002 77
  7942.  
  7943. Static prop "_ladder_atlanticroofleft_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact 10632 -7672 168
  7944.  
  7945. Static prop "_ladder_finalrooftop_pipe" W/ "models/props_mill/PipeSet08d_256_001a.mdl" @ setpos_exact 10842 -4603 84
  7946.  
  7947. Static prop "_solidify_finalchimney1" W/ "models/props/cs_militia/fireplacechimney01.mdl" @ setpos_exact 11020 -4586 329
  7948.  
  7949. Static prop "_solidify_finalchimney2" W/ "models/props/cs_militia/fireplacechimney01.mdl" @ setpos_exact 11020 -4073 329
  7950.  
  7951. Coop:
  7952.  
  7953. TRIG_UNDO: Delete anv_maptrigs.nut blockers which prevent train car commonhop skip for Coop-only.
  7954.  
  7955. TRIG: New trigger will enforce onslaught even if fence is jumped.
  7956.  
  7957. Clip "_eventskip_commonhopa" blocks Survivors @ setpos_exact 10548 -4639 66
  7958.  
  7959. Clip "_eventskip_commonhopb" blocks Survivors @ setpos_exact 10125 -4780 113
  7960.  
  7961. ------------------------------------------------------------------------------------------------------------------------
  7962.  
  7963. BLOOD HARVEST - FARMHOUSE FINALE || c12m5_cornfield
  7964.  
  7965. All:
  7966.  
  7967. Clip "_dispcrouch_spawn_right" blocks Everyone @ setpos_exact 11102 150 -115
  7968.  
  7969. Clip "_dispcrouch_spawn_left" blocks Everyone @ setpos_exact 10210 1423 -29
  7970.  
  7971. Clip "_permstuck_tree_a" blocks Everyone @ setpos_exact 10675 528 -7
  7972.  
  7973. Clip "_permstuck_tree_b" blocks Everyone @ setpos_exact 10794 1843 -27
  7974.  
  7975. Clip "_permstuck_tree_c" blocks Everyone @ setpos_exact 10456 3463 4
  7976.  
  7977. Clip "_permstuck_tree_d" blocks Everyone @ setpos_exact 11064 4373 -10
  7978.  
  7979. Clip "_permstuck_tree_e" blocks Everyone @ setpos_exact 7710 1651 270
  7980.  
  7981. Clip "_permstuck_tree_f" blocks Everyone @ setpos_exact 6852 -750 252
  7982.  
  7983. Clip "_permstuck_tree_g" blocks Everyone @ setpos_exact 6448 3092 260
  7984.  
  7985. Clip "_permstuck_tree_h" blocks Everyone @ setpos_exact 5624 3236 260
  7986.  
  7987. Clip "_clip_anomaly" blocks Survivors @ setpos_exact 5504 3304 1136
  7988.  
  7989. Clip "_wrongway_clipa" blocks Everyone @ setpos_exact 6044 3997 196
  7990.  
  7991. Clip "_wrongway_clipb" blocks Everyone @ setpos_exact 6706 4072 196
  7992.  
  7993. Clip "_booster_barnroof" blocks Survivors @ setpos_exact 6986 -154 548
  7994.  
  7995. Clip "_booster_haybarn" blocks Survivors @ setpos_exact 8459 424 539.5
  7996.  
  7997. Clip "_booster_estateroof" blocks Survivors @ setpos_exact 6837 1124 598
  7998.  
  7999. Clip "_booster_dualsilos" blocks Survivors @ setpos_exact 7362 2650 861
  8000.  
  8001. Clip "_clip_anomaly_ugh" blocks Survivors @ setpos_exact 6216 3331 1101
  8002.  
  8003. Clip "_undermap_exploit" blocks Survivors @ setpos_exact 4473 3860 451
  8004.  
  8005. Clip "_cooponly_idle_warp" blocks Survivors @ setpos_exact 8849 3493 760
  8006.  
  8007. Clip "_nav_and_stuckwarp" blocks Everyone @ setpos_exact 6485 1090 308
  8008.  
  8009. LOGIC: Point-of-no-return clip will be Enabled when finale is started.
  8010.  
  8011. Clip "_point_of_no_return" blocks Survivors initially disabled @ setpos_exact 9017 3511 202
  8012.  
  8013. PvP:
  8014.  
  8015. Deleted func_playerinfected_clip @ setpos_exact 8191 -161.002 -97.0133
  8016.  
  8017. Deleted func_playerinfected_clip @ setpos_exact 7320 1220 568.063
  8018.  
  8019. Brush "_losfix_gen" created @ setpos_exact 7027 793 207
  8020.  
  8021. Brush "_losfix_tractor" created @ setpos_exact 8713 1804 212
  8022.  
  8023. Clip "_fence_collision" blocks Infected @ setpos_exact 8520 3627 579
  8024.  
  8025. Clip "_fence_stuckspot" blocks Infected @ setpos_exact 8624 3811 579
  8026.  
  8027. Clip "_meticulous_funcinfclip01" blocks Infected @ setpos_exact 9765 3742 651
  8028.  
  8029. Clip "_meticulous_funcinfclip02" blocks Infected @ setpos_exact 7745 4147 651
  8030.  
  8031. Clip "_meticulous_funcinfclip03" blocks Infected @ setpos_exact 7745 4147 651
  8032.  
  8033. Clip "_meticulous_funcinfclip04" blocks Infected @ setpos_exact 6554 4147 651
  8034.  
  8035. Clip "_meticulous_funcinfclip05" blocks Infected @ setpos_exact 6554 4147 651
  8036.  
  8037. Clip "_meticulous_funcinfclip06" blocks Infected @ setpos_exact 6554 4147 651
  8038.  
  8039. Clip "_meticulous_funcinfclip07" blocks Infected @ setpos_exact 9329 4402 651
  8040.  
  8041. Clip "_meticulous_funcinfclip08" blocks Infected @ setpos_exact 9329 4402 651
  8042.  
  8043. Clip "_meticulous_funcinfclip09" blocks Infected @ setpos_exact 8936 4147 651
  8044.  
  8045. Clip "_meticulous_funcinfclip10" blocks Infected @ setpos_exact 8936 4147 651
  8046.  
  8047. Clip "_meticulous_funcinfclip11" blocks Infected @ setpos_exact 11776 2527 1074
  8048.  
  8049. Clip "_ladder_barnhouseback_clipleft" blocks Everyone @ setpos_exact 6963 -574 200
  8050.  
  8051. Clip "_ladder_barnhouseback_clipright" blocks Everyone @ setpos_exact 7024 -574 200
  8052.  
  8053. Clip "_ladder_onewaydrop_collision" blocks Infected @ setpos_exact 9200 3714 393
  8054.  
  8055. Clip "_ladder_onewayfence_qolclip" blocks Infected @ setpos_exact 9018 4530 399
  8056.  
  8057. Clip "_ladder_siloleft_clip1" blocks Infected @ setpos_exact 7309 2735 970
  8058.  
  8059. Clip "_ladder_siloleft_clip2" blocks Infected @ setpos_exact 7294 2735 984
  8060.  
  8061. Clip "_ladder_siloright_clip1" blocks Infected @ setpos_exact 7662 2735 970
  8062.  
  8063. Clip "_ladder_siloright_clip2" blocks Infected @ setpos_exact 7647 2735 984
  8064.  
  8065. Clip "_ladder_siloshared_clip" blocks Infected @ setpos_exact 7361 2647 933
  8066.  
  8067. Clip "_meticulous_permstuck" blocks Infected @ setpos_exact 8470 4808 663
  8068.  
  8069. Clip "_onewaydrophill_clip" blocks Infected @ setpos_exact 9613 3664 584
  8070.  
  8071. Clip "_pouncersonly_clip" blocks Infected @ setpos_exact 11382 4549 270
  8072.  
  8073. Clip "_wrongway_clipa" blocks Everyone @ setpos_exact 6044 3997 196
  8074.  
  8075. Clip "_wrongway_clipb" blocks Everyone @ setpos_exact 6706 4072 196
  8076.  
  8077. LADDER: _ladder_barnhouseback_cloned_haybalebarn
  8078.  
  8079. LADDER: _ladder_barnhouseicing_cloned_barnhousefront
  8080.  
  8081. LADDER: _ladder_barricadeback_cloned_oneway
  8082.  
  8083. LADDER: _ladder_barricadefront_cloned_oneway
  8084.  
  8085. LADDER: _ladder_boxcardeadend_cloned_housegenerator
  8086.  
  8087. LADDER: _ladder_boxcarstartline_cloned_housegenerator
  8088.  
  8089. LADDER: _ladder_onewaydrop_cloned_hayhaildiesel
  8090.  
  8091. LADDER: _ladder_onewayfence_cloned_housegenerator
  8092.  
  8093. LADDER: _ladder_permstuck_cloned_toolshed
  8094.  
  8095. LADDER: _ladder_siloleft_cloned_haybalebarn
  8096.  
  8097. LADDER: _ladder_siloleft_cloned_haybalebarn
  8098.  
  8099. LADDER: _ladder_siloright_cloned_haybalebarn
  8100.  
  8101. LADDER: _ladder_siloright_cloned_haybalebarn
  8102.  
  8103. LADDER: _ladder_tallchimneybot_cloned_haybalebarn
  8104.  
  8105. LADDER: _ladder_tallchimneytop_cloned_haybalebarn
  8106.  
  8107. Navblocker "_losblocker_rockleft_navblock" blocks Everyone w/ Apply @ setpos_exact 10335 1520 -64
  8108.  
  8109. Static prop "_cosmetic_barric_cliffside" W/ "models/props_wasteland/rock_cliff01.mdl" @ setpos_exact 4646 4080 602
  8110.  
  8111. Static prop "_cosmetic_hillside_rocka" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 8760 4766 571
  8112.  
  8113. Static prop "_cosmetic_hillside_rockb" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 8878 4781 566
  8114.  
  8115. Static prop "_cosmetic_hillside_rockc" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 9000 4800 571
  8116.  
  8117. Static prop "_cosmetic_hillside_tree" W/ "models/props_foliage/cedar_medium01.mdl" @ setpos_exact 9299 4928 536
  8118.  
  8119. Static prop "_losblocker_barric_cliffside" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 4879 2680 460
  8120.  
  8121. Static prop "_losblocker_hillside_rock" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 9200 4792 550
  8122.  
  8123. Static prop "_losblocker_rockleft" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 10344 1529.7 -14
  8124.  
  8125. Static prop "_losblocker_freeatlasta" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 7026 3507 421
  8126.  
  8127. Static prop "_losblocker_freeatlastb" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 6900 3507 410
  8128.  
  8129. Static prop "_losblocker_hardlyimpossible" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 6344 3782 270
  8130.  
  8131. Static prop "_losblocker_treefloater" W/ "models/props_wasteland/rock_moss04.mdl" @ setpos_exact 5732 3800 227
  8132.  
  8133. Static prop "_pouncersonly_wrongwaya" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 11153 4780 259
  8134.  
  8135. Static prop "_pouncersonly_wrongwayb" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 11153 4630 259
  8136.  
  8137. Static prop "_pouncersonly_wrongwayc" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact 11361 4164 310
  8138.  
  8139. Static prop "_solidify_treesripbro" W/ "models/props_foliage/trees_cluster02.mdl" @ setpos_exact 5777.93 3757.84 265.545
  8140.  
  8141. Static prop "_wrongway_propa" W/ "models/props_placeable/wrong_way.mdl" @ setpos_exact 4930 3935 540
  8142.  
  8143. Static prop "_wrongway_propb" W/ "models/props_placeable/wrong_way.mdl" @ setpos_exact 5980 3935 280
  8144.  
  8145. Static prop "_wrongway_propc" W/ "models/props_placeable/wrong_way.mdl" @ setpos_exact 6750 4020 465
  8146.  
  8147. KILL: Replaced "fenceSmash_clip_brush" with Survivor-only version.
  8148.  
  8149. LOGIC: Barricade ladders will be deleted 17 seconds into "relay_outro_start".
  8150.  
  8151. EASTER_EGG: Chair deleted, replaced with bumper car, SetModel to chair, clipped, parented and OnHitByTank I/O'd.
  8152.  
  8153. Deleted ([333] prop_physics) @ setpos_exact 6929.47 1058.91 238.375
  8154.  
  8155. Physics prop "_replacement_chair" W/ "models/props_fairgrounds/bumpercar.mdl" & mass 1.3 @ setpos_exact 6929.47 1058.91 238.375
  8156.  
  8157. Clip "_replacement_chair_clip" blocks Everyone @ setpos_exact 6922 1059 238
  8158.  
  8159. ------------------------------------------------------------------------------------------------------------------------
  8160. ------------------------------------------------------------------------------------------------------------------------
  8161.  
  8162. COLD STREAM - ALPINE CREEK || c13m1_alpinecreek
  8163.  
  8164. All:
  8165.  
  8166. Clip "_dispcrouch_watchtower" blocks Everyone @ setpos_exact -3025 2861 186
  8167.  
  8168. Clip "_sneaky_hunter" blocks Infected @ setpos_exact -1169 1555 482
  8169.  
  8170. Clip "_permstuck_cornercabin" blocks Everyone @ setpos_exact 1465 3478 540
  8171.  
  8172. Clip "_dispcrouch_spawn" blocks Everyone @ setpos_exact -3244 54 151
  8173.  
  8174. PvP:
  8175.  
  8176. LADDER: _ladder_crossoverbackB_cloned_mrlogsuperwide
  8177.  
  8178. LADDER: _ladder_crossoverbackT_cloned_mrlogsuperwide
  8179.  
  8180. LADDER: _ladder_crossoverfrontB_cloned_mrlogsuperwide
  8181.  
  8182. LADDER: _ladder_crossoverfrontT_cloned_mrlogsuperwide
  8183.  
  8184. LADDER: _ladder_crossoverupway_cloned_bunkerdoor
  8185.  
  8186. ------------------------------------------------------------------------------------------------------------------------
  8187.  
  8188. COLD STREAM - SOUTH PINE STREAM || c13m2_southpinestream
  8189.  
  8190. All:
  8191.  
  8192. Clip "_idkground" blocks Everyone @ setpos_exact 5345 1744 290
  8193.  
  8194. Clip "_dispcrouch_upandaway" blocks Everyone @ setpos_exact 5924 1261 485
  8195.  
  8196. Clip "_permstuck_chopperrocks" blocks Everyone @ setpos_exact 2150 1224 195
  8197.  
  8198. Clip "_permstuck_longhedge_a" blocks Everyone @ setpos_exact 2003 2644 480
  8199.  
  8200. Clip "_permstuck_longhedge_b" blocks Everyone @ setpos_exact 1226 3072 420
  8201.  
  8202. Clip "_permstuck_longhedge_c" blocks Everyone @ setpos_exact 1100 3444 506
  8203.  
  8204. Clip "_permstuck_longhedge_d" blocks Everyone @ setpos_exact 1072 3879 464
  8205.  
  8206. Clip "_permstuck_longhedge_e" blocks Everyone @ setpos_exact 1100 4480 324
  8207.  
  8208. Clip "_permstuck_tree_a" blocks Everyone @ setpos_exact 6747 2745 762
  8209.  
  8210. Clip "_permstuck_tree_b" blocks Everyone @ setpos_exact 1573 1991 441
  8211.  
  8212. Clip "_permstuck_tree_c" blocks Everyone @ setpos_exact 147 3367 301
  8213.  
  8214. Clip "_permstuck_tree_d" blocks Everyone @ setpos_exact 392 4679 277
  8215.  
  8216. Clip "_permstuck_tree_e" blocks Everyone @ setpos_exact -1459 4319 330
  8217.  
  8218. Clip "_permstuck_tree_f" blocks Everyone @ setpos_exact 723 6019 375
  8219.  
  8220. Clip "_surfsup" blocks Survivors @ setpos_exact -1485 5630 404
  8221.  
  8222. Clip "_dispcrouch_barrelstent" blocks Everyone @ setpos_exact 979 5656 272
  8223.  
  8224. Clip "_permstuck_tree_g" blocks Everyone @ setpos_exact 908 6871 697
  8225.  
  8226. Clip "_permstuck_tree_h" blocks Everyone @ setpos_exact 984 6655 798
  8227.  
  8228. Clip "_permstuck_tree_i" blocks Everyone @ setpos_exact 1151 6258 932
  8229.  
  8230. Clip "_permstuck_tree_j" blocks Everyone @ setpos_exact 1153 5929 981
  8231.  
  8232. Clip "_stuckwarp_yellowbarrels" blocks Everyone @ setpos_exact 4861 2732 608
  8233.  
  8234. Safe room Commons SPAWN_IN_FRONT_OF_SURVIVORS fix created @ setpos_exact 78 8574 -405
  8235.  
  8236. PvP:
  8237.  
  8238. Clip "_shortcut_easybigskip1" blocks Survivors @ setpos_exact 506 4983 253
  8239.  
  8240. Clip "_shortcut_easybigskip2" blocks Survivors @ setpos_exact 503 4713 253
  8241.  
  8242. Clip "_shortcut_easybigskip3" blocks Survivors @ setpos_exact 483 4553 253
  8243.  
  8244. Brush "_losfix_gastruck1" created @ setpos_exact 4992 2301 617
  8245.  
  8246. Brush "_losfix_gastruck2" created @ setpos_exact 4082 2256 524
  8247.  
  8248. LADDER: _ladder_eventphysfence_cloned_endfencefront
  8249.  
  8250. LADDER: _ladder_posttanksecret_cloned_cliffstraightwide
  8251.  
  8252. LADDER: _ladder_pretankleft_cloned_cliffstraightwide
  8253.  
  8254. LADDER: _ladder_pretankright_cloned_cliffstraightwide
  8255.  
  8256. ------------------------------------------------------------------------------------------------------------------------
  8257.  
  8258. COLD STREAM - MEMORIAL BRIDGE || c13m3_memorialbridge
  8259.  
  8260. All:
  8261.  
  8262. Clip "_permstuck_treea" blocks Everyone @ setpos_exact -3603 -6160 897
  8263.  
  8264. Clip "_permstuck_treeb" blocks Everyone @ setpos_exact -3343 -5975 854
  8265.  
  8266. Clip "_permstuck_treed" blocks Everyone @ setpos_exact -3310 -3600 405
  8267.  
  8268. Clip "_permstuck_treec" blocks Everyone @ setpos_exact -3305 -4815 442
  8269.  
  8270. Clip "_permstuck_jaynjer" blocks Everyone @ setpos_exact -4495 -4584 719
  8271.  
  8272. Clip "_hangcancel_perimeter" blocks Survivors @ setpos_exact 13 -3620 896
  8273.  
  8274. Clip "_sneaky_hunter" blocks Infected @ setpos_exact 5666 -5383 272
  8275.  
  8276. Clip "_permstuck_shrubtreea" blocks Everyone @ setpos_exact -5080 -5712 970
  8277.  
  8278. Clip "_permstuck_shrubtreeb" blocks Everyone @ setpos_exact -5034 -5307 970
  8279.  
  8280. Clip "_permstuck_shrubtreec" blocks Everyone @ setpos_exact -4964 -4637 949
  8281.  
  8282. Clip "_cliprework_shrubwalla" blocks Survivors @ setpos_exact -4360 -6081 815
  8283.  
  8284. Clip "_cliprework_shrubwallb" blocks Survivors @ setpos_exact -4540 -5175 815
  8285.  
  8286. Clip "_cliprework_shrubwallc" blocks Survivors @ setpos_exact -4540 -4507 815
  8287.  
  8288. Clip "_cliprework_shrubwalld" blocks Survivors @ setpos_exact -4498 -4375 815
  8289.  
  8290. Clip "_cliprework_shrubwalle" blocks Survivors @ setpos_exact -4093 -3646 815
  8291.  
  8292. Clip "_clipextend_bridgeleft1" blocks Survivors @ setpos_exact -2128 -3706 1538
  8293.  
  8294. Clip "_clipextend_bridgeleft2" blocks Survivors @ setpos_exact 380 -3706 1538
  8295.  
  8296. Clip "_clipextend_bridgeright1" blocks Survivors @ setpos_exact -2128 -4480 1538
  8297.  
  8298. Clip "_clipextend_bridgeright2" blocks Survivors @ setpos_exact -1334 -4480 1538
  8299.  
  8300. Clip "_clipextend_bridgeright3" blocks Survivors @ setpos_exact -600 -4480 1538
  8301.  
  8302. Clip "_cliprework_enddumpsters" blocks Survivors @ setpos_exact 5964 -3954 494
  8303.  
  8304. Clip "_bridge_collision" blocks All and Physics @ setpos_exact 1004 -4091 586
  8305.  
  8306. LOGIC: Anti-shortcut tanker clip will be deleted upon its destruction.
  8307.  
  8308. Clip "_shortcut_tanker" blocks Survivors @ setpos_exact 1092 -3999 1328
  8309.  
  8310. PvP:
  8311.  
  8312. TRIG: Anti-shortcut "_watercushion_trigonce" deletes trighurt at stair descent.
  8313.  
  8314. Insta-kill "_watercushion_trighurt" Survivor @ setpos_exact 2441 -4194 270
  8315.  
  8316. Brush "_losfix_bus" created @ setpos_exact 1782 -4004 1335
  8317.  
  8318. Brush "_losfix_gastruck" created @ setpos_exact -2933 -3970 1340
  8319.  
  8320. LADDER: _ladder_endbrick_cloned_shortbase
  8321.  
  8322. LADDER: _ladder_shrubwall1_cloned_shortbase
  8323.  
  8324. LADDER: _ladder_shrubwall2_cloned_shortbase
  8325.  
  8326. LADDER: _ladder_sosemerge_cloned_shortbase
  8327.  
  8328. LADDER: _ladder_supertallstart_cloned_samespot
  8329.  
  8330. Static prop "_losblocker_acvent" W/ "models/props_rooftop/acvent04.mdl" @ setpos_exact 6027 -6087 542
  8331.  
  8332. Static prop "_propladder_bricka" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5797.57 -6183.4 412.857
  8333.  
  8334. Static prop "_propladder_brickb" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5733 -6184 412.857
  8335.  
  8336. Static prop "_propladder_brickc" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5797.48 -6183.82 476.857
  8337.  
  8338. Static prop "_propladder_brickd" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5796.57 -6248.4 445.857
  8339.  
  8340. Static prop "_propladder_bricke" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5797.48 -6248.82 412.857
  8341.  
  8342. Static prop "_propladder_brickf" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5732.91 -6249.42 412.857
  8343.  
  8344. Static prop "_propladder_brickg" W/ "models/props_industrial/brickpallets.mdl" @ setpos_exact 5754 -6439 396.857
  8345.  
  8346. Ladder found @ "-410.09 -4121.79 1386" and shifted w/ offset @ "15 15 10"
  8347.  
  8348. Coop:
  8349.  
  8350. Ladder found @ "-410.09 -4121.79 1386" and shifted w/ offset @ "15 15 10"
  8351.  
  8352. TRIG: Anti-shortcut "_watercushion_trigonce" deletes trighurt at stair descent.
  8353.  
  8354. Insta-kill "_watercushion_trighurt" Survivor @ setpos_exact 2441 -4194 270
  8355.  
  8356. ------------------------------------------------------------------------------------------------------------------------
  8357.  
  8358. COLD STREAM - CUT-THROAT CREEK || c13m4_cutthroatcreek
  8359.  
  8360. All:
  8361.  
  8362. Clip "_permstuck_treetunnel" blocks Everyone @ setpos_exact -492.1 -186.3 -385
  8363.  
  8364. Clip "_dispcrouch_toomany" blocks Everyone @ setpos_exact -3028 -6154 413
  8365.  
  8366. Clip "_eventskip_rooftop" blocks Survivors @ setpos_exact -3891 -8135 723
  8367.  
  8368. Clip "_eventskip_fence1" blocks Survivors @ setpos_exact -4268 -8520 504
  8369.  
  8370. Clip "_eventskip_fence2" blocks Survivors @ setpos_exact -3409 -7764 500
  8371.  
  8372. Clip "_cliprework_startbooster" blocks Survivors @ setpos_exact -4930 -5987 1188
  8373.  
  8374. Clip "_cliprework_endbooster" blocks Survivors @ setpos_exact -1175 1405 57
  8375.  
  8376. Clip "_dispcrouch_onewaydrop" blocks Everyone @ setpos_exact -3893 -5852 -128
  8377.  
  8378. Clip "_cliprework_dispcrouch00" blocks Infected + AI @ setpos_exact -4030 -5257 132
  8379.  
  8380. Clip "_cliprework_dispcrouch01" blocks Survivors @ setpos_exact -4030 -5357 -32
  8381.  
  8382. Clip "_cliprework_dispcrouch02" blocks Survivors @ setpos_exact -4020 -4815 -32
  8383.  
  8384. Clip "_cliprework_dispcrouch03" blocks Survivors @ setpos_exact -4180 -1920 -32
  8385.  
  8386. Clip "_cliprework_dispcrouch04" blocks Survivors @ setpos_exact -3971 -1527 -32
  8387.  
  8388. Clip "_cliprework_dispcrouch05" blocks Survivors @ setpos_exact -3551 -1552 -32
  8389.  
  8390. Clip "_cliprework_dispcrouch06" blocks Survivors @ setpos_exact -3126 -1398 -32
  8391.  
  8392. Clip "_cliprework_dispcrouch07" blocks Survivors @ setpos_exact -2619 -1469 -31
  8393.  
  8394. Clip "_cliprework_dispcrouch08" blocks Infected @ setpos_exact -2314 -2346 130
  8395.  
  8396. Clip "_cliprework_dispcrouch09" blocks Infected @ setpos_exact -2172 -2422 130
  8397.  
  8398. Clip "_cliprework_dispcrouch10" blocks Infected @ setpos_exact -1839 -2492 130
  8399.  
  8400. Clip "_cliprework_dispcrouch11" blocks Infected @ setpos_exact -1238 -2465 130
  8401.  
  8402. Clip "_cliprework_dispcrouch12" blocks Infected @ setpos_exact 415 -921 77
  8403.  
  8404. Clip "_dispcrouch_waterfall" blocks Everyone @ setpos_exact -2184 -1700 -288
  8405.  
  8406. Clip "_permstuck_umheymatt" blocks Everyone @ setpos_exact 13 5280 -117
  8407.  
  8408. PvP:
  8409.  
  8410. Clip "_commonhop_endshortcut" blocks Survivors @ setpos_exact -693 4555 35
  8411.  
  8412. Deleted ([431] prop_physics) @ setpos_exact -521.5 -1260.25 -399.531
  8413.  
  8414. Clip "_ladder_startstreamL_clip" blocks Infected @ setpos_exact -4028 -5137 345
  8415.  
  8416. Clip "_ladder_littlecliff_qola" blocks Infected @ setpos_exact -3685 -1397 312
  8417.  
  8418. Clip "_ladder_littlecliff_qolb" blocks Infected @ setpos_exact -3706 -1352 366
  8419.  
  8420. Brush "_losfix_gen1" created @ setpos_exact -821 5675.32 -110
  8421.  
  8422. Brush "_losfix_gen2" created @ setpos_exact -838 4598 -110
  8423.  
  8424. LADDER: _ladder_cornerlowroofl_cloned_endbackarea
  8425.  
  8426. LADDER: _ladder_cornerlowroofr_cloned_endbackarea
  8427.  
  8428. LADDER: _ladder_enddumpsterL_cloned_endstackback
  8429.  
  8430. LADDER: _ladder_enddumpsterR_cloned_endstackback
  8431.  
  8432. LADDER: _ladder_endstackfront_cloned_endstackback
  8433.  
  8434. LADDER: _ladder_fourthstream_cloned_secondstream
  8435.  
  8436. LADDER: _ladder_littlecliff_cloned_waterfall
  8437.  
  8438. LADDER: _ladder_thirdstream_cloned_secondstream
  8439.  
  8440. LADDER: _ladder_stairsfence_cloned_backfence
  8441.  
  8442. LADDER: _ladder_startstreamL_cloned_startstreamR
  8443.  
  8444. Navblocker "_losblocker_startshrubnavblock" blocks Everyone w/ Apply @ setpos_exact -3400 -7300 360
  8445.  
  8446. Static prop "_losblocker_startshrubwall" W/ "models/props_foliage/swamp_shrubwall_block_256_deep.mdl" @ setpos_exact -3388 -7294 335
  8447.  
  8448. Static prop "_solidify_startcluster1" W/ "models/props_foliage/urban_trees_cluster01.mdl" @ setpos_exact -3130 -6492 366.443
  8449.  
  8450. Static prop "_solidify_startcluster2" W/ "models/props_foliage/urban_trees_cluster01.mdl" @ setpos_exact -3168 -5984 317.023
  8451.  
  8452. Physics prop "_hittable_replacement" W/ "models/props_foliage/tree_trunk_fallen.mdl" & mass 1.5 @ setpos_exact -714 -863 -385
  8453.  
  8454. Ladder found @ "-1 5304 -43.124" and shifted w/ offset @ "50 0 0"
  8455.  
  8456. Ladder found @ "-202.0005 -1483.2271 -224" and shifted w/ offset @ "0 0 10"
  8457.  
  8458. Ladder found @ "145 4845.5 202" and shifted w/ offset @ "-15 0 0"
  8459.  
  8460. Ladder found @ "159 4845.5 159" and shifted w/ offset @ "-15 0 0"
  8461.  
  8462. Ladder found @ "178 4845.5 109.5" and shifted w/ offset @ "-17 0 0"
  8463.  
  8464. Ladder found @ "195 4845.5 -18.624" and shifted w/ offset @ "-17 0 0"
  8465.  
  8466. ------------------------------------------------------------------------------------------------------------------------
  8467. ------------------------------------------------------------------------------------------------------------------------
  8468.  
  8469. LAST STAND - THE JUNKYARD || c14m1_junkyard
  8470.  
  8471. All:
  8472.  
  8473. CVAR: Set "director_convert_pills" to 0 to prevent excess defib conversion.
  8474.  
  8475. ------------------------------------------------------------------------------------------------------------------------
  8476.  
  8477. LAST STAND - LIGHTHOUSE FINALE || c14m2_lighthouse
  8478.  
  8479. All:
  8480.  
  8481. CVAR: Set "director_convert_pills" to 0 to prevent excess defib conversion.
  8482.  
  8483. ------------------------------------------------------------------------------------------------------------------------
  8484. ------------------------------------------------------------------------------------------------------------------------
  8485.  
  8486. DEVELOPER - c5m1_waterfront_sndscape
  8487.  
  8488. All:
  8489.  
  8490. FIX: Total of 4 out of 5 traffic cones need to be made non-solid -- yes, for memes.
  8491.  
  8492. Un-solidified prop_physics @ setpos_exact -1152.16 -1600.13 -365.063
  8493.  
  8494. Un-solidified prop_physics @ setpos_exact -3353.81 -1935.78 -379.5
  8495.  
  8496. Un-solidified prop_physics @ setpos_exact -3452.91 -1903.28 -379.531
  8497.  
  8498. Un-solidified prop_physics @ setpos_exact -3531.81 -1952.03 -379.625
  8499.  
  8500. Un-solidified prop_physics @ setpos_exact -3679.75 -1983.78 -365.031
  8501.  
  8502. Un-solidified ALL props with model: "models/props_fortifications/orange_cone001_reference.mdl"
  8503.  
  8504. hJuHajBMM3jCGuje2vmVl0TcSD3n8Uc0
  8505.  
  8506. ------------------------------------------------------------------------------------------------------------------------
  8507.  
  8508. DEVELOPER - credits
  8509.  
  8510. Nothing!
  8511.  
  8512. ------------------------------------------------------------------------------------------------------------------------
  8513.  
  8514. DEVELOPER - curling_stadium
  8515.  
  8516. Nothing!
  8517.  
  8518. ------------------------------------------------------------------------------------------------------------------------
  8519.  
  8520. DEVELOPER - tutorial_standards
  8521.  
  8522. Nothing!
  8523.  
  8524. ------------------------------------------------------------------------------------------------------------------------
  8525.  
  8526. DEVELOPER - tutorial_standards_vs
  8527.  
  8528. PvP:
  8529.  
  8530. Deleted func_playerinfected_clip @ setpos_exact -65 -417 527
  8531.  
  8532. Deleted func_playerinfected_clip @ setpos_exact -641 -865 527
  8533.  
  8534. Deleted func_playerinfected_clip @ setpos_exact -897 15 399
  8535.  
  8536. Deleted func_playerinfected_clip @ setpos_exact -881 191 399
  8537.  
  8538. LADDER: _ladder_acvent_cloned_smallest
  8539.  
  8540. Static prop "_acvent_wrongway1" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -791 15 439
  8541.  
  8542. Static prop "_acvent_wrongway2" W/ "models/props_misc/wrongway_sign01_optimized.mdl" @ setpos_exact -610 15 439
  8543.  
  8544. LADDER: _ladder_fencefront1_cloned_fenceback1
  8545.  
  8546. LADDER: _ladder_fencefront2_cloned_fenceback2
  8547.  
  8548. LADDER: _ladder_fencefront3_cloned_fenceback3
  8549.  
  8550. LADDER: _ladder_fencefront4_cloned_fenceback4
  8551.  
  8552. Clip "_permstuck_treecluster" blocks Everyone @ setpos_exact -1170 724 200
  8553.  
  8554. LADDER: _ladder_elevleft_cloned_elevright
  8555.  
  8556. Static prop "_ladder_elevleft_pipe" W/ "models/props_rooftop/Gutter_Pipe_256.mdl" @ setpos_exact -64 -465 400
  8557.  
  8558. Clip "_elevleft_clipleft" blocks Everyone @ setpos_exact -66 -441 128
  8559.  
  8560. Clip "_elevleft_clipright" blocks Everyone @ setpos_exact -66 -495 128
  8561.  
  8562. LADDER: _ladder_eventfront_cloned_eventback
  8563.  
  8564. ------------------------------------------------------------------------------------------------------------------------
  8565. ------------------------------------------------------------------------------------------------------------------------
  8566.  
  8567. Disclaimer:
  8568.  
  8569. Fixes still pending. Just because it's not fixed yet doesn't mean it won't be.
  8570.  
  8571. By popular community request any fix will be re-evaluated at any time.
  8572.  
  8573. Only 100% comprehensive for VScript fixes -- fixes made with lump files are recalled as much as possible.
  8574.  
  8575. ------------------------------------------------------------------------------------------------------------------------
  8576. ------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement