I take it you mean so?

Code:
ENTITY*  create_scaled_entity( var Scale, STRING* model)
{
	ENTITY* tempEnt = ent_create(model, nullvector, NULL);
	if(tempEnt != NULL)
	{
		//scale all axis the same
		tempEnt.scale_x = Scale;
		tempEnt.scale_y = Scale;
		tempEnt.scale_z = Scale;
		//		
	}
	return tempEnt;
}




A8.3x Commercial, AcknexWrapper and VS 2010 Express
○pararealist now.