summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-02-16 03:45:21 +0100
committerReid <reidyaro@gmail.com>2016-02-16 03:45:21 +0100
commita835eeffd4a6b564b42366ab7e9320c9188e8cb0 (patch)
tree6dfb8534290254256816aa579ede750f2e4df97a /npc
parent0ee3ce337d52c6d6fb8c628140bc45616f7773f6 (diff)
downloadserverdata-a835eeffd4a6b564b42366ab7e9320c9188e8cb0.tar.gz
serverdata-a835eeffd4a6b564b42366ab7e9320c9188e8cb0.tar.bz2
serverdata-a835eeffd4a6b564b42366ab7e9320c9188e8cb0.tar.xz
serverdata-a835eeffd4a6b564b42366ab7e9320c9188e8cb0.zip
Fix various issue and complete the newb quests.
Diffstat (limited to 'npc')
-rw-r--r--npc/001-1/_mobs.txt2
-rw-r--r--npc/001-1/enora.txt18
2 files changed, 11 insertions, 9 deletions
diff --git a/npc/001-1/_mobs.txt b/npc/001-1/_mobs.txt
index 07705174..56835bd7 100644
--- a/npc/001-1/_mobs.txt
+++ b/npc/001-1/_mobs.txt
@@ -9,6 +9,6 @@
end;
OnFluffyDeath:
- set #ArtisFluffyKilled, #ArtisFluffyKilled + 1;
+ set ArtisFluffyKilled, ArtisFluffyKilled + 1;
end;
}
diff --git a/npc/001-1/enora.txt b/npc/001-1/enora.txt
index 69db045c..fc8e9378 100644
--- a/npc/001-1/enora.txt
+++ b/npc/001-1/enora.txt
@@ -238,7 +238,7 @@
l("Besides, I need to be here to watch for thieves while La Johanne is docked."),
l("You're looking confident, I give you my old gear as reward and acknowledgment of your time, plus take these potions as well!");
- set #ArtisFluffyKilled, 0;
+ set ArtisFluffyKilled, 0;
inventoryplace TrainingGladius, 3;
getitem TrainingGladius, 1;
@@ -270,14 +270,14 @@
}
function enora_hill_cleaned {
- if ($FLUFFY_KILLED < 7)
+ if (ArtisFluffyKilled < 9)
{
speech 5,
- l("Oh no, you still have @@ Fluffies to kill.", 8 - $FLUFFY_KILLED);
+ l("Oh no, you still have @@ Fluffies to kill.", 10 - ArtisFluffyKilled);
return;
}
- else if ($FLUFFY_KILLED < 8)
+ else if (ArtisFluffyKilled < 10)
{
speech 5,
l("Only one more Fluffy to kill and it's done!");
@@ -293,6 +293,8 @@
l("It's a very good place if you want to make some money.");
emotion 6;
+ setq ArtisQuests_Enora, 11;
+
return;
}
@@ -355,7 +357,7 @@
rif(.@q == 0, l("She told me that you had some tasks for me.")), 0,
rif(.@q == 4 || .@q == 6 || .@q == 9, l("I have your package.")), 1,
rif(.@q == 8 && countitem(PibberiesInfusion) >= 5, l("I have your package.")), 2,
- rif(.@q == 10 && #ArtisFluffyKilled >= 10, l("I cleaned up the hill.")), 3,
+ rif(.@q >= 10, l("I cleaned up the hill.")), 3,
rif(.@q >= 10, l("How many Fluffies did I kill on the hill?")), 4,
rif(.@q >= 1, l("Who is Don?")), 5,
rif(.@q >= 5, l("Where is the light armor shop?")), 6,
@@ -381,8 +383,8 @@
break;
case 4:
speech 5,
- l("You killed @@ Fluffies.", #ArtisFluffyKilled);
- if (#ArtisFluffyKilled > 8)
+ l("You killed @@ Fluffies.", ArtisFluffyKilled);
+ if (ArtisFluffyKilled > 8)
{
mesq l("If you continue there will be none left!");
next;
@@ -410,7 +412,7 @@
l("Please come back anytime!");
break;
}
- } while (@menuret != 10);
+ } while (@menuret != 11);
closedialog;
goodbye;