diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-22 13:34:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-22 13:34:19 -0300 |
commit | 5f7a4052298b0aee0f42be8248272154bd8a3023 (patch) | |
tree | 1bbfa43330a83d4b85a64eaac709e3346212070a /npc/functions | |
parent | e02922c769f4802dcc047a5af48ffcd7a34a68b7 (diff) | |
download | serverdata-5f7a4052298b0aee0f42be8248272154bd8a3023.tar.gz serverdata-5f7a4052298b0aee0f42be8248272154bd8a3023.tar.bz2 serverdata-5f7a4052298b0aee0f42be8248272154bd8a3023.tar.xz serverdata-5f7a4052298b0aee0f42be8248272154bd8a3023.zip |
Random walking students
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; +} |