ok i have a gravity code in place:
function handle_gravity()
{
result = c_trace(my.x,my.y,my.z-1000),IGNORE_PASSABLE|IGNORE_MODELS|USE_BOX);
if (result > 1)
{ dist.z -= 5 * time_step;
}
ELSE
{
dist.z = 0;
}
}
does this look alright? or should i replace dist.z with c_move?
the only thing the jump function has is:
i guess ill start there

trying to add c_move to one of those.. and, sorry for my last post. it was late night and i was frustrated lol.. i guess it can get like that sometimes
