diff options
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/random-talk.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/npc/functions/random-talk.txt b/npc/functions/random-talk.txt index b9df6783a..f6345a406 100644 --- a/npc/functions/random-talk.txt +++ b/npc/functions/random-talk.txt @@ -192,3 +192,16 @@ function script asleep { } end; } + +function script studenttalk { + switch(rand2(6)) { + case 0: npctalkonce(l("I want to sleep...")); break; + case 1: npctalkonce(l("I have homework to do...")); break; + case 2: npctalkonce(l("I need to finish studying for my test...")); break; + case 3: npctalkonce(l("Ah, the Professors will get mad at me again...")); break; + case 4: npctalkonce(l("I'm a little busy right now.")); break; + + default: emotion(E_SLEEPY); + } + end; +} |