Quote:
Originally Posted by Dinisk
I want to make a scene. The professor asks with msgbox 0x5 yes or no. If yes-> the scene goes on, if no-> another message comes out (hmm .. repeat your answer) and after that the message msgbox 0x5 repeats. It sounds pretty simple yes? I'm wondering where I made a mistake. When I click yes, it continues to work, but if I try different combinations from no and yes, the script repeats.
|
I'm a bit confused about what you want because in one sentence you say that you want the script to repeat, but in the last sentence you say that you don't want it to repeat.
I think you want the script to enter a loop, so this script is probably what you're looking for:
Code:
#dynamic 0x800000
#org @Main
lock // 0x5 msgboxes don't automatically lock the OW
faceplayer // Or face the player so these need to be added manually
msgbox @YesOrNo 0x5
compare 0x800D 0x1
if 0x1 goto @start
msgbox @No 0x2
goto @Main // Will loop @Main until yes is chosen
#org @start
msgbox @Yes 0x2
... // Script continues on
#org @YesOrNo
= Yes or no?
#org @Yes
= Good answer...
#org @No
= I repeat...
It will go in an infinite loop as long as the player chooses no, but will branch off to @start and continue the script if the player chooses yes. If I completely misunderstood your question and you're looking for something else, just let me know.