Jump to content

explosivepotato

Members
  • Posts

    1
  • Joined

  • Last visited

Nexus Mods Profile

About explosivepotato

explosivepotato's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. There's currently an unused legendary modifier that makes your weapon heal rather than hurt. Upon hitting a companion in bleedout, they'll stand back up but refuse to move, and leaving the cell causes the companion to return home as if you hadn't healed them. I tried to solve this like so: Scriptname CompanionLegendaryHealAlliesFix extends activemagiceffect {"Medic's" legendary modifier now properly stops companions from leaving after being downed.} Faction Property CurrentCompanionFaction Auto ActorValue Property HC_IsCompanionInNeedOfHealing Auto Event OnEffectStart(Actor AkTarget, Actor akCaster) If AkTarget.IsInFaction(CurrentCompanionFaction) == true AkTarget.SetValue(HC_IsCompanionInNeedOfHealing, 0) Debug.Notification("Bleedout: " + AkTarget.IsBleedingOut() + "InNeed" + AkTarget.GetValue(HC_IsCompanionInNeedOfHealing)) AkTarget.EvaluatePackage() EndIf EndEvent But both problems persist. Any help is appreciated.
×
×
  • Create New...