I need some help to find some .entity files.

Ok i want to edit some stuff, but dont know where to look.

 

Things i want to edit are:

 

Phase jump speeds

Phase blocker (time of phase start it increases it by)

 

8,748 views 6 replies
Reply #1 Top

Jump speeds are in the respective Player*.entity files (PlayerPsi, ect.)

 

Phase blocker, do you mean the module? That's probably an ability or buff linked to the module itself, I think. I don't know much about that stuff as I haven't looked into it yet.

 

A curious note - the Player* files contain an entry for Phase Jump chargeup sounds, but this line doesn't function. You need to use the one in the individual ship files.

+1 Loading…
Reply #2 Top

^ not true.

Reply #3 Top

? What's not true?

 

I'm looking at the phase jump data right now. That's in the Player files.

hyperspaceData
    chargeUpEffectName "xy_dreamgate_standard"
    chargeUpEffectNameBetweenStars "HyperspaceChargeUpSolarSystem"
    chargeUpEffectNameDestabilized "HyperspaceChargeUpRed"
    chargeUpEffectSoundID "xy_dreamgate_standard_charge"
    travelEffectName "HyperspaceTravel"
    travelEffectNameBetweenStars "HyperspaceTravelSolarSystem"
    travelEffectNameDestabilized "HyperspaceTravelRed"
    travelEffectSoundID "HYPERSPACE_TRAVEL"
    exitEffectName "xy_dreamgate_standard_exit"
    exitEffectSoundID "xy_dreamgate_standard_exit"
    baseHyperspaceSpeed 89500.000000
    hyperspaceSpeedBetweenStarsMultiplier 24.000000
    hyperspaceSpeedToFriendlyOrbitBodiesMultiplier 1.000000
    baseHyperspaceAntiMatterCost 100.000000
    baseHyperspaceChargeUpTime 6.000000

 

If I look at the PlanetModule entity file for "JumpBlocker", I see;

TXT
entityType "PlanetModuleStandard"
minZoomDistanceMult 2.000000
ability:0 "AbilityHyperspaceDisruption"

^ Clearly an ability entity file. AbilityHyperspaceDisruption.entity

Which is exactly what I thought I would see

That file calls,

buffType "BuffHyperspaceDisruptionSpawner"

Which then leads to the Target, that has...

entityModifier
    buffEntityModifierType "HyperspaceChargeUpRate"
    value
        Level:0 -7.000000
        Level:1 0.000000
        Level:2 0.000000

 

So, did you even put effort into looking at the files or did you just feel like trolling?

Reply #4 Top

Maybe both.

Reply #5 Top

No worries, at least I got a good read. I didn't even know that planets had a HyperspaceDisruption. That'll come in handy. Thanks IskatuMesk!

Reply #6 Top

No problem. Glad I could be of service!