summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Botosh <rumly111@gmail.com>2015-10-27 20:04:13 +0200
committerJoseph Botosh <rumly111@gmail.com>2015-10-27 20:04:13 +0200
commit79e43e2dc4e0647e903700b3b0e697c5a5a33309 (patch)
tree3618ba12153e2a63d72c78c44d54fdfbc8856d48
parent30ed4608bc1136a563a0098ce3a58af775c2c5c2 (diff)
downloadserverdata-79e43e2dc4e0647e903700b3b0e697c5a5a33309.tar.gz
serverdata-79e43e2dc4e0647e903700b3b0e697c5a5a33309.tar.bz2
serverdata-79e43e2dc4e0647e903700b3b0e697c5a5a33309.tar.xz
serverdata-79e43e2dc4e0647e903700b3b0e697c5a5a33309.zip
Add bacchus to 001-2-14 to return to Ship
-rw-r--r--npc/001-2-14/_import.txt1
-rw-r--r--npc/001-2-14/bacchus.txt28
2 files changed, 29 insertions, 0 deletions
diff --git a/npc/001-2-14/_import.txt b/npc/001-2-14/_import.txt
index 52417d39..88d6e67c 100644
--- a/npc/001-2-14/_import.txt
+++ b/npc/001-2-14/_import.txt
@@ -2,3 +2,4 @@ npc: npc/001-2-14/mapflags.txt
npc: npc/001-2-14/_warps.txt
npc: npc/001-2-14/_mobs.txt
npc: npc/001-2-14/teleport.txt
+npc: npc/001-2-14/bacchus.txt
diff --git a/npc/001-2-14/bacchus.txt b/npc/001-2-14/bacchus.txt
new file mode 100644
index 00000000..01217d13
--- /dev/null
+++ b/npc/001-2-14/bacchus.txt
@@ -0,0 +1,28 @@
+// Evol scripts.
+// Authors:
+// Travolta
+// Description:
+// Bacchus on mini-Artis.
+
+001-2-14,36,29,0,1 script Bacchus#001-2-14 NPC_BACCHUS,{
+ speech
+ l("Have you seen enough? Would you like to wake up?");
+
+ switch (select(l("Send me back to real world."),
+ l("I'd like to stay.")))
+ {
+ case 1:
+ closedialog;
+ warp "000-2-1",50,38;
+ clientcommand "turndown";
+ message strcharinfo(0), l("What a strange dream.");
+ break;
+ case 2:
+ break;
+ }
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 3;
+}