I messed around with some message boxes (with choices) and have some questions:
I want a message box with four choices (choices 0-2 just open some further message boxes, choice 3 get the player out of the choice menu). If I click on choice 0-2, a message should be shown. If I click "Ok" the message disappears and I want to go back to the previous choice menu (with the initial 4 choices). So far the plan. But it doesn't work.
I can click on one of the four choices and if I click the given message away, I even come back to the initial menu with the four choices again. But if I click then on one of them, I'm just out of my choice menu without any further text. But I want to be able to click around through all of my choices as long as I don't hit the button of choice == 3.
So here is my script:
ActorBase Property aPlayer AutoRace Property rArgonian AutoMessage Property ChoiceMessageArgonianRace AutoEvent OnRaceSwitchComplete()If aPlayer.GetRace() == rArgonianint choice = ChoiceMessageArgonianRace.Show()If (choice == 0)Debug.MessageBox("Text1")ChoiceMessageArgonianRace.Show()ElseIf (choice == 1)Debug.MessageBox("Text2")ChoiceMessageArgonianRace.Show()ElseIf (choice == 2)Debug.MessageBox("Text3")ChoiceMessageArgonianRace.Show()ElseIf (choice == 3)ReturnEndIfUnregisterForUpdate()EndIf[...]I hope someone can help me.
Thanks!
JDB


