Jump to content

Search the Community

Showing results for tags 'kos shuttle script'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements
    • Welcome Aboard
  • Kerbal Space Program 1
    • KSP1 Discussion
    • KSP1 Suggestions & Development Discussion
    • KSP1 Challenges & Mission ideas
    • KSP1 The Spacecraft Exchange
    • KSP1 Mission Reports
    • KSP1 Gameplay and Technical Support
    • KSP1 Mods
    • KSP1 Expansions
  • Kerbal Space Program 2
    • KSP2 Dev Updates
    • KSP2 Discussion
    • KSP2 Suggestions and Development Discussion
    • Challenges & Mission Ideas
    • The KSP2 Spacecraft Exchange
    • Mission Reports
    • KSP2 Prelaunch Archive
  • Kerbal Space Program 2 Gameplay & Technical Support
    • KSP2 Gameplay Questions and Tutorials
    • KSP2 Technical Support (PC, unmodded installs)
    • KSP2 Technical Support (PC, modded installs)
  • Kerbal Space Program 2 Mods
    • KSP2 Mod Discussions
    • KSP2 Mod Releases
    • KSP2 Mod Development
  • Community
    • Science & Spaceflight
    • Kerbal Network
    • The Lounge
    • KSP Fan Works
  • International
    • International

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Twitter


About me


Location


Interests

Found 2 results

  1. Hello everyone, I just arrived and downloaded KSP1 essentially to use the KOS features. I installed the mod via CKAN (precisely all the files compatible with my version of the game that were offered to me and which started with KOS), however, when I write the program to run in the terminal, the following problem is shown and nothing happens: "The parser used by kos is complaining about a part of the script it can't understand. KOS uses a parser-generator tool known as TinyPG, and the text description you see from this error message comes mostly from TinyPG, not from KOS itself ." The code I'm trying to run is very simple: SET thrott TO 1. LOCK THROTTLE TO thrott. What can I do? Is there any permission I need to enable? Is the mod simply old? Thanks so much for your help and have a good day.
  2. Hello and sorry if I post this in wrong place. I'am working with kOS script to get my shuttle to orbit but I have couple of problems. First problem is with a stage to separate boosters when they flame out / are empty. Second Problem is at stage when I should turn off main engine. Here is what I got so far: CLEARSCREEN. PRINT "Counting down:". FROM {local countdown is 10.} UNTIL countdown = 0 STEP {SET countdown to countdown - 1.} DO { PRINT "..." + countdown. WAIT 1. CLEARSCREEN. } LOCK THROTTLE TO 0.5. STAGE. WAIT 1. STAGE. PRINT "LIFT OFF!". lock steering to lookdirup(heading(90,85):vector, ship:facing:topvector). WAIT UNTIL SHIP:ALTITUDE > 3000. PRINT "Adjusting to 80 degree". lock steering to lookdirup(heading(90,80):vector, ship:facing:topvector). WAIT UNTIL SHIP:ALTITUDE > 4000. PRINT "Adjusting to 75 degree". lock steering to lookdirup(heading(90,75):vector, ship:facing:topvector). WAIT UNTIL SHIP:ALTITUDE > 5000. PRINT "Adjusting to 70 degree". lock steering to lookdirup(heading(90,70):vector, ship:facing:topvector). WAIT UNTIL SHIP:ALTITUDE > 6000. PRINT "Adjusting to 65 degree". lock steering to lookdirup(heading(90,65):vector, ship:facing:topvector). WAIT 3. PRINT "Waiting boosters flameout...". // I have tryed: // WHEN STAGE:SOLIDFUEL < 10 THEN { // WAIT 2. // STAGE. // }. // and another one: //LIST ENGINES IN elist. //set seperation to false. //UNTIL(//don't know what I should but here){ // if(seperation){ // LIST ENGINES IN elist. // set seperation to false. // } // FOR e IN elist { // if (e:FLAMEOUT and STAGE:READY){ // STAGE. // set seperation to true. // } // } //}. RCS ON. WHEN SHIP:APOAPSIS > 75000 THEN { LOCK THROTTLE TO 0.0. }. lock steering to prograde. // something to turn off main engines WAIT 5. STAGE. WHEN SHIP:ALTITUDE > 75000 THEN { LOCK THROTTLE TO 0.9. }. WHEN SHIP:periapsis > 75000 THEN { LOCK THROTTLE TO 0.0. }. Thank you for your help - Sam picture of a shuttle
×
×
  • Create New...