Thanks for the help.
Ok now that the eagle can read the attachment id!!!!!!!!!
Now I need it to create the thrusters to match.
So if stage ==0 no attachment there should be only 4 if stage ==3 then 8
But this is what I get
stage =0 so there should be 4 there are 3
and now attached pod so stage =3!!!!!!!!!!!!!!!!!
but the same thrusters
Ok now that the eagle can read the attachment id!!!!!!!!!
Now I need it to create the thrusters to match.
So if stage ==0 no attachment there should be only 4 if stage ==3 then 8
Code:
if (stage ==0)
{
SetEngineLevel(ENGINE_HOVER,0.0);
for (i=3; i<8; i++)
DelThruster (th_hover[i]);
NumHover=4;
}
if (stage ==3)
NumHover=8;
for (i=0; i<NumHover; i++)
{
th_hover[i] = CreateThruster (_V(0,0,0), _V(0,1,0), MAX_HOVER_THRUST, ph_main, ISP_QUI);
AddExhaust (th_hover[i], 0.3, 0.5,_V(HoverEngineOfs[i].x,HoverEngineOfs[i].y+1.3,HoverEngineOfs[i].z),_V(0,-1,1));
}
// Se crea el grupo motor elevador
thg_hover = CreateThrusterGroup (th_hover, NumHover, THGROUP_HOVER);
But this is what I get
stage =0 so there should be 4 there are 3
and now attached pod so stage =3!!!!!!!!!!!!!!!!!
but the same thrusters
