summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlige <aligetmw@hotmail.fr>2013-07-11 09:06:23 +0200
committerAlige <aligetmw@hotmail.fr>2013-07-11 09:06:23 +0200
commit9b6ad078ad1519d24d9f303ca9e5eb5a2e014d92 (patch)
treed3d4a7d26c5c053e5def61c266e6c3d69056bdbc
parent46c222b65175ebd0e8fa05d7d74969b501eb591d (diff)
downloadserverdata-9b6ad078ad1519d24d9f303ca9e5eb5a2e014d92.tar.gz
serverdata-9b6ad078ad1519d24d9f303ca9e5eb5a2e014d92.tar.bz2
serverdata-9b6ad078ad1519d24d9f303ca9e5eb5a2e014d92.tar.xz
serverdata-9b6ad078ad1519d24d9f303ca9e5eb5a2e014d92.zip
Small consistency fix on asleep npc scripts.
-rw-r--r--npc/000-0-0/q'onan.txt2
-rw-r--r--npc/000-2-1/devis.txt2
-rw-r--r--npc/000-2-1/q'onan.txt2
-rw-r--r--npc/functions/asleep.txt1
4 files changed, 1 insertions, 6 deletions
diff --git a/npc/000-0-0/q'onan.txt b/npc/000-0-0/q'onan.txt
index 79b63e6c..01ed1cbc 100644
--- a/npc/000-0-0/q'onan.txt
+++ b/npc/000-0-0/q'onan.txt
@@ -8,6 +8,4 @@
000-0-0.gat,29,28,0,1 script Q'Onan 302,{
callfunc "Asleep";
- close;
-
}
diff --git a/npc/000-2-1/devis.txt b/npc/000-2-1/devis.txt
index f4e47c69..c6066f8d 100644
--- a/npc/000-2-1/devis.txt
+++ b/npc/000-2-1/devis.txt
@@ -9,6 +9,4 @@
000-2-1.gat,32,38,0,1 script Devis 310;2,{
callfunc "Asleep";
- close;
-
}
diff --git a/npc/000-2-1/q'onan.txt b/npc/000-2-1/q'onan.txt
index 5df6bffa..7f7f183d 100644
--- a/npc/000-2-1/q'onan.txt
+++ b/npc/000-2-1/q'onan.txt
@@ -8,6 +8,4 @@
000-2-1.gat,53,38,0,1 script Q'Onan 302;2,{
callfunc "Asleep";
- close;
-
}
diff --git a/npc/functions/asleep.txt b/npc/functions/asleep.txt
index 966e3c45..0adf959a 100644
--- a/npc/functions/asleep.txt
+++ b/npc/functions/asleep.txt
@@ -14,4 +14,5 @@ function script Asleep {
if (@rand == 1) npctalk3 l("Rrrr... Pchhhh...");
if (@rand == 2) npctalk3 l("Ggrmm... Grmmmm...");
+ close;
}