summaryrefslogtreecommitdiff
path: root/npc/015-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-22 01:15:08 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-22 01:15:08 -0300
commitb855e950619bfc835cf3d6c5958e71a8407f1a75 (patch)
tree69cacdb263c770a8e4461b6bf20cbb047fe4a476 /npc/015-2
parent2ef642d234f5b289e8eac0e93595f03027ee3665 (diff)
downloadserverdata-b855e950619bfc835cf3d6c5958e71a8407f1a75.tar.gz
serverdata-b855e950619bfc835cf3d6c5958e71a8407f1a75.tar.bz2
serverdata-b855e950619bfc835cf3d6c5958e71a8407f1a75.tar.xz
serverdata-b855e950619bfc835cf3d6c5958e71a8407f1a75.zip
Bandit Lord should be working, and only reward missing. Push to playtest.
Diffstat (limited to 'npc/015-2')
-rw-r--r--npc/015-2/guard.txt26
-rw-r--r--npc/015-2/lordcave.txt17
2 files changed, 39 insertions, 4 deletions
diff --git a/npc/015-2/guard.txt b/npc/015-2/guard.txt
index e9ba3fe37..97a7dea54 100644
--- a/npc/015-2/guard.txt
+++ b/npc/015-2/guard.txt
@@ -3,6 +3,7 @@
// Jesusalva
// Description:
// Part of Helena's quest
+// Gives spoilers about what Jesusalva plans in doing with Bryant
012-2,47,40,0 script Helena's Teammate NPC_ORC,{
.@q=getq(HurnscaldQuest_Bandits);
@@ -17,18 +18,37 @@ L_SilverKey:
mesn;
mesq l("Don't say anything, I can smell the scent of Helena's hair on you.");
next;
- geitem SilverKey, 1;
+ inventoryplace SilverKey, 1, PiberriesInfusion, 3;
+ getitem SilverKey, 1;
+ getitem PiberriesInfusion, 3;
setq HurnscaldQuest_Bandits, 6;
mesn;
mesq l("I guess she sent you to kill another Bandit Lord, right? Ok, I'll give you the key for his room.");
next;
mesn;
- mesq l("It is pretty close to here. I advise you to bring friends, and use a sword, but I can't give keys to them and etc.");
+ mesq l("It is pretty close to here. I advise you to use a good sword, and heal yourself often.");
+ next;
+ mesn;
+ mesq l("I will give you 3 @@. Use them on this fight, or you're doomed to fail.", getitemlink(PiberriesInfusion));
close;
L_BanditLord:
+ mesn;
+ mesq l("What are you waiting for? Go kill the bandit lord.");
+ next;
mesn strcharinfo(0);
- mesq l("There was nobody on the Bandit Lord's room.");
+ select
+ l("There was nobody on the Bandit Lord's room."),
+ l("I'm going, don't worry.");
+ mes "";
+ mesn;
+ mesq l("...Have you ever gone there yet?");
+ next;
+ mesn;
+ mesq l("This is not The Mana World. My name is not Bryant.");
+ next;
+ mesn;
+ mesq l("In fact, Bryant is my brother, and he lives in a cave, and he probably have a high level quest too, but that's not important now.");
close;
OnInit:
diff --git a/npc/015-2/lordcave.txt b/npc/015-2/lordcave.txt
index 517944f6a..e0eddf7b1 100644
--- a/npc/015-2/lordcave.txt
+++ b/npc/015-2/lordcave.txt
@@ -6,6 +6,21 @@
end;
OnTouch:
- npctalk l("This passage seems sealed. If I only had a @@...", getitemlink(SilverKey));
+ if (countitem(SilverKey) >= 1) goto L_Summon;
+ dispbottom l("This passage seems sealed. If I only had a @@...", getitemlink(SilverKey));
+ end;
+
+L_Summon:
+ if (mobcount("015-2", "#BanditLordDen::OnLordDeath") == 0)
+ monster "015-2",260,250,"Bandit Lord",BanditLord,1, "#BanditLordDen::OnLordDeath";
+ slide 251, 277;
+ end;
+
+OnLordDeath:
+ .@q=getq(HurnscaldQuest_Bandits);
+ if (.@q == 6) {
+ setq HurnscaldQuest_Bandits, 7;
+ dispbottom l("Phew! The Bandit Lord was killed.");
+ }
end;
}