Author Topic: How can I make a mod so TFTD ships don't require Zrbite?  (Read 2670 times)

Offline Poduke

  • Squaddie
  • *
  • Posts: 2
    • View Profile
How can I make a mod so TFTD ships don't require Zrbite?
« 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?

Offline Warboy1982

  • Administrator
  • Commander
  • *****
  • Posts: 2333
  • Developer
    • View Profile
Re: How can I make a mod so TFTD ships don't require Zrbite?
« Reply #1 on: August 23, 2015, 02:21:44 am »
try ""

Offline Poduke

  • Squaddie
  • *
  • Posts: 2
    • View Profile
Re: How can I make a mod so TFTD ships don't require Zrbite?
« Reply #2 on: August 23, 2015, 03:25:23 pm »
That worked. Thanks for the help.