diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/asleep.txt | 19 | ||||
-rw-r--r-- | npc/functions/random-talk.txt | 12 | ||||
-rw-r--r-- | npc/scripts.conf | 1 |
3 files changed, 11 insertions, 21 deletions
diff --git a/npc/functions/asleep.txt b/npc/functions/asleep.txt deleted file mode 100644 index aa5abd635..000000000 --- a/npc/functions/asleep.txt +++ /dev/null @@ -1,19 +0,0 @@ -// Evol functions. -// Authors: -// Alige -// Reid -// Description: -// Tell a random sleeping sound. -// Variables: -// .@rand = Random number between the number of "sleeping" choice. - -function script asleep { - switch(rand(5)) { - case 0: npctalkonce(l("Zzzzzzzzz...")); break; - case 1: npctalkonce(l("Rrrr... Pchhhh...")); break; - case 2: npctalkonce(l("Ggrmm... Grmmmm...")); break; - case 3: npctalkonce(l("Hm... Shhhh...")); break; - default: emotion(E_SLEEPY); - } - end; -} diff --git a/npc/functions/random-talk.txt b/npc/functions/random-talk.txt index 5ebb5a2fb..5d975a214 100644 --- a/npc/functions/random-talk.txt +++ b/npc/functions/random-talk.txt @@ -10,6 +10,7 @@ // villagertalk // sailortalk // legiontalk +// asleep // Evol authors (some strings and code): // Reid @@ -171,4 +172,13 @@ function script legiontalk { return; } - +function script asleep { + switch(rand(5)) { + case 0: npctalkonce(l("Zzzzzzzzz...")); break; + case 1: npctalkonce(l("Rrrr... Pchhhh...")); break; + case 2: npctalkonce(l("Ggrmm... Grmmmm...")); break; + case 3: npctalkonce(l("Hm... Shhhh...")); break; + default: emotion(E_SLEEPY); + } + end; +} diff --git a/npc/scripts.conf b/npc/scripts.conf index 026eb7193..9ab99c24d 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -15,7 +15,6 @@ "npc/functions/math.txt", // Misc functions -"npc/functions/asleep.txt", "npc/functions/barber.txt", "npc/functions/bank.txt", "npc/functions/clientversion.txt", |