Lower Map Barriers?

BeaStt123

Well-Known Member
Messages
1
Reaction score
0
Points
201
I've been playing a lot of Black Ops 2 Plutonium, and have decided to make my own server.
I am kind of new to gsc but have managed to setup most of my other stuff.

I was wondering how I could lower the death barrier on maps (vertigo, detour, yemen, etc) so that you could go for a better trickshot

Any help appreciated!
 

CF4_99

Veteran
Messages
145
Reaction score
57
Points
888
Code:
DeathBarriers = GetEntArray("trigger_hurt", "classname");
foreach(Barrier in DeathBarriers)
    Barrier.origin = (0,0,9999999);
That should help
 

CF4_99

Veteran
Messages
145
Reaction score
57
Points
888
you could either do it on init to do it automatically. Or, you could make it a function
 

zLight

New Member
Messages
4
Reaction score
0
Points
1
add me on discord for any plutonium t6 gsc help, #2871 (copy paste it otherwise wont work)
 
Top