Teardown

Teardown

485 vurderinger
de_vertigo
5
2
5
2
3
2
2
   
Pris
Føj til foretrukne
Gjort til foretrukken
Fjern som foretrukken
Type: Content, Spawn
Category: Map, Gameplay
Filstørrelse:
Offentliggjort:
Opdateret:
109.443 MB
19. nov. 2021 kl. 13:37
8. dec. 2023 kl. 19:23
16 ændringsbemærkninger ( vis )

Abonner for at downloade
de_vertigo

Beskrivelse
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ære diskussioner Vis alle (1)
6
8. aug. 2023 kl. 11:55
FASTGJORT: Known Bugs
The Mafia
146 kommentarer
csubliminal  [ophavsmand] 22. mar. kl. 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. kl. 0:33 
i cant find the map
Camozol 11. juni 2024 kl. 4:07 
correction: the shadow size is 100x100x100
Camozol 11. juni 2024 kl. 0:00 
also, wheres the script in the map?
Camozol 10. juni 2024 kl. 23:14 
ill try and do that
Camozol 10. juni 2024 kl. 23:14 
i forgor
csubliminal  [ophavsmand] 10. juni 2024 kl. 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. juni 2024 kl. 23:51 
its still not working, again ://
Camozol 9. juni 2024 kl. 23:21 
ok
csubliminal  [ophavsmand] 9. juni 2024 kl. 12:16 
Looks like your height value was too low, try setting your height value to -10 instead.