Climbing methods.

MrAlBobo

L13: Stunning Member
Feb 20, 2008
1,059
219
So...the map im working on involves going up quite frequently, and im getting kinda tired of stairs. So...I need some new methods and how to do them.
The 1st thing I want to do is have something that acts like a jet of air and launches the person straight into the air. I tried trigger push but failed at that.
The 2nd thing I want is to make a rising platform that starts on the down position and rises either on a button push or when someone steps on it.

but yeah...I have absolutely no idea to do either
 

Pseudo

L6: Sharp Member
Jan 26, 2008
319
150
The 1st thing I want to do is have something that acts like a jet of air and launches the person straight into the air. I tried trigger push but failed at that.
Try trigger_push again, that's what people use to get effects similar to what you're describing. Check the trigger_push's flags and make sure that "applies to clients" is checked. The trigger should be at least as tall as the height you want the player to be launched. Players will not launch in the air unless they jump on the trigger. You can use a point_clientcommand to make a player send the "+jump" command OnStartTouch.

The 2nd thing I want is to make a rising platform that starts on the down position and rises either on a button push or when someone steps on it.
There are several ways to do this, see this tutorial.
 

Foreverkul

L4: Comfortable Member
Apr 12, 2008
157
14
Try trigger_push again, that's what people use to get effects similar to what you're describing. Check the trigger_push's flags and make sure that "applies to clients" is checked. The trigger should be at least as tall as the height you want the player to be launched. Players will not launch in the air unless they jump on the trigger. You can use a point_clientcommand to make a player send the "+jump" command OnStartTouch.

What I did is use "Only once" flag and then made it respawn (with an entity maker).
 

MrAlBobo

L13: Stunning Member
Feb 20, 2008
1,059
219
eh...i dont usually miss tutorials <_< wonder how this one got by me

and, now i know what flags are for XD
 

MrAlBobo

L13: Stunning Member
Feb 20, 2008
1,059
219
ahhh, thats got to be what the problem was, as I was basically just vibrating in place