For the life of me I cannot figure out what I am doing wrong...
Scriptname Test extends Quest Const
Event OnQuestInit()
RegisterForMenuOpenCloseEvent("LockpickingMenu")
Debug.Trace("The Quest Fired!!")
EndEvent
Event OnMenuOpenCloseEvent(string asMenuName, bool abOpening)
If (asMenuName== "LockpickingMenu")
If (abOpening)
Debug.Trace("Joy!!")
EndIf
EndIf
EndEvent
I have tried without parenthesis, if abOpening == false and using almost every "MenuType" The Quest fires but still no Joy. Any help would be appreciated.