Hi there,
I want freeze player at current place.
When he on the ground I can freeze him by setting maxspeed ( have only weapon_knife )
But if player on a ladder, he can use +jump, so he will get off and have some move.
I have read all threads about blocking +jump command. So it does not exist any solid method to block jumping. ( maybe orpheu can, but i cant use this module )
I tried to check is player on ladder and change velocity like this. So player will be returned to a ladder.
PHP Code:
static Float:velocity[3];
pev(id,pev_velocity,velocity)
velocity[0] = -velocity[0]
velocity[1] = -velocity[1]
set_pev(id,pev_velocity,velocity);
But after 3-4 times fast pressed +jump it will get off from ladder.