Teardown

Teardown

478 ratings
de_vertigo
5
2
5
2
3
2
2
   
Award
Favorite
Favorited
Unfavorite
Type: Content, Spawn
Category: Map, Gameplay
File Size
Posted
Updated
109.443 MB
19 Nov, 2021 @ 1:37pm
8 Dec, 2023 @ 7:23pm
16 Change Notes ( view )

Subscribe to download
de_vertigo

Description
Vertigo from Counter Strike: Global Offensive, recreated in Teardown. There is a sandbox mode as well as a custom campaign included in the map.

Credits:
-csubliminal - mapping and modeling
-The Mafia/Prop Guy - scripting, modeling, campaign
-Thomasims - lots of scripting help
-MrJaydanOz - deleteAllBelow script (sourced from https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2579654883)
-Oleg Borysov - terminal radar image
-Valve - Vertigo (and Coop Autumn) from CS:GO
-Teardown Discord - troubleshooting and support :)
-Last but not least, a special thanks to 3kliksphilip! - https://youtu.be/X5S4O7s8VH0

Check out our other CS:GO map, de_train! https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=2803318896
Report/find bugs in the pinned thread below!

Have fun, don't fall off the building, and rush B!



Note: neither I, csubliminal, nor The Mafia are affiliated with any potential re-uploads of this map or its resources within or outside of the Steam Workshop. If you use resources from this map in a published project, please give proper credit in its description. :p
Popular Discussions View All (1)
6
8 Aug, 2023 @ 11:55am
PINNED: Known Bugs
The Mafia
146 Comments
csubliminal  [author] 22 Mar @ 8:11am 
Make sure you are looking for “de_vertigo” and not just “vertigo” in the subscribed mods list. If it still doesnt show up then you could try unsubscribing and resubscribing, hope this helps
Doruk Berk6161 22 Mar @ 12:33am 
i cant find the map
Camozol 11 Jun, 2024 @ 4:07am 
correction: the shadow size is 100x100x100
Camozol 11 Jun, 2024 @ 12:00am 
also, wheres the script in the map?
Camozol 10 Jun, 2024 @ 11:14pm 
ill try and do that
Camozol 10 Jun, 2024 @ 11:14pm 
i forgor
csubliminal  [author] 10 Jun, 2024 @ 9:17pm 
Did you change it in the "height = GetFloatParam("height", "-100")" section or the "local list = QueryAabbShapes(Vec(1000, height 100,1000), Vec(-1000, height, -1000))"? With the script set with this it works on my end:

function init()
height = GetFloatParam("height", "-10")
end

function tick(dt)
local list = QueryAabbShapes(Vec(-1000, height -100,-1000), Vec(1000, height, 1000))
for i=1, #list do
xsize, ysize, zsize = GetShapeSize(list )
if xsize < 200 and ysize < 200 and zsize < 200 then
Delete(list )
end
end
end

If that still doesnt work, maybe try making the box smaller, so something closer to:
local list = QueryAabbShapes(Vec(-200, height -100,-200), Vec(200, height, 200))
for i=1, #list do
Camozol 9 Jun, 2024 @ 11:51pm 
its still not working, again ://
Camozol 9 Jun, 2024 @ 11:21pm 
ok
csubliminal  [author] 9 Jun, 2024 @ 12:16pm 
Looks like your height value was too low, try setting your height value to -10 instead.