I'm working on a mod that allows more than just the phase ship to be cloaked. So far I have been successful in porting the cloak ability over to the phase basic assault frigate.
But this is where some of the problems come in. Once the frigate cloaks itself, about 10 bool operators kick in. These include:
"CannotBeDamaged""DisableAbilities""DisableConstruction""DisableModuleFunctionality""DisablePhaseJump""DisableLinearEngines""DisableAngularEngines""DisableRegeneration""DisableWeapons""PhaseOut"I've dug around in the .entity files and have pulled up these two as the primary cause.
BuffPhaseOutHull.entityentityBoolModifier "CannotBeDamaged"entityBoolModifier "DisableAbilities"entityBoolModifier "DisableConstruction"entityBoolModifier "DisableModuleFunctionality"entityBoolModifier "DisablePhaseJump"entityBoolModifier "DisableLinearEngines"entityBoolModifier "DisableAngularEngines"entityBoolModifier "DisableRegeneration"entityBoolModifier "DisableWeapons"entityBoolModifier "PhaseOut"AND -
BuffPhaseCloak.entitynumEntityBoolModifiers 7entityBoolModifier "CannotBeDamaged"entityBoolModifier "DisablePhaseJump"entityBoolModifier "DisableLinearEngines"entityBoolModifier "DisableAngularEngines"entityBoolModifier "DisableRegeneration"entityBoolModifier "DisableWeapons"entityBoolModifier "PhaseOut"I've gone through those 2 files and removed all of the bool modifiers except "PhaseOut" and "CannotBeDamaged".
When I've researched the appropriate phase technology and spawned a basic assault frigate, the cloak ability is added to the menu at the bottom right. When I mouse over the ability, it says something along the lines of "Cloak Ability" "Invulnerable ship, PhaseOut". When I click to activate the ability and mouse over the actual ship, it still lists out the 10 or so bool operators. This confuses me as I removed them from the .entity files.
I've gone digging through the files but I can't seem to find where it's pulling the additional bool operators from. I thought removing them from the list in the .entity files would have gotten rid of them.
Any help would be appreciated

.
Thanks