jwells0504 Posted January 8, 2014 Share Posted January 8, 2014 Hey Guys So I've been tinkering with this mods script, more perks trying to make the perk cancerous growth a lot slower with timers. The original perk allowed a broken limb to be healed immediately and fully recovered in less than a min. Way to overpowered and quite game breaking. So I've made some changes to the script and so far I've made the recovery a lot slower but unfortunately my character won't limp even though according to his pipboy his leg is practically at zero health. This is the script I've got so far. Just made some changes using the script technique used by the solar powered script. What I'm trying to do now is add a timer. Something that tells the script to do no healing for at least a few hours in game before it starts to healing process. I've tried figuring this out myself but the more I read the more I realize I'm in over my head :). So any help is much appreciated. Thanks guysscn DreePerkCancerousGrowScriptfloat MicroRegenbegin ScriptEffectUpdate;****** If Player's main health is below 100%if (GetHealthPercentage < 1)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV Health MicroRegenendif; ***** If Player's head condition is below 100%if (GetAV PerceptionCondition < 100)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV PerceptionCondition MicroRegenendif; ***** If Player's chest condition is below 100%if (GetAV EnduranceCondition < 100)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV EnduranceCondition MicroRegenendif; ***** If Player's right leg condition is below 100%if (GetAV RightMobilityCondition < 100)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV RightMobilityCondition MicroRegenendif; ***** If Player's left leg condition is below 100%if (GetAV LeftMobilityCondition < 100)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV LeftMobilityCondition MicroRegenendif; ***** If Player's right arm condition is below 100%if (GetAV RightAttackCondition < 100)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV RightAttackCondition MicroRegenendif; ***** If Player's left arm condition is below 100%if (GetAV LeftAttackCondition < 100)Set MicroRegen to ScriptEffectElapsedSeconds / 200Player.RestoreAV LeftAttackCondition MicroRegenendifend Link to comment Share on other sites More sharing options...
ZippyDSMlee Posted January 14, 2014 Share Posted January 14, 2014 Maybe look at the E-ED quest where they upgrade it after taking data from it? It takes 3 days. Not sure if thats any help. >< Link to comment Share on other sites More sharing options...
Recommended Posts