diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
commit | cf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch) | |
tree | f9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/001-1/children.txt | |
parent | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff) | |
download | serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2 serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip |
Override
Diffstat (limited to 'npc/001-1/children.txt')
-rwxr-xr-x | npc/001-1/children.txt | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/npc/001-1/children.txt b/npc/001-1/children.txt new file mode 100755 index 00000000..0cbba1f8 --- /dev/null +++ b/npc/001-1/children.txt @@ -0,0 +1,90 @@ + +001-1,102,27,0 script Aisha NPC108,{ + @temp = rand(10); + if(@temp == 1) goto L_1; + if(@temp == 2) goto L_2; + if(@temp == 3) goto L_3; + if(@temp == 4) goto L_4; + if(@temp == 5) goto L_5; + if(@temp == 6) goto L_6; + if(@temp == 7) goto L_7; + if(@temp == 8) goto L_8; + if(@temp == 9) goto L_9; + goto L_1; + +L_1: + mes "[Aisha]"; + mes "\"Maggots are so slimey!\" %%^"; + goto L_close; + +L_2: + mes "[Aisha]"; + mes "\"Want to play ball with me?\""; + goto L_close; + +L_3: + mes "[Aisha]"; + mes "\"There are so many monsters! I hate scorpions!\" %%3"; + goto L_close; + +L_4: + mes "[Aisha]"; + mes "\"When I grow up, I want to be strong enough to kill a scorpion!\" %%="; + goto L_close; + +L_5: + mes "[Aisha]"; + mes "\"Mommy told me that you can sell the things that monsters drop.\""; + goto L_close; + +L_6: + mes "[Aisha]"; + mes "\"Have you tried to eat a roasted maggot? They're sooo yummy! Mommy says they're healthy too!\" %%8"; + goto L_close; + +L_7: + mes "[Aisha]"; + mes "\"I want to be a Doctor when I grow up!\""; + goto L_close; + +L_8: + mes "[Aisha]"; + mes "\"That earthquake was sooo scary! The earth was shaking and everything was breaking down... but now they've rebuilt everything.\""; + goto L_close; + +L_9: + mes "\"I know a very bad word. But I can't say it because monsters will come and get me if I do!\""; + next; + menu + "A bad word?", L_tell, + "Oh. You better keep it to yourself then.", L_close; + +L_tell: + mes "[Aisha]"; + mes "\"I heard my mother say it once, and she made me promise her to never say it. ##BNever##b!\""; + next; + menu + "If I promise to never tell anyone, can you tell me the word?", L_keepword, + "I understand. You don't need to tell me...", L_Giveword, + "Goodbye!", L_close; + +L_keepword: + mes "[Aisha]"; + mes "\"No.\""; + goto L_close; + +L_Giveword: + mes "[Aisha]"; + mes "Aisha looks around as she leans in and hushes you to silence. After a few seconds, she whispers to you:"; + mes "\"I like you, so I'll tell you the bad word. But you can't tell anyone else about it! The bad word is '" + get(.invocation$, "spell-aggravate") + ".'\""; + next; + + mes "[Aisha]"; + mes "Terrified, she looks around once more."; + mes "\"But you can't tell anyone!\" %%>"; + goto L_close; + +L_close: + @temp = 0; + close; +} |