Blah
Free supporter
- 1,924
- Posts
- 12
- Years
- Unknown Island
- Seen Feb 19, 2025
Which lastresult, and also it won't work if I press yes, but works if I press no...
First of all, I want you to try understand why it works when you press no and not when you press yes. It's very obvious, and something that you should really look into before continuing. I know I've been just handing you the fixes and such, but this time you must work for it :P
I only give you this example as a hint:
Code:
#dynamic 0x740000
#org @start
lock
faceplayer
msgbox @yesorno 0x5 'A yes no box, whether you hit yes or no gets stored in LASTRESULT
compare LASTRESULT YES 'A check to see if the LASTRESULT was yes, I.E you pressed yes
if == jump @yep
msgbox @no 0x6 'If the jump wasn't made, then this runs. I.E player said NO for the message
release
end
#org @yesorno
= Can you see what's wrong with your script now?
#org @yep
= Good. I'm too nice, it's spoiling you :P
#org @no
= Think of what determines when the no box is run and when the @yep is run.