Jump to content

ngentili

Supporter
  • Posts

    4
  • Joined

  • Last visited

Nexus Mods Profile

About ngentili

ngentili's Achievements

Rookie

Rookie (2/14)

0

Reputation

  1. I am trying to call an event every time ANY active effect on the player starts or ends. The closest I've gotten is something like this: Event OnInit() RegisterForMagicEffectApplyEvent(PlayerRef) EndEvent ;works fine Event OnMagicEffectApply(ObjectReference akTarget, ObjectReference akCaster, MagicEffect akEffect) Debug.Notification("Some effect applied.") RegisterForMagicEffectApplyEvent(PlayerRef) EndEvent ;does not work Event OnEffectFinish(Actor akTarget, Actor akCaster) Debug.Notification("Some effect ended.") EndEvent But the OnEffectFinish doesn't work because it can only be attached to a specific MagicEffect, not to the player, as far as I know. Is there another way of detecting active effects ending? Or can I somehow reference the akEffect from the OnMagicEffectApply to detect when it ends?
  2. I am trying to call an event every time ANY active effect on the player starts or ends. The closest I've gotten is something like this: Event OnInit() RegisterForMagicEffectApplyEvent(PlayerRef) EndEvent ;works fine Event OnMagicEffectApply(ObjectReference akTarget, ObjectReference akCaster, MagicEffect akEffect) Debug.Notification("Some effect applied.") RegisterForMagicEffectApplyEvent(PlayerRef) EndEvent ;does not work Event OnEffectFinish(Actor akTarget, Actor akCaster) Debug.Notification("Some effect ended.") EndEvent But the OnEffectFinish doesn't work because it can only be attached to a specific MagicEffect, not to the player, as far as I know. Is there another way of detecting active effects ending? Or can I somehow reference the akEffect from the OnMagicEffectApply to detect when it ends?
  3. Hello, I've made a mod with hudframeworks to display the players current and max carry weight on the HUD, but I cannot find any information about how to go about making a config holotape. This would be mainly for adjusting the position of the widget on the screen and enable/disabling. I've been able to move the widget with keybinds, but I can't figure out how to implement hudframeworks into a terminal/holotape item, or if this is even possible. Another option is an MCM menu, but I haven't found any information on that either. Any help would be greatly appreciated. The mod made my life a whole lot easier and I'd like to share it, it's just missing config settings.
×
×
  • Create New...