ah i see. ok. so what part do you need exactly? the entire movement code is here:
Code:
function handle_movement()
{
		if(key_shift)
	{
		dist.x = 25 * (key_w - key_s) * time_step;
		dist.y = 25 * (key_a - key_d) * time_step;
	}
	else
	{
		dist.x = 15 * (key_w - key_s) * time_step;
		dist.y = 15 * (key_a - key_d) * time_step;
	}
			if(key_space)
	{
		dist.z = 5;
	wait(-0.66);	
		dist.z = 0;
	}


}




what else? ill get it all together

Last edited by Doc_Savage; 04/15/11 20:41.

Do not concern yourself with my race, personality or origin. find my record in the pits, and then make your wager.