Thanks,
the link was really good.
I'm trying to get the forward movement to work before i try with the sides but it aint easy.
PHP Code:
public Forward_move_function(id)
{
static Float:fVelocity[3];
pev(id, pev_angles, fVelocity)
static Float:client_origin[3];
pev(id, pev_origin, client_origin);
new Float:velocity[3];
velocity[0] = fVelocity[0] + 600;
velocity[1] = fVelocity[1] + 600;
velocity[2] = fVelocity[2] + 600;
}
Is it maybe because i have to define the above function in Prethink?