I was trying to make a plane that uses multiple sets of engines, and I was wonder whether it's possible to make a vizzy program, that stops engines from starting under speed of mach 2 and altitude of 15km? If yes, then I'm asking for help with doing that.
Tags
Question3 Comments
- Log in to leave a comment
-
2,821 lafario
Am not really sure how that would work, You better asking @TheVizzyLucky. Or someone else.
-
why don't you just make a AG that toggles them and just turn it off below that?
1 Upvote
Log in in to upvote this post.
If both (height and speed) need to meet these requirements, you can use this program:
if (altitude ASL <= 15000 or (velocity)length < 2 * mach speed) {
Set part engine's part id activated to false;
}
If only one of these requirements needs to be met, you can use "and" instead of "or" in the if block. If you need help doing that, you can send me the craft if you want.
Edit: Forgot to mention before: You need to put all this in a "while (true)" block. Also, I just fixed a small mistake in the program.
Edit 2: Note: This deactivates the engine, so you'll have to manually activate them afterwards. If you want it to be automatically activated, you can add