Val{ fwing(min=-10,max=10,step=2,disp=0) vwing(min=-20,max=20,step=5,disp=0) rwing(min=-10,max=10,step=2,disp=0) throttle(min=-10000,max=20000) boost(max=500000,disp=0) B(max=90,step=10,disp=0) dist() buff() } Key{ 0:fwing(step=0.5) 1:fwing(step=-0.5) 2:rwing(step=5) 3:rwing(step=-5) 4:boost(step=500000) 5:throttle(step=-250) 6:B(step=5) 7:vwing(step=-2) 8:throttle(step=250) 9:vwing(step=2) } Body{ Core(Color=#804000){ E:Chip(Name=partsR,Color=#804000,Angle=-15){ E:Trim(Color=#804000,Angle=-fwing){ E:Chip(Color=#804000){ E:Chip(Color=#804000){} } } W:Chip(Color=#804000,Angle=-105){ S:Chip(Color=#804000){ S:Chip(Color=#804000){ S:Chip(Color=#804000,Angle=B){ S:Chip(Color=#804000){ W:Chip(Color=#804000,Angle=-90){ W:Trim(Color=#804000,Angle=rwing){} N:Chip(Color=#804000){ N:Chip(Color=#804000){} } E:Chip(Color=#804000,Angle=-15){} } W:Trim(Color=#804000,Angle=vwing){ E:Chip(Color=#804000){} } } } } } N:Jet(Color=#808080,Angle=-90,Power=-throttle){} W:Weight(Name=tank2,Color=#804000,Angle=180,Option=2){ S:Jet(Name=boost2,Color=#808080,Angle=90,Power=-boost){} } } } W:Chip(Name=partsL,Color=#804000,Angle=-15){ W:Trim(Color=#804000,Angle=fwing){ W:Chip(Color=#804000){ W:Chip(Color=#804000){} } } E:Chip(Color=#804000,Angle=-105){ S:Chip(Color=#804000){ S:Chip(Color=#804000){ S:Chip(Color=#804000,Angle=B){ S:Chip(Color=#804000){ E:Chip(Color=#804000,Angle=-90){ E:Trim(Color=#804000,Angle=rwing){} N:Chip(Color=#804000){ N:Chip(Color=#804000){} } W:Chip(Color=#804000,Angle=-15){} } E:Trim(Color=#804000,Angle=vwing){ W:Chip(Color=#804000){} } } } } } N:Jet(Color=#808080,Angle=-90,Power=-throttle){} E:Weight(Name=tank1,Color=#804000,Angle=180,Option=2){ S:Jet(Name=boost1,Color=#808080,Angle=90,Power=-boost){} } } } S:Jet(Color=#808080,Angle=-90,Power=throttle){} } } Script{ print 0,"Usage: Allow + AD : Control SX : Throttle" print 1," Z : Booster C : AirBrake" print 2,"Vel : ",_VEL(0)*3.6 ,"km/h" print 3," (" ,_VEL(0) ,"m/s)" print 4,"Pos : " ,_X(0),":",_Z(0) print 5,"Fuel : " ,_FUEL(0) * 100/34000000,"%" print 6," (" ,_FUEL(0), " / ",34000000,")" print 7,"Arg : " ,_EX(0) / _PI() * 180 print 9,"Dist : " ,dist,"m" dist = dist + _VEL(0) * _DT() //if(_FUEL(0) <= 34000000){ // dummy = _BYE(tank1) // dummy = _BYE(tank2) //} if(_KEY(6)){ throttle = 0 } if(_KEY(4) = 0 & boost = 500000 & buff = 0){ buff = 1 } if(_KEY(4) & buff = 1){ dummy = _BYE(tank1) dummy = _BYE(tank2) buff = 2 } if(_KEY(4) = 0 & buff = 2){ buff = 3 } if(_KEY(4) & buff = 3){ dummy = _BYE(partsR) dummy = _BYE(partsL) throttle = -10000 } }