Teardown

Teardown

485 betyg
de_vertigo
5
2
5
2
3
2
2
   
Utmärkelse
Favorit
Favoritmarkerad
Avfavoritmarkerad
Type: Content, Spawn
Category: Map, Gameplay
Filstorlek
Lades upp
Uppdaterades
109.443 MB
19 nov, 2021 @ 13:37
8 dec, 2023 @ 19:23
16 ändringsnotiser ( visa )

Abonnera för att ladda ner
de_vertigo

Beskrivning
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://gtm.steamproxy.vip/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://gtm.steamproxy.vip/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
Populära diskussioner Visa alla (1)
6
8 aug, 2023 @ 11:55
KLISTRAD: Known Bugs
The Mafia
146 kommentarer
csubliminal  [skapare] 22 mar @ 8:11 
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 @ 0:33 
i cant find the map
Camozol 11 jun, 2024 @ 4:07 
correction: the shadow size is 100x100x100
Camozol 11 jun, 2024 @ 0:00 
also, wheres the script in the map?
Camozol 10 jun, 2024 @ 23:14 
ill try and do that
Camozol 10 jun, 2024 @ 23:14 
i forgor
csubliminal  [skapare] 10 jun, 2024 @ 21:17 
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 @ 23:51 
its still not working, again ://
Camozol 9 jun, 2024 @ 23:21 
ok
csubliminal  [skapare] 9 jun, 2024 @ 12:16 
Looks like your height value was too low, try setting your height value to -10 instead.