I've made a custom message with each button doing a certain function. But, when I click Button 1, I need to press it twice. The same happens with Button 2, where I need to hit it 3 times. This issue repeats itself with all the buttons. Any help?
Scriptname aaaMenu extends objectreferenceMessage Property aMessage Auto Actor Property aP2 Auto Race Property rArgonian Auto Event OnActivate(ObjectReference akActionRef) If aMessage.Show() == 0 aP2.SetRace(rArgonian) Elseif aMessage.Show() == 1 aP2.OpenInventory(true) Elseif aMessage.Show() == 2 aP2.SetScale(2.0) Elseif aMessage.Show() == 3 Game.ShakeCamera(afDuration = 5) EndifEndEvent