Okay for my balance mod I am tring to change the TEC's LF abilaty way of working from doing the following:
Cast on target 30 seconds time to use and abilaty, If no abilati is used it stops here.
If abilaty is used it deals 100 dmg to hull and sheild.
I want it to take away 50AM from the target instantly. From studing the abilati and buff files it was clear I needed to create a new buff file for this. The closes thing I could find was the KolGauss cannon file witch I modifie the DoDomage to RemoveAntiMatter and setted my value I wanted 50.
I then made the abilaty go to this new file first witht he bufftype line. And made thsi new file link to the precast buff. How ever when i researcht he abilaty and it completes it minidumps.
Here is the new file codding.
------------------------------------------------------------------------------------
TXT
entityType "Buff"
onReapplyDuplicateType "PrioritizeNewBuffs"
buffStackingLimitType "ForAllPlayers"
stackingLimit -1
buffExclusivityForAIType "NotExclusive"
isInterruptable FALSE
isChannelling FALSE
numInstantActions 2
instantAction
buffInstantActionType "RemoveAntiMatter"
instantActionTriggerType "OnDelay"
delayTime 0.000000
damage
Level:0 50.000000
Level:1 50.000000
Level:2 50.000000
instantAction
buffInstantActionType "ApplyBuffToSelf"
instantActionTriggerType "OnAbilityUsed"
buffType "BuffSabotageAntiMatterPreCast"
effectInfo
effectAttachInfo
attachType "Center"
smallEffectName "Buff_SabotageAntiMatterOnAbilityUse"
largeEffectName "Buff_SabotageAntiMatterOnAbilityUse"
soundID ""
numPeriodicActions 0
numOverTimeActions 0
numEntityModifiers 0
numEntityBoolModifiers 0
numFinishConditions 1
finishCondition
finishConditionType "AllOnDelayInstantActionsDone"
--------------------------------------------------------------------------------------------------------------
I have download of the 4 files available if it helps.
http://www.megaupload.com/?d=4P7USD09
http://www.mediafire.com/?sharekey=95d63d27636c7626ed24a2875c7fa58ee04e75f6e8ebb871
I'm banging my head on my keyboard as my limited knowlege can not dicern what si wrong.