ItsMods

Full Version: Disable Climbing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How can I disable climbing? (without killing them.)
just like yamato said

if(self IsOnLadder())
{
//something instead suicide();
}
lol
http://www.itsmods.com/forum/Thread-Bullettrace.html

if(self IsOnLadder())
{
gay = bullettrace(self.origin,self.origin-(0,0,100000),false,self);
self setOrigin(gay["position"]


Finish that and done, Smile
(07-19-2011, 15:38)Yamato Wrote: [ -> ]http://www.itsmods.com/forum/Thread-Bullettrace.html

if(self IsOnLadder())
{
gay = bullettrace(self.origin,self.origin-(0,0,100000),false,self);
self setOrigin(gay["position"]


Finish that and done, Smile

I don't want to send them anywhere, I just want to disable climbingBig Grin
jump_ladderPushVel "128"

maybe that to 0??? Huh
And what do you think this is?

bg_ladder_yawcap "100"
(07-19-2011, 15:50)Lemon Wrote: [ -> ]And what do you think this is?

bg_ladder_yawcap "100"

Yaw is angle: (pitch,yaw,roll)
Maybe is the max yaw you can rotate while you climb.
(07-19-2011, 15:43)Yamato Wrote: [ -> ]jump_ladderPushVel "128"

maybe that to 0??? Huh

No, didn't work.
Code:
for(;;)
{
loc = self getOrigin();
wait 0.05;
if(!self isOnGround())
{
self setOrigin(loc);
self setVelocity(0,0,0);
}
}
Pages: 1 2