Jump to content

Fall damage from Impact?


SourceUp

Recommended Posts

Hi guys, so for example i installed Lord of the rings weapon mod and i got Saurons mace and when i hit somebody they fly quite high but don't die from one hit and than when they hit the ground they take no damage. So i was wondering is it possible to make fall damage from impact to an npc?

Link to comment
Share on other sites

Fall damage is based on lift-off height and impact height, trajectory does not matter. Try a script that detects when the actor stops ascending and starts descending, then give him a pushactoraway nudge on the way down. See Nailed to the Sky in Dwemerverse.
Link to comment
Share on other sites

Add this to the magiceffect that causes the knockup, and make sure this magiceffect lasts long enough for the target to reach the top of its arc:

 

Actor TheTarget
Float TargetZPrev
Float TargetZCur
 
Event OnEffectStart(Actor akTarget, Actor akCaster)
	TheTarget = akTarget
	TargetZPrev = TheTarget.GetPositionZ()
	RegisterForSingleUpdate(0.1)
EndEvent
 
Event OnUpdate()
	TargetZCur = TheTarget.GetPositionZ()
	If TargetZCur < TargetZPrev
		GetCasterActor().PushActorAway(TheTarget,-1)
		Dispel()
	Else
		TargetZPrev = TargetZCur
		RegisterForSingleUpdate(0.1)
	EndIf
EndEvent

 

 

(I know about GetTargetActor() but this runs faster)

Link to comment
Share on other sites

I appreciate it so much you helping me out and i really want to do this work, i google how to edit files and etc... So far i got till here, i found the enchantment, right clicked on it (EDIT) than right clicked (EFFECT) edit and now not sure where i have to add those lines. Thanks in advance

 

http://i44.tinypic.com/24fydtl.jpg

 

http://i41.tinypic.com/25ira4g.jpg

Edited by SourceUp
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...