Hello, everyone! ^^ I've been having a little bit of trouble with this movement script. I managed to get a gravity function working using c_trace and some custom variables:

Code:
function gravitation()
{
	c_trace(mypos,tracepoint, IGNORE_ME);
	airtrace = vec_dist (mypos, target);
		if (airtrace > 50)
	{
		grav.z = -15;
	}
}


But how can I make a jumping script with c_trace? I've been trying to get my head wrapped around it; but to no avail. I would really appreciate some help. ^^ If possible, if you post me a code could you please teach me how it works as well? :3

Last edited by Max_Prower; 03/27/09 09:28.