I am Trying to get the actor level using Even Onhit.
I have been testing it and it always say " Level 0" even i set the actor level at 6 in calc minimum and if i use the console to getlevel it says level 6.
here is my script
Scriptname GP_TEST extends ObjectReference
Actor Property PlayerRef Auto
Actor Target
Event OnHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
Target.GetBaseObject()
If akAggressor == PlayerRef
Debug.Notification("Level " + Target.GetLevel())
EndIf
EndEvent