So now I am trying to do this using a scroll.
I get the scroll again in the game after using this scroll so I know everything else is working, but I do not see the menu in the game.
Thanks to Borgut1337, I got a most of this set up but I am doing something wrong here:
Scriptname aadpSetUpScript extends activemagiceffectMessage Property aadpSetUpActivateMESSAGE autoGlobalVariable Property aadpRearDamMult Autoscroll Property aadpSetUpScroll AutoEvent OnEffectStart(Actor akTarget, Actor akCaster)If(akCaster== Game.GetPlayer())int chosenOption = aadpSetUpActivateMESSAGE.Show() If(chosenOption==0) aadprearDamMult.setValue(0.5) ElseIf(chosenOption==1) aadprearDamMult.setValue(1.0) ElseIf(chosenOption==2) aadprearDamMult.setValue(1.5) ElseIf(chosenOption==3) aadprearDamMult.setValue(2.0) ElseIf(chosenOption==4) aadprearDamMult.setValue(0.0) EndifGame.GetPlayer().addItem(aadpSetUpScroll,1)EndifEndEvent

