-
Notifications
You must be signed in to change notification settings - Fork 18
Home
powerof3 edited this page Jun 9, 2025
·
8 revisions
Welcome to the PapyrusExtenderSSE wiki!
This contains documentation for each function added by Papyrus Extender.
;(major,minor,patch / 6,0,0)
int[] Function GetPapyrusExtenderVersion() global nativeScriptname myScriptName extends ActiveMagicEffect
import PO3_SKSEFunctions
Event OnEffectStart(Actor akCaster, Actor akTarget)
if IsSoulTrapped(akTarget)
Debug.Notification("Target is soul trapped!")
endif
if PO3_SKSEFunctions.IsActorUnderwater(akCaster)
Debug.Notification("Caster is underwater!")
endif
endEventScriptname myScriptName extends ReferenceAlias
import PO3_Events_Alias
Actor Property Bob Auto
Event OnInit()
RegisterForHitEventEx(self, Bob, aiPowerFilter = 1)
endEvent
Event OnHitEx(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
Debug.Notification("Bob just hit me with a power attack!");
EndEvent