diff options
Diffstat (limited to 'npc/008-1/andra.txt')
-rw-r--r-- | npc/008-1/andra.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/008-1/andra.txt b/npc/008-1/andra.txt new file mode 100644 index 00000000..e56cbbf5 --- /dev/null +++ b/npc/008-1/andra.txt @@ -0,0 +1,24 @@ +// + +008-1.gat,36,26,0 script Andra 201,{ + mes "[Andra]"; + mes "\"Hello, my name is Andra, what's yours?\""; + next; + input @name$; + + mes "[Andra]"; + mes "\"Hello, " + @name$ + "! What is your favorite number?\""; + next; + input @num; + + if (@num == 5) goto L_Same; + + mes "[Andra]"; + mes "\"I don't like that one.\""; + close; + +L_Same: + mes "[Andra]"; + mes "\"Mine too!\""; + close; +} |