Author Topic: [Solved] Interceptor with pilots that cannot land  (Read 3239 times)

Offline Varana

  • Captain
  • ***
  • Posts: 52
    • View Profile
[Solved] Interceptor with pilots that cannot land
« on: July 15, 2017, 08:35:55 pm »
How do I tell OXCE+ that this interceptor with pilot will/can/may not land, so it will patrol over a landed alien ship like the automatic interceptors without any pilots?

I tried in XCF:

Code: [Select]
crafts:
  - type: STR_THUNDERSTORM
    soldiers: 0
    pilots: 1

but that did not work, there was no screen for changing the pilot any more.
« Last Edit: February 11, 2023, 04:17:31 pm by Meridian »

Offline Meridian

  • Global Moderator
  • Commander
  • *****
  • Posts: 8888
    • View Profile
Re: Fighter pilots?
« Reply #1 on: July 15, 2017, 08:40:33 pm »
Code: [Select]
crafts:
  - type: STR_INTERCEPTOR
    soldiers: 1
    pilots: 1
    allowLanding: false # this craft cannot land (and go on missions)

Offline Varana

  • Captain
  • ***
  • Posts: 52
    • View Profile
Re: Fighter pilots?
« Reply #2 on: July 15, 2017, 08:41:53 pm »
thanks   :)