Originally Posted By: Helghast
action no longer is a supported parameter, replace it with void, that should work.
also, temp is no longer available, you have to define that yourself first.

regards,


The engine starts now, but the model is'nt visible that should be attached to "boosterpaal". The code:

Code:
VECTOR* temp_b;

ENTITY* boosterpaal;
ENTITY* gondel_1;

void rotate_boosterarm()
{
	boosterpaal = me;
	set(my,PASSABLE);
	vec_for_vertex(&temp_b,my,2691);
...
}


void rotate_gondel1()
{
	gondel_1 = me;
	set(my,PASSABLE);
	vec_for_vertex(&temp_b,boosterpaal,1);
	my.x = &temp_b.x;
	my.y = &temp_b.y;
	my.z = &temp_b.z;
}