well it won't even run the script... I don't know what's wrong. confused
I made some alterations to the script
Code:
action player_move ()
{
	player = me;
	while (1)
	{
		set (my,POLYGON)
		camera.pan = player.pan;
		player.pan = (key_cur-key_cul) * 10 * time_step;
		movement = (key_cuu-key_cud) * 10 * time_step;
		c_move (player, vector(0,movement,0),nullvector, GLIDE);
		wait (1);
	}
}


I did this because otherwise the 'player' would only be able to move on one axis (I think)

Last edited by Panda_Dude; 04/06/11 20:08.