summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlige <aligetmw@hotmail.fr>2013-07-10 21:47:19 +0200
committerAlige <aligetmw@hotmail.fr>2013-07-10 21:47:19 +0200
commit6385d3decc00c3378bc1af655e14a8528b9e94c3 (patch)
tree890689700f332ebd40fe44ec20839198da938c77
parent88389c2cb20247d641417889d98fc7493d336463 (diff)
downloadclientdata-6385d3decc00c3378bc1af655e14a8528b9e94c3.tar.gz
clientdata-6385d3decc00c3378bc1af655e14a8528b9e94c3.tar.bz2
clientdata-6385d3decc00c3378bc1af655e14a8528b9e94c3.tar.xz
clientdata-6385d3decc00c3378bc1af655e14a8528b9e94c3.zip
Fixed asleep.txt script.
-rw-r--r--npc/functions/asleep.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/npc/functions/asleep.txt b/npc/functions/asleep.txt
index b1d81b5b..966e3c45 100644
--- a/npc/functions/asleep.txt
+++ b/npc/functions/asleep.txt
@@ -8,12 +8,10 @@
// @rand = Random number between the number of "sleeping" choice.
function script Asleep {
- closedialog;
set @rand, rand(2);
if (@rand == 0) npctalk3 l("Zzzzzzzzz...");
if (@rand == 1) npctalk3 l("Rrrr... Pchhhh...");
if (@rand == 2) npctalk3 l("Ggrmm... Grmmmm...");
- close;
}