OpenXcom Forum

OpenXcom Forks => OpenXcom Extended (OXCE) => OXCE Support => Topic started by: Varana on July 15, 2017, 08:35:55 pm

Title: [Solved] Interceptor with pilots that cannot land
Post by: Varana 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.
Title: Re: Fighter pilots?
Post by: Meridian 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)
Title: Re: Fighter pilots?
Post by: Varana on July 15, 2017, 08:41:53 pm
thanks   :)