Profile image

Help for fighter control levels

882 HESA  1.3 years ago

Hello, I need help
I have designed my fighter almost completely but I don't know how to code its control system, can anyone guide me?
What programming language should I use?
And is anyone willing to do it for me and code it for me!? Of course, I want to be able to do this myself

  • Log in to leave a comment
  • Profile image

    ask Snowflakes for help

    +1 1.3 years ago
  • Profile image

    @HESA you also need to enable the XML menu in your game by accessing the "mods" panel in the home screen

    +1 1.3 years ago
  • Profile image

    @HESA the first code makes your plane fly in a straight line on the X-axis
    and the second keeps your plane from rolling

    +1 1.3 years ago
  • Profile image
    882 HESA

    @Dallasfrompayday
    Thanks for the help, but please explain more

    +1 1.3 years ago
  • Profile image

    If you need codes for stable pitch and roll I got you
    Pitch/ auto trim: clamp(((smooth(Pitch,1)+clamp(PID(Trim/20clamp01(Pitch=0),PitchRate/100clamp01(Pitch=0),1,15,0),-1,1))/clamp((((IAS-100)/100)*clamp01(IAS>100)+1),-100,100)),-1,1)

    Roll Stabilizer: clamp(PID(smooth(Roll,0.2),-RollAngle/60,2.5,1,0),-1,1)

    +2 1.3 years ago