OpenXcom Forum

OpenXcom => Open Feedback => Topic started by: Poduke on August 23, 2015, 02:20:24 am

Title: How can I make a mod so TFTD ships don't require Zrbite?
Post by: Poduke on August 23, 2015, 02:20:24 am
Requiring Zrbite for fuel makes the game harder, but I just don't use those ships because of the requirement.  I don't use the Avenger/Leviathan until the last mission and so I miss out using those ships.
I tried making a mod using this code(and it doesn't work):

Code: [Select]
crafts:
  - type: STR_HAMMERHEAD
    refuelItem: []
  - type: STR_LEVIATHAN
    refuelItem: []
  - type: STR_MANTA
    refuelItem: []
I first tried this next bit of code but my ships required item "0" to refuel:
Code: [Select]
crafts:
  - type: STR_HAMMERHEAD
    refuelItem: 0
  - type: STR_LEVIATHAN
    refuelItem: 0
  - type: STR_MANTA
    refuelItem: 0
Can anyone help me with this simple mod?
Title: Re: How can I make a mod so TFTD ships don't require Zrbite?
Post by: Warboy1982 on August 23, 2015, 02:21:44 am
try ""
Title: Re: How can I make a mod so TFTD ships don't require Zrbite?
Post by: Poduke on August 23, 2015, 03:25:23 pm
That worked. Thanks for the help.