• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Tron762-

Recruit
19 Badges
Nov 24, 2019
8
0
  • Stellaris - Path to Destruction bundle
  • Surviving Mars: First Colony Edition
  • Prison Architect
  • Stellaris: Megacorp
  • Cities: Skylines Industries
  • Surviving Mars: First Colony Edition
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Surviving Mars
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Stellaris
  • Pillars of Eternity
  • Magicka: Wizard Wars Founder Wizard
  • Cities: Skylines
  • Leviathan: Warships
  • Stellaris: Synthetic Dawn
  • Cities: Skylines Deluxe Edition
  • Magicka
Hello everyone,

Could I please request some help from modding experts on this forum.

I'm trying to make a certain ship size's FTL dependant on the presence of another ship - eg. fighters requiring the presence of a carrier.

One method I've hit on to achieve this is via an aura which gives FTL ability to ships it affects.

In the file 00_utilities_drives.txt, the modifier "ftl = yes" seems to be the only mechanism by which ships are given FTL ability.

I've tried adding an aura with the following configuration (below), but this doesn't seem to have the desired effect.

Has this been done before? Is there an easier way I could achieve the same effect? Could I use scripted events instead?

Any help much appreciated.

Code:
  friendly_aura = {
       name = "AURA_FTL"
       radius = 100
       apply_on = fleets
     
       stack_info = {
           id = friendly_carrier_ftl
           priority = 80
       }
     
       ship_modifier = {
           ship_windup_mult = -0.5
           ftl = yes
       }
     
       ftl = yes
     
       graphics = {
           area_effect = {
               entity = "circle_area_entity"
               dynamic_scale = yes
           }
           ship_effect = {
               entity = "ship_aura_negative_entity" 
               dynamic_scale = no
           }
       }
   }
 
Last edited: