Nebraskka
New member
- Messages
- 44
- Points
- 0
Heya!
While legacy commands like goto being deprecated,
is there any other way to achieve this?
While legacy commands like goto being deprecated,
is there any other way to achieve this?
Code:
prontera,149,266,5 script Woman 650,{ if(@we_dont_like_her) { mes "[Woman]"; mes "How about now?"; mes "Do you like me?"; next; if(select("Yes.:No.")==1) goto L_NiceGuy; mes "[Woman]"; mes "Ugh... Bye then."; close; } mes "[Woman]"; mes "Heya!"; next; switch( select("Hi!:How are you?") ) { case 1: mes "[Woman]"; mes "Hello!"; close; case 2: mes "[Woman]"; mes "Fine, thanks!"; next; if ( select("Nice! Bye!:I don't really like you.") == 2 ) { set @we_dont_like_her; mes "[Woman]"; mes "Oh. Fine then."; close; }L_NiceGuy: mes "[Woman]"; mes "What a nice guy you are!"; close; }}