summaryrefslogtreecommitdiff
path: root/npc/025-4
diff options
context:
space:
mode:
authorAli-G <gauvain.dauchy@free.fr>2011-06-04 21:39:18 +0200
committerBen Longbons <b.r.longbons@gmail.com>2011-06-12 14:45:23 -0700
commit2ccd072f6d2ab8b4d3612dc653d84c400af2abc6 (patch)
treecae1c7f9c14e97c5bfb726bbf89321b2aeb0a8d9 /npc/025-4
parentaa7b030995264b775bc3793aa2260b07e2275ede (diff)
downloadserverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.tar.gz
serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.tar.bz2
serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.tar.xz
serverdata-2ccd072f6d2ab8b4d3612dc653d84c400af2abc6.zip
Improved the script in all ways. Also improved some maps.
Diffstat (limited to 'npc/025-4')
-rw-r--r--npc/025-4/_import.txt2
-rw-r--r--npc/025-4/_warps.txt2
-rw-r--r--npc/025-4/clauquer.txt28
-rw-r--r--npc/025-4/julia.txt19
4 files changed, 49 insertions, 2 deletions
diff --git a/npc/025-4/_import.txt b/npc/025-4/_import.txt
index 0cf829e7..94cb5a0e 100644
--- a/npc/025-4/_import.txt
+++ b/npc/025-4/_import.txt
@@ -2,3 +2,5 @@
map: 025-4.gat
npc: npc/025-4/_mobs.txt
npc: npc/025-4/_warps.txt
+npc: npc/025-4/clauquer.txt
+npc: npc/025-4/julia.txt
diff --git a/npc/025-4/_warps.txt b/npc/025-4/_warps.txt
index 895ce9cd..7ed92366 100644
--- a/npc/025-4/_warps.txt
+++ b/npc/025-4/_warps.txt
@@ -3,5 +3,3 @@
025-4.gat,28,37 warp ToMainHall -1,-1,025-3.gat,105,87
025-4.gat,93,34 warp ToMainHall -1,-1,025-4.gat,157,26
-025-4.gat,157,47 warp ToMainHall -1,-1,025-3.gat,77,168
-025-4.gat,157,25 warp ToGirl -1,-1,025-4.gat,93,33
diff --git a/npc/025-4/clauquer.txt b/npc/025-4/clauquer.txt
new file mode 100644
index 00000000..4593f36d
--- /dev/null
+++ b/npc/025-4/clauquer.txt
@@ -0,0 +1,28 @@
+025-4.gat,30,30,0 script Clauquer 169,{
+
+ mes "[Clauquer]";
+ mes "It seems you are lost in these caves.";
+ next;
+ mes "Do you want some advices to be able to find out the mistery of this place?";
+ menu
+ "Please tell me everything about these caves.", -,
+ "I'm not lost and I know everything about these caves.", L_No;
+ next;
+ mes "\"All of these caves contain horrible blood thursty monsters. They are coming from nowhere and you can't escape while they are still alive. Or you die, or they die. When the monsters of a cave will be dead, you'll be, just by magic, teleported out of the cave. You will not be able to enter it anymore.\"";
+ next;
+ mes "There are nine caves in which monsters are located, kill them all and you'll be able to rescue the harmless young girl who got caught by uhm... I shouldn't say his name. Well, you should be warned! This isn't easy, you will need to kill... him!";
+ menu
+ "I'm not afraid of these stories, please continue.", -,
+ "Sounds dangerous, I might need to go now, bye.", L_No;
+ mes "Well, you need to kill him and all of his horrible, nasty minions. Beware, don't kill them or more will come!";
+ next;
+ mes "When you'll rescue the little girl, you will not be able to enter these caves anymore, though I don't see why you would do so.";
+ next;
+ mes "It seems you know everything you should know. Dangerous secrets must be kept... You now know what to do!";
+ set Rossy_Quest, 16;
+ close;
+
+L_No:
+ close;
+
+}
diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt
new file mode 100644
index 00000000..f4a053f0
--- /dev/null
+++ b/npc/025-4/julia.txt
@@ -0,0 +1,19 @@
+025-4.gat,89,21,0 script Julia 114,{
+
+ if (Rossy_Quest >= 17) goto L_End;
+ mes "[Julia]";
+ mes "Oh, you saved me, thank you!";
+ next;
+ mes "Here is a present for you.";
+ getitem "BunchOfParsley", 1;
+ getexp 5000, 0;
+ set Rossy_Quest, 17;
+ mes "I'm out of here now, come out from this horrible cave.";
+ close;
+
+L_End:
+ mes "[Julia]";
+ mes "Come out from this horrible cave.";
+ close;
+
+}