Hes right.
First in your plugin you have to stop them moving by using the:
Then you have to tell them to move the direction you want them to move. So use this:
Code:
public client_PreThink ( id )
{
if(get_user_button(id) & IN_MOVELEFT)
{
client_cmd(id,"-moveleft")
client_cmd(id, "+moveright")
}
else if (get_user_oldbutton(id) & IN_MOVELEFT)
{
client_cmd(id, "-moveright")
}
return FMRES_HANDLED
}
__________________