Reorganizes Project (#41)

This commit is contained in:
Kamron Batman 2019-08-02 18:13:40 -07:00 committed by GitHub
parent 08bf44af9a
commit 3614a66aee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3499 changed files with 79 additions and 55 deletions

View file

@ -0,0 +1,289 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class AGhostOfCovetous : MLQuest
{
public AGhostOfCovetous()
{
Activated = true;
Title = 1075287; // A Ghost of Covetous
Description =
1075286; // What? Oh, you startled me! Sorry, I'm a little jumpy. My master Griswolt learned that a ghost has recently taken up residence in the Covetous dungeon. He sent me to capture it, but I . . . well, it terrified me, to be perfectly honest. If you think yourself courageous enough, I'll give you my Spirit Bottle, and you can try to capture it yourself. I'm certain my master would reward you richly for such service.
RefusalMessage =
1075288; // That's okay, I'm sure someone with more courage than either of us will come along eventually.
InProgressMessage = 1075290; // You'll find that ghost in the mountain pass above the Covetous dungeon.
CompletionMessage =
1075291; // (As you try to use the Spirit Bottle, the ghost snatches it out of your hand and smashes it on the rocks) Please, don't be frightened. I need your help!
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(SpiritBottle), 1, "Spirit Bottle", typeof(Frederic)));
Rewards.Add(new DummyReward(
1075284)); // Return the filled Spirit Bottle to Griswolt the Master Necromancer to receive a reward.
}
public override Type NextQuest => typeof(SaveHisDad);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Ben"), new Point3D(2467, 402, 15), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Ben"), new Point3D(2467, 402, 15), Map.Felucca);
}
}
public class SaveHisDad : MLQuest
{
public SaveHisDad()
{
Activated = true;
Title = 1075337; // Save His Dad
Description =
1075338; // My father, Andros, is a smith in Minoc. Last week his forge overturned and he was splashed by molten steel. He was horribly burned, and we feared he would die. An alchemist in Vesper promised to make a bandage that could heal him, but he needed the silk of a dread spider. I came here to get some, but I was careless, and succumbed to their poison. Please, won<6F>t you help my father?
RefusalMessage = 1075340; // Oh . . . that<61>s your decision . . . OooOoooOOoo . . .
InProgressMessage =
1075341; // Thank you! Deliver it to Leon the Alchemist in Vesper. The silk crumbles easily, and much time has already passed since I died. Please! Hurry!
CompletionMessage =
1075342; // How may I help thee? You have the silk of a dread spider? Of course I can make you a bandage, but what happened to Frederic?
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new TimedDeliverObjective(TimeSpan.FromSeconds(600), typeof(DreadSpiderSilk), 1,
"Dread Spider Silk", typeof(Leon)));
Rewards.Add(new DummyReward(
1075339)); // Hurry! You must get the silk to Leon the Alchemist quickly, or it will crumble and become useless!
}
public override Type NextQuest => typeof(AFathersGratitude);
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 0, "Frederic"), new Point3D(2415, 887, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 0, "Frederic"), new Point3D(2415, 887, 0), Map.Felucca);
}
}
public class AFathersGratitude : MLQuest
{
public AFathersGratitude()
{
Activated = true;
OneTimeOnly = true;
Title = 1075343; // A Father<65>s Gratitude
Description =
1075344; // That is simply terrible. First Andros, and now his son. Well, let<65>s make sure Frederic<69>s sacrifice wasn<73>t in vain. Will you take the bandages to his father? You can probably deliver them faster than I can, can<61>t you?
RefusalMessage =
1075346; // Well I<>m sorry to hear you say that. Without your help, I don<6F>t know if I can get these to Andros quickly enough to help him.
InProgressMessage =
1075347; // I don<6F>t know how much longer Andros will survive. You<6F>d better get this to him as quick as you can. Every second counts!
CompletionMessage =
1075348; // Sorry, I<>m not accepting commissions at the moment. What? You have the bandage I need from Leon? Thank you so much! But why didn<64>t my son bring this to me himself? . . . Oh, no! You can't be serious! *sag* My Freddie, my son! Thank you for carrying out his last wish. Here -- I made this for my son, to give to him when he became a journeyman. I want you to have it.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(AlchemistsBandage), 1, "Alchemist's Bandage", typeof(Andros)));
Rewards.Add(new ItemReward(1075345, typeof(AndrosGratitude))); // Andros<6F> Gratitude
}
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Leon"), new Point3D(2918, 851, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Leon"), new Point3D(2918, 851, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Andros"), new Point3D(2531, 581, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Andros"), new Point3D(2531, 581, 0), Map.Felucca);
}
}
#endregion
#region Mobiles
public class Ben : BaseCreature
{
[Constructible]
public Ben()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Apprentice Necromancer";
BodyValue = 0x190;
Hue = 0x83FD;
HairItemID = 0x2048;
HairHue = 0x463;
FacialHairItemID = 0x204C;
FacialHairHue = 0x463;
InitStats(100, 100, 25);
AddItem(new Backpack());
AddItem(new Shoes(0x901));
AddItem(new LongPants(0x1BB));
AddItem(new FancyShirt(0x756));
}
public Ben(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Ben";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("The Ghost of Frederic Smithson")]
public class Frederic : BaseCreature
{
[Constructible]
public Frederic()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
BodyValue = 0x1A;
Hue = 0x455;
Frozen = true;
InitStats(100, 100, 25);
}
public Frederic(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "The Ghost of Frederic Smithson";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Leon : BaseCreature
{
[Constructible]
public Leon()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Alchemist";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Shoes(0x901));
AddItem(new Robe(0x657));
}
public Leon(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Leon";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Andros : BaseCreature
{
[Constructible]
public Andros()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Blacksmith";
BodyValue = 0x190;
Hue = 0x8409;
FacialHairItemID = 0x2041;
FacialHairHue = 0x45E;
HairItemID = 0x2049;
HairHue = 0x45E;
InitStats(100, 100, 25);
AddItem(new Backpack());
AddItem(new Boots(0x901));
AddItem(new FancyShirt(0x60B));
AddItem(new LongPants(0x1BB));
AddItem(new FullApron(0x901));
AddItem(new SmithHammer());
}
public Andros(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Andros";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,21 @@
namespace Server.Engines.MLQuests.Definitions
{
// Base class for escorts providing the AwardHumanInNeed option
public class BaseEscort : MLQuest
{
public BaseEscort()
{
CompletionNotice = CompletionNoticeShort;
}
public virtual bool AwardHumanInNeed => true;
public override void GetRewards(MLQuestInstance instance)
{
if (AwardHumanInNeed)
HumanInNeed.AwardTo(instance.Player);
base.GetRewards(instance);
}
}
}

View file

@ -0,0 +1,230 @@
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class Momento : MLQuest
{
public Momento()
{
Activated = true;
Title = 1074750; // Momento!
Description =
1074751; // I was going to march right out there and get it myself, but no ... Master Gnosos won't let me. But you see, that bridle means so much to me. A momento of happier, less-dead ... well undead horseback riding. Could you fetch it for me? I think my horse, formerly known as 'Resolve', may still be wearing it.
RefusalMessage = 1074752; // Hrmph.
InProgressMessage =
1074753; // The bridle would be hard to miss on him now ... since he's skeletal. Please do what you need to do to retrieve it for me.
CompletionMessage = 1074754; // I'd know that jingling sound anywhere! You have recovered my bridle. Thank you.
Objectives.Add(new CollectObjective(1, typeof(ResolvesBridle), "Resolve's Bridle"));
Rewards.Add(ItemReward.LargeBagOfTreasure);
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Kia"), new Point3D(87, 1640, 0), Map.Malas);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Nythalia"), new Point3D(91, 1639, 0), Map.Malas);
}
}
public class CulinaryCrisis : MLQuest
{
public CulinaryCrisis()
{
Activated = true;
Title = 1074755; // Culinary Crisis
Description =
1074756; // You have NO idea how impossible this is. Simply intolerable! How can one expect an artiste' like me to create masterpieces of culinary delight without the best, fresh ingredients? Ever since this whositwhatsit started this uproar, my thrice-daily produce deliveries have ended. I can't survive another hour without produce!
RefusalMessage = 1074757; // You have no artistry in your soul.
InProgressMessage = 1074758; // I must have fresh produce and cheese at once!
CompletionMessage =
1074759; // Those dates look bruised! Oh no, and you fetched a soft cheese. *deep pained sigh* Well, even I can only do so much with inferior ingredients. BAM!
Objectives.Add(new CollectObjective(20, typeof(Dates), 1025927)); // bunch of dates
Objectives.Add(new CollectObjective(5, typeof(CheeseWheel), 1022430)); // wheel of cheese
Rewards.Add(ItemReward.BagOfTreasure);
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Emerillo"), new Point3D(90, 1639, 0), Map.Malas);
}
}
public class GoneNative : MLQuest
{
public GoneNative()
{
Activated = true;
Title = 1074855; // Gone Native
Description =
1074856; // Pathetic really. I must say, a senior instructor going native -- forgetting about his students and peers and engaging in such disgraceful behavior! I'm speaking, of course, of Theophilus. Master Theophilus to you. He may have gone native but he still holds a Mastery Degree from Bedlam College! But, well, that's neither here nor there. I need you to take care of my colleague. Convince him of the error of his ways. He may resist. In fact, assume he will and kill him. We'll get him resurrected and be ready to cure his folly. What do you say?
RefusalMessage =
1074857; // I understand. A Master of Bedlam, even one entirely off his rocker, is too much for you to handle.
InProgressMessage =
1074858; // You had better get going. Master Theophilus isn't likely to kill himself just to save me this embarrassment.
CompletionMessage =
1074859; // You look a bit worse for wear! He put up a good fight did he? Hah! That's the spirit … a Master of Bedlam is a match for most.
Objectives.Add(new KillObjective(1, new[] { typeof(MasterTheophilus) }, "Master Theophilus"));
Rewards.Add(ItemReward.LargeBagOfTreasure);
}
}
#endregion
#region Mobiles
[QuesterName("Kia (Bedlam)")]
public class Kia : BaseCreature
{
[Constructible]
public Kia()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the student";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Sandals(0x709));
AddItem(new Robe(0x497));
}
public Kia(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Kia";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Emerillo (Bedlam)")]
public class Emerillo : BaseCreature
{
[Constructible]
public Emerillo()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the cook";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Sandals(Utility.RandomNeutralHue()));
AddItem(new ShortPants(Utility.RandomPinkHue()));
AddItem(new Shirt());
AddItem(new HalfApron(0x8FD));
}
public Emerillo(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Emerillo";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074222); // Could I trouble you for some assistance?
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Nythalia : BaseCreature
{
[Constructible]
public Nythalia()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the student";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Shoes(Utility.RandomNeutralHue()));
AddItem(new Robe(Utility.RandomBool() ? 0x497 : 0x498));
}
public Nythalia(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Mythalia";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,287 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class VilePoison : MLQuest
{
public VilePoison()
{
Activated = true;
Title = 1074950; // Vile Poison
Description =
1074956; // Heya! I'm sure glad to see you. Listen I'm in a bit of a bind here. I'm supposed to be gathering poisoned water at the base of that corrupted tree there, but I can't get in under the roots to get a good sample. The branches and brush are so tainted that they can't be cut, burned or even magically passed. It's put my work at a real standstill. If you help me out, I'll help you get in there too. Whadda ya say?
RefusalMessage = 1074964; // Okay. If you change your mind, I'll probably still be stuck here trying to get in.
InProgressMessage = 1074968; // My friend, Iosep, is a weaponsmith in Jhelom. If anyone can help us, he can!
CompletionMessage =
1074991; // Greetings. What have you there? Ah, a sample from a poisonous tree, you say? My friend Jamal sent you? Well, let me see that then, and we'll get to work.
Objectives.Add(new DeliverObjective(typeof(TaintedTreeSample), 1, "tainted tree sample", typeof(Iosep)));
Rewards.Add(new DummyReward(1074962)); // A step closer to entering Blighted Grove.
}
public override Type NextQuest => typeof(ARockAndAHardPlace);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Jamal"), new Point3D(559, 1651, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Jamal"), new Point3D(559, 1651, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 2, "Iosep"), new Point3D(1354, 3754, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 2, "Iosep"), new Point3D(1354, 3754, 0), Map.Trammel);
}
}
public class ARockAndAHardPlace : MLQuest
{
public ARockAndAHardPlace()
{
Activated = true;
Title = 1074951; // A Rock and a Hard Place
Description =
1074957; // This is some nasty stuff, that's for certain. I don't even want to think about what sort of blight caused this venomous reaction from that old tree. Let's get to work … we'll need to try something really hard but still workable as our base material. Nothing's harder than stone and diamond. Let's try them first.
RefusalMessage = 1074965; // Sure, no problem. I thought you were interested in figuring this out.
InProgressMessage =
1074969; // If you're a miner, you should have no trouble getting that stuff. If not, you can probably buy some samples from a miner?
CompletionMessage =
1074992; // Have you got the granite and diamonds? Great, let me see them and we'll see what effect this venom has upon them.
// Any type of granite works
Objectives.Add(new CollectObjective(4, typeof(BaseGranite), 1026009)); // rock
Objectives.Add(new CollectObjective(2, typeof(BlueDiamond), 1032696)); // Blue Diamond
Rewards.Add(new DummyReward(1074962)); // A step closer to entering Blighted Grove.
}
public override Type NextQuest => typeof(SympatheticMagic);
public override bool IsChainTriggered => true;
}
public class SympatheticMagic : MLQuest
{
public SympatheticMagic()
{
Activated = true;
Title = 1074952; // Sympathetic Magic
Description =
1074958; // Hmm, I've never even heard of something that can damage diamond like that. I guess we'll have to go with plan B. Let's try something similar. Sometimes there's a natural immunity to be found when you use a substance that's like the one you're trying to cut. A sort of "sympathetic" thing. Y'know?
RefusalMessage = 1074965; // Sure, no problem. I thought you were interested in figuring this out.
InProgressMessage = 1074970; // I think a lumberjack can help supply bark.
CompletionMessage = 1074993; // You're back with the bark already? Terrific! I bet this will do the trick.
Objectives.Add(new CollectObjective(10, typeof(BarkFragment), 1032687)); // Bark Fragment
Rewards.Add(new DummyReward(1074962)); // A step closer to entering Blighted Grove.
}
public override Type NextQuest => typeof(AlreadyDead);
public override bool IsChainTriggered => true;
}
public class AlreadyDead : MLQuest
{
public AlreadyDead()
{
Activated = true;
Title = 1074953; // Already Dead
Description =
1074959; // Amazing! The bark was reduced to ash in seconds. Whatever this taint is, it plays havok with living things. And of course, it took the edge off both diamonds and granite even faster. What we need is something workable but dead; something that can hold an edge without melting. See what you can come up with, please.
RefusalMessage = 1074965; // Sure, no problem. I thought you were interested in figuring this out.
InProgressMessage =
1074971; // I'm thinking we need something fairly brittle or it won't hold an edge. And, it can't be alive, of course.
CompletionMessage = 1074994; // Great thought! Bone might just do the trick.
Objectives.Add(new InternalObjective());
Rewards.Add(new DummyReward(1074962)); // A step closer to entering Blighted Grove.
}
public override Type NextQuest => typeof(Eureka);
public override bool IsChainTriggered => true;
private class InternalObjective : CollectObjective
{
public InternalObjective()
: base(10, typeof(Bone), 1074963) // (10) workable samples
{
}
public override bool ShowDetailed => false;
}
}
public class Eureka : MLQuest
{
public Eureka()
{
Activated = true;
Title = 1074954; // Eureka!
Description =
1074960; // We're in business! I've put together the instructions for chopping sort of sword, in the style of one of those new-fangled elven machetes. Take those back to Jamal for me, if you would.
RefusalMessage = 1074966; // Well, okay. I guess I thought you'd want to see this through.
InProgressMessage =
1074972; // I'm sure Jamal is eager to get this information. He's probably still hanging around near that big old blighted tree.
CompletionMessage = 1074995; // Heya! You're back. Was Iosep able to help? Let me see what he's sent.
Objectives.Add(new DeliverObjective(typeof(SealedNotesForJamal), 1, "sealed note for Jamal", typeof(Jamal)));
Rewards.Add(new DummyReward(1074962)); // A step closer to entering Blighted Grove.
}
public override Type NextQuest => typeof(SubContracting);
public override bool IsChainTriggered => true;
public override void GetRewards(MLQuestInstance instance)
{
PlayerMobile pm = instance.Player;
if (!pm.HasRecipe(32))
{
// The ability is awarded regardless of blacksmithy skill
pm.AcquireRecipe(32);
if (pm.Skills.Blacksmith.Base < 45.0) // TODO: Verify threshold
pm.SendLocalizedMessage(
1075005); // You observe carefully but you can't grasp the complexities of smithing a bone handled machete.
else
pm.SendLocalizedMessage(1075006); // You have learned how to smith a bone handled machete!
}
base.GetRewards(instance);
}
}
public class SubContracting : MLQuest
{
public SubContracting()
{
Activated = true;
Title = 1074955; // Sub Contracting
Description =
1074961; // Wonderful! Now we can both get in there! Let me show you these instructions for making this machete. If you're not skilled in smithing, I'm not sure how much sense it will make though. Listen, if you're heading in there anyway … maybe you'd do me one more favor? I'm ah ... buried in work out here ... so if you'd go in and get me a few water samples, I'd be obliged.
RefusalMessage = 1074967; // Oh. Right, I guess you're really ... ah ... busy too.
InProgressMessage =
1074973; // Once you're inside, look for places where the water has twisted and warped the natural creatures.
CompletionMessage =
1074996; // I hear sloshing ... that must mean you've got my water samples. Whew, I'm so glad you braved the dangers in there ... I mean, I would have but I'm so busy out here. Here's your reward!
Objectives.Add(new CollectObjective(3, typeof(SamplesOfCorruptedWater),
"samples of corrupted water")); // On OSI the label is "#1074999"
// TODO: "Return to" should say "Jamal (near Blighted Grove)"
// Maybe every quest NPC has directions as a property?
Rewards.Add(ItemReward.LargeBagOfTreasure);
}
public override bool IsChainTriggered => true;
}
#endregion
#region Mobiles
[QuesterName("Jamal (near Blighted Grove)")]
public class Jamal : BaseCreature
{
[Constructible]
public Jamal()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.2, 0.4)
{
Title = "the Fisherman";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
Utility.AssignRandomFacialHair(this, HairHue);
AddItem(new Shirt(0x1BB));
AddItem(new ShortPants(Utility.RandomNeutralHue()));
AddItem(new ThighBoots(Utility.RandomAnimalHue()));
AddItem(new Backpack());
}
public Jamal(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Jamal";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
reader.ReadInt();
}
}
[QuesterName("Iosep (Jhelom)")]
public class Iosep : BaseCreature
{
[Constructible]
public Iosep()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.2, 0.4)
{
Title = "the Exporter";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
AddItem(new FancyShirt(Utility.RandomBlueHue()));
AddItem(new LongPants(0x1BB));
AddItem(new Shoes(Utility.RandomNeutralHue()));
AddItem(new Backpack());
}
public Iosep(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Iosep";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074209, // Hey, could you help me out with something?
1074215 // Dont test my patience you sniveling worm!
));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,204 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class Aemaeth1 : MLQuest
{
public Aemaeth1()
{
Activated = true;
Title = 1075321; // Aemaeth
Description =
1075322; // My father died in an accident some months ago. My mother refused to accept his death. We had a little money set by, and she took it to a necromancer, who promised to restore my father to life. Well, he revived my father, all right, the cheat! Now my father is a walking corpse, a travesty . . . a monster. My mother is beside herself -- she won't eat, she can't sleep. I prayed at the shrine of Spirituality for guidance, and I must have fallen asleep. When I awoke, there was this basin of clear water. I cannot leave my mother, for I fear what she might do to herself. Could you take this to the graveyard, and give it to what is left of my father?
RefusalMessage =
1075324; // Oh! Alright then. I hope someone comes along soon who can help me, or I dont know what will become of us.
InProgressMessage =
1075325; // My father - or what remains of him - can be found in the graveyard northwest of the city.
CompletionMessage = 1075326; // What is this you give me? A basin of water?
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(BasinOfCrystalClearWater), 1, "Basin of Crystal Clear Water",
typeof(SkeletonOfSzandor)));
Rewards.Add(new DummyReward(1075323)); // Aurelia's gratitude.
}
public override Type NextQuest => typeof(Aemaeth2);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Aurelia"), new Point3D(1459, 3795, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Aurelia"), new Point3D(1459, 3795, 0), Map.Felucca);
}
}
public class Aemaeth2 : MLQuest
{
public Aemaeth2()
{
Activated = true;
OneTimeOnly = true;
Title = 1075327; // Aemaeth
Description =
1075328; // You tell me it is time to leave this flesh. I did not understand until now. I thought: I can see my wife and my daughter, I can speak. Is this not life? But now, as I regard my reflection, I see what I have become. This only a mockery of life. Thank you for having the courage to show me the truth. For the love I bear my wife and daughter, I know now that I must pass beyond the veil. Will you return this basin to Aurelia? She will know by this that I am at rest.
RefusalMessage =
1075330; // You wont take this back to my daughter? Please, I cannot leave until she knows I am at peace.
InProgressMessage = 1075331; // My daughter will be at my home, on the east side of the city.
CompletionMessage =
1075332; // Thank goodness! Now we can honor my father for the great man he was while he lived, rather than the horror he became.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(BasinOfCrystalClearWater), 1, "Basin of Crystal Clear Water",
typeof(Aurelia)));
Rewards.Add(new ItemReward(1075304, typeof(MirrorOfPurification))); // Mirror of Purification
}
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 2, "SkeletonOfSzandor"), new Point3D(1277, 3731, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 2, "SkeletonOfSzandor"), new Point3D(1277, 3731, 0), Map.Felucca);
}
}
public class OddsAndEnds : MLQuest
{
public OddsAndEnds()
{
Activated = true;
Title = 1074354; // Odds and Ends
Description =
1074677; // I've always been fascinated by primitive cultures -- especially the artifacts. I'm a collector, you see. I'm working on building my troglodyte display and I'm saddened to say that I'm short on examples of religion and superstition amongst the creatures. If you come across any primitive fetishes, I'd be happy to trade you something interesting for them.
RefusalMessage = 1072270; // Well, okay. But if you decide you are up for it after all, c'mon back and see me.
InProgressMessage =
1074678; // I don't really want to know where you get the primitive fetishes, as I can't support the destruction of their lifestyle and culture. That would be wrong.
CompletionMessage = 1074679; // Bravo! These fetishes are just what I needed. You've earned this reward.
Objectives.Add(new CollectObjective(12, typeof(PrimitiveFetish), "Primitive Fetishes"));
Rewards.Add(ItemReward.BagOfTreasure);
}
}
public class EmbracingHumanity : MLQuest
{
public EmbracingHumanity()
{
Activated = true;
OneTimeOnly = true; // OSI has no limit or delay, VERY exploitable
Title = 1074349; // Embracing Humanity
Description =
1074357; // Well, I don't mind saying it -- I'm flabbergasted! Absolutely astonished. I just heard that some elves want to convert themselves to humans through some magical process. My cousin Nedrick does whatever needs doing. I guess you could check it out for yourself if you're curious. Anyway, I wonder if you'll bring my cousin, Drithen, this here treat my wife baked up for him special.
RefusalMessage = 1074459; // That's okay, I'll find someone else to make the delivery.
InProgressMessage = 1074460; // If I knew where my cousin was, I'd make the delivery myself.
CompletionMessage = 1074461; // Oh, hello there. What do you have for me?
Objectives.Add(new DeliverObjective(typeof(SpecialTreatForDrithen), 1, "treat for Drithen", typeof(Drithen)));
Rewards.Add(ItemReward.BagOfTreasure);
}
}
#endregion
#region Mobiles
public class Aurelia : BaseCreature
{
[Constructible]
public Aurelia()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Architect's Daughter";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Sandals(Utility.RandomPinkHue()));
if (Utility.RandomBool())
AddItem(new Kilt(Utility.RandomPinkHue()));
else
AddItem(new Skirt(Utility.RandomPinkHue()));
AddItem(new FancyShirt(Utility.RandomRedHue()));
}
public Aurelia(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Aurelia";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Szandor")]
public class SkeletonOfSzandor : BaseCreature
{
[Constructible]
public SkeletonOfSzandor()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Late Architect";
Hue = 0x83F2; // TODO: Random human hue? Why???
Body = 0x32;
InitStats(100, 100, 25);
}
public SkeletonOfSzandor(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Skeleton of Szandor";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,833 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Human To Elf Quests
public class Seasons : MLQuest
{
public Seasons()
{
Activated = true;
Title = 1072782; // Seasons
Description =
1072802; // *rumbling growl* *sniff* ... not-smell ... seek-fight ... not-smell ... fear-stench ... *rumble* ... cold-soon-time comes ... hungry ... eat-fish ... sleep-soon-time ... *deep fang-filled yawn* ... much-fish.
RefusalMessage = 1072810; // *yawn* ... cold-soon-time ... *growl*
InProgressMessage = 1072811; // *sniff* *sniff* ... not-much-fish ... hungry ... *grumble*
CompletionMessage = 1074174; // *sniff* fish! much-fish!
Objectives.Add(new CollectObjective(20, typeof(RawFishSteak), 1022426)); // raw fish steak
Rewards.Add(new DummyReward(1072803)); // The boon of Maul.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074940, "",
0x2A); // You have gained the boon of Maul! Your understanding of the seasons grows. You are one step closer to claiming your elven heritage.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Darius"), new Point3D(4310, 954, 10), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Darius"), new Point3D(4310, 954, 10), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "MaulTheBear"), new Point3D(1730, 257, 16), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "MaulTheBear"), new Point3D(1730, 257, 16), Map.Trammel);
}
}
public class CaretakerOfTheLand : MLQuest
{
public CaretakerOfTheLand()
{
Activated = true;
Title = 1072783; // Caretaker of the Land
Description =
1072812; // Hrrrrr. Hurrrr. Huuuman. *creaking branches* Suuun on baaark, roooooots diiig deeeeeep, wiiind caaaresses leeeaves … Hrrrrr. Saaap of Sooosaria feeeeeeds us. Hrrrrr. Huuuman leeearn. Caaaretaker of plaaants … teeend … prooove.<br>
RefusalMessage = 1072813; // Hrrrrr. Hrrrrr. Huuuman.
InProgressMessage =
1072814; // Hrrrr. Hrrrr. Roooooots neeeeeed saaap of Sooosaria. Hrrrrr. Roooooots tiiingle neeeaaar Yeeew. Seeeaaarch. Hrrrr!
CompletionMessage = 1074175; // Thiiirsty. Hurrr. Hurrr.
Objectives.Add(new CollectObjective(1, typeof(SapOfSosaria), "sap of sosaria"));
Rewards.Add(new DummyReward(1072804)); // The boon of Strongroot.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074941, "",
0x2A); // You have gained the boon of Strongroot! You have been approved by one whose roots touch the bones of Sosaria. You are one step closer to claiming your elven heritage.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Strongroot"), new Point3D(597, 1744, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Strongroot"), new Point3D(597, 1744, 0), Map.Trammel);
PutSpawner(new Spawner(1, TimeSpan.FromSeconds(30), TimeSpan.FromMinutes(2), 0, 12, "SapOfSosaria"),
new Point3D(757, 1004, 0), Map.Felucca);
PutSpawner(new Spawner(1, TimeSpan.FromSeconds(30), TimeSpan.FromMinutes(2), 0, 12, "SapOfSosaria"),
new Point3D(757, 1004, 0), Map.Trammel);
}
}
public class WisdomOfTheSphynx : MLQuest
{
public WisdomOfTheSphynx()
{
Activated = true;
Title = 1072784; // Wisdom of the Sphynx
Description =
1072822; // I greet thee human and divine my boon thou seek. Convey hence the object of my riddle and I shall reward thee with thy desire.<br><br>Three lives have I.<br>Gentle enough to soothe the skin,<br>Light enough to caress the sky,<br>Hard enough to crack rocks<br>What am I?
RefusalMessage = 1072823; // As thou wish, human.
InProgressMessage =
1072824; // I give thee a hint then human. The answer to my riddle must be held carefully or it cannot be contained at all. Bring this elusive item to me in a suitable container.
CompletionMessage = 1074176; // Ah, thus it ends.
Objectives.Add(new InternalObjective());
Rewards.Add(new DummyReward(1072805)); // The boon of Enigma.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074945, "",
0x2A); // You have gained the boon of Enigma! You are wise enough to know how little you know. You are one step closer to claiming your elven heritage.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Enigma"), new Point3D(1828, 961, 7), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Enigma"), new Point3D(1828, 961, 7), Map.Trammel);
}
private class InternalObjective : CollectObjective
{
public InternalObjective()
: base(1, typeof(Pitcher), 1074869) // The answer to the riddle.
{
}
public override bool ShowDetailed => false;
public override bool CheckItem(Item item)
{
return item is Pitcher pitcher && pitcher.Content == BeverageType.Water && pitcher.Quantity > 0;
}
}
}
public class DefendingTheHerd : MLQuest
{
public DefendingTheHerd()
{
Activated = true;
Title = 1072785; // Defending the Herd
Description =
1072825; // *snort* ... guard-mates ... guard-herd *hoof stomp* ... defend-with-hoof-and-horn ... thirsty-drink. *proud head-toss*
RefusalMessage = 1072826; // *snort*
InProgressMessage = 1072827; // *impatient hoof stomp* ... thirsty herd ... water scent.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(
new EscortObjective(new QuestArea(1074779, "Bravehorn's drinking pool"))); // Bravehorn's drinking pool
Rewards.Add(new DummyReward(1072806)); // The boon of Bravehorn.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074942, "",
0x2A); // You have gained the boon of Bravehorn! You have glimpsed the nobility of those that sacrifice themselves for their people. You are one step closer to claiming your elven heritage.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, TimeSpan.FromSeconds(30), TimeSpan.FromSeconds(90), 0, 5, "Bravehorn"),
new Point3D(1193, 2467, 0), Map.Felucca);
PutSpawner(new Spawner(1, TimeSpan.FromSeconds(30), TimeSpan.FromSeconds(90), 0, 5, "Bravehorn"),
new Point3D(1193, 2467, 0), Map.Trammel);
PutSpawner(new Spawner(5, TimeSpan.FromSeconds(20), TimeSpan.FromSeconds(30), 0, 8, "BravehornsMate"),
new Point3D(1192, 2467, 0), Map.Felucca);
PutSpawner(new Spawner(5, TimeSpan.FromSeconds(20), TimeSpan.FromSeconds(30), 0, 8, "BravehornsMate"),
new Point3D(1192, 2467, 0), Map.Trammel);
}
}
public class TheBalanceOfNature : MLQuest
{
public TheBalanceOfNature()
{
Activated = true;
Title = 1072786; // The Balance of Nature
Description =
1072829; // Ho, there human. Why do you seek out the Huntsman? The hunter serves the land by culling both predators and prey. The hunter maintains the essential balance of life and does not kill for sport or glory. If you seek my favor, human, then demonstrate you are capable of the duty. Cull the wolves nearby.
RefusalMessage = 1072830; // Then begone. I have no time to waste on you, human.
InProgressMessage = 1072831; // The timber wolves are easily tracked, human.
Objectives.Add(new KillObjective(15, new[] { typeof(TimberWolf) }, "timber wolves",
new QuestArea(1074833, "Huntsman's Forest"))); // Huntsman's Forest
Rewards.Add(new DummyReward(1072807)); // The boon of the Huntsman.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074943, "",
0x2A); // You have gained the boon of the Huntsman! You have been given a taste of the bittersweet duty of those who guard the balance. You are one step closer to claiming your elven heritage.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Huntsman"), new Point3D(1676, 593, 16), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Huntsman"), new Point3D(1676, 593, 16), Map.Trammel);
PutSpawner(new Spawner(5, TimeSpan.FromSeconds(5), TimeSpan.FromSeconds(15), 0, 10, "TimberWolf"),
new Point3D(1671, 592, 16), Map.Felucca);
PutSpawner(new Spawner(5, TimeSpan.FromSeconds(5), TimeSpan.FromSeconds(15), 0, 10, "TimberWolf"),
new Point3D(1671, 592, 16), Map.Trammel);
}
}
public class TheJoysOfLife : MLQuest
{
public TheJoysOfLife()
{
Activated = true;
Title = 1072787; // The Joys of Life
Description =
1072832; // *giggle* So serious, so grim! *tickle* Enjoy life! Have fun! Laugh! Be merry! *giggle* Find three of my baubles ... *giggle* I hid them! *giggles hysterically* Hid them! La la la! Bring them quickly! They are magical and will hide themselves again if you are too slow.
RefusalMessage = 1072833; // *giggle* Too serious. Too thinky!
InProgressMessage = 1072834; // Magical baubles hidden, find them as you're bidden! *giggle*
CompletionMessage = 1074177; // *giggle* So pretty!
Objectives.Add(new CollectObjective(3, typeof(ABauble), "arielle's baubles"));
Rewards.Add(new DummyReward(1072809)); // The boon of Arielle.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074944, "",
0x2A); // You have gained the boon of Arielle! You have been taught the importance of laughter and light spirits. You are one step closer to claiming your elven heritage.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Arielle"), new Point3D(1560, 1182, -27), Map.Ilshenar);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Arielle"), new Point3D(3366, 292, 9),
Map.Felucca); // Felucca spawn for reds
PutSpawner(new Spawner(6, TimeSpan.FromSeconds(5), TimeSpan.FromSeconds(30), 0, 20, "ABauble"),
new Point3D(1585, 1212, -13), Map.Ilshenar);
}
}
#endregion
#region Human To Elf Mobiles
[QuesterName("Maul")]
public class MaulTheBear : GrizzlyBear
{
[Constructible]
public MaulTheBear()
{
AI = AIType.AI_Vendor;
FightMode = FightMode.None;
Tamable = false;
}
public MaulTheBear(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Maul";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Strongroot : Treefellow
{
[Constructible]
public Strongroot()
{
AI = AIType.AI_Vendor;
FightMode = FightMode.None;
}
public Strongroot(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Strongroot";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Enigma : BaseCreature
{
[Constructible]
public Enigma()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
BodyValue = 788;
BaseSoundID = 0x3EE;
InitStats(100, 100, 25);
}
public Enigma(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Enigma";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Bravehorn : BaseEscortable
{
[Constructible]
public Bravehorn()
{
}
public Bravehorn(Serial serial)
: base(serial)
{
}
public override bool StaticMLQuester => true;
public override bool InitialInnocent => true;
public override string DefaultName => "Bravehorn";
public override void InitBody()
{
Body = 0xEA;
SetStr(41, 71);
SetDex(47, 77);
SetInt(27, 57);
SetHits(27, 41);
SetMana(0);
SetDamage(5, 9);
SetDamageType(ResistanceType.Physical, 100);
SetResistance(ResistanceType.Physical, 20, 25);
SetResistance(ResistanceType.Cold, 5, 10);
SetSkill(SkillName.MagicResist, 26.8, 44.5);
SetSkill(SkillName.Tactics, 29.8, 47.5);
SetSkill(SkillName.Wrestling, 29.8, 47.5);
Fame = 300;
Karma = 0;
VirtualArmor = 24;
}
public override void InitOutfit()
{
}
public override int GetAttackSound()
{
return 0x82;
}
public override int GetHurtSound()
{
return 0x83;
}
public override int GetDeathSound()
{
return 0x84;
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class BravehornsMate : Hind
{
[Constructible]
public BravehornsMate()
{
Tamable = false;
}
public BravehornsMate(Serial serial)
: base(serial)
{
}
public override string DefaultName => "bravehorn's mate";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Huntsman : Centaur
{
[Constructible]
public Huntsman()
{
AI = AIType.AI_Vendor;
FightMode = FightMode.None;
}
public Huntsman(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Huntsman";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Arielle : Pixie
{
[Constructible]
public Arielle()
{
AI = AIType.AI_Vendor;
FightMode = FightMode.None;
}
public Arielle(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Arielle";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
#region Elf To Human Quests
public class Ingenuity : MLQuest
{
public Ingenuity()
{
Activated = true;
Title = 1074350; // Ingenuity
Description =
1074462; // The best thing about my job is that I do a little bit of everything, every day. It's what we're good at really. Just picking up something and making it do something else. Listen, I'm really low on parts. Are you interested in fetching me some supplies?
RefusalMessage = 1074508; // Okay. Best of luck with your other endeavors.
InProgressMessage =
1074509; // Lord overseers are the best source I know for power crystals of the type I need. Iron golems too, can have them but they're harder to find.
CompletionMessage =
1074510; // Do you have those power crystals? I'm ready to put the finishing touches on my latest experiment.
CompletionNotice = CompletionNoticeShortReturn;
Objectives.Add(new CollectObjective(10, typeof(PowerCrystal), "Power Crystals"));
Rewards.Add(new DummyReward(1074875)); // Another step closer to becoming human.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074946, "",
0x2A); // You have demonstrated your ingenuity! Humans are jacks of all trades and know a little about a lot of things. You are one step closer to achieving humanity.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Nedrick"), new Point3D(2958, 3466, 15), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Nedrick"), new Point3D(2958, 3466, 15), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Sledge"), new Point3D(2673, 2129, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Sledge"), new Point3D(2673, 2129, 0), Map.Trammel);
}
}
public class HeaveHo : MLQuest
{
public HeaveHo()
{
Activated = true;
Title = 1074351; // Heave Ho!
Description =
1074519; // Ho there! There's nothing quite like a day's honest labor to make you appreciate being alive. Hey, maybe you'd like to help out with this project? These crates need to be delivered to Sledge. The only thing is -- it's a bit of a rush job and if you don't make it in time, he won't take them. Can I trust you to help out?
RefusalMessage = 1074521; // Oh yah, if you're too busy, no problem.
InProgressMessage =
1074522; // Sledge can be found in Buc's Den. Better hurry, he won't take those crates if you take too long with them.
CompletionMessage = 1074523; // Hey, if you have cargo for me, you can start unloading over here.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new TimedDeliverObjective(TimeSpan.FromHours(1), typeof(CrateForSledge), 5, "Crates for Sledge",
typeof(Sledge)));
Rewards.Add(new DummyReward(1074875)); // Another step closer to becoming human.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074948, "",
0x2A); // You have demonstrated your physical strength! Humans can carry vast loads without complaint. You are one step closer to achieving humanity.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Patricus"), new Point3D(3007, 823, -2), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Patricus"), new Point3D(3007, 823, -2), Map.Trammel);
}
}
// This is not a real quest, it is only used as a reference
public class HumanInNeed : MLQuest
{
public HumanInNeed()
{
Title = 1075011; // A quest that asks you to defend a human in need.
Description = 0;
RefusalMessage = 0;
InProgressMessage = 0;
}
public override bool RecordCompletion => true;
public static void AwardTo(PlayerMobile pm)
{
MLQuestSystem.GetOrCreateContext(pm).SetDoneQuest(MLQuestSystem.FindQuest(typeof(HumanInNeed)));
pm.SendLocalizedMessage(1074949, "",
0x2A); // You have demonstrated your compassion! Your kind actions have been noted.
}
}
public class AllSeasonAdventurer : MLQuest
{
public AllSeasonAdventurer()
{
Activated = true;
Title = 1074353; // All Season Adventurer
Description =
1074527; // It's all about hardship, suffering, struggle and pain. Without challenges, you've got nothing to test yourself against -- and that's what life is all about. Self improvement! Honing your body and mind! Overcoming obstacles ... You'll see what I mean if you take on my challenge.
RefusalMessage = 1074528; // My way of life isn't for everyone, that's true enough.
InProgressMessage = 1074529; // You're not making much progress in the honing-mind-and-body department, are you?
CompletionNotice = CompletionNoticeShortReturn;
Objectives.Add(new KillObjective(5, new[] { typeof(Efreet) }, "efreets",
new QuestArea(1074808, "Fire"))); // Fire
Objectives.Add(new KillObjective(5, new[] { typeof(IceFiend) }, "ice fiends",
new QuestArea(1074809, "Ice"))); // Ice
Rewards.Add(new DummyReward(1074875)); // Another step closer to becoming human.
}
public override bool RecordCompletion => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.Player.SendLocalizedMessage(1074947, "",
0x2A); // You have demonstrated your toughness! Humans are able to endure unimaginable hardships in pursuit of their goals. You are one step closer to achieving humanity.
instance.ClaimRewards(); // skip gump
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Belulah"), new Point3D(3782, 1266, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Belulah"), new Point3D(3782, 1266, 0), Map.Trammel);
}
}
#endregion
#region Elf To Human Mobiles
[QuesterName("Sledge (Buc's Den)")]
public class Sledge : BaseCreature
{
[Constructible]
public Sledge()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Versatile";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
AddItem(new Tunic(Utility.RandomNeutralHue()));
AddItem(new LongPants(Utility.RandomBlueHue()));
AddItem(new Cloak(Utility.RandomBrightHue()));
AddItem(new ElvenBoots(Utility.RandomNeutralHue()));
AddItem(new Backpack());
}
public Sledge(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Sledge";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074188, // Weakling! You are not up to the task I have.
1074195 // You there, in the stupid hat! Come here.
));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Patricus (Vesper)")]
public class Patricus : BaseCreature
{
[Constructible]
public Patricus()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Trader";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
AddItem(new FancyShirt(Utility.RandomNeutralHue()));
AddItem(new LongPants(Utility.RandomBrightHue()));
AddItem(new Cloak(0x1BB));
AddItem(new Shoes(Utility.RandomNeutralHue()));
AddItem(new Backpack());
}
public Patricus(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Patricus";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Belulah (Nujel'm)")] // On OSI it's "Belulah (Nu'Jelm)" (incorrect spelling)
public class Belulah : BaseCreature
{
[Constructible]
public Belulah()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the scorned";
Female = true;
Body = 401;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new FancyShirt(Utility.RandomBlueHue()));
AddItem(new LongPants(Utility.RandomNondyedHue()));
AddItem(new Boots());
}
public Belulah(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Belulah";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
/*
* 1074205 - Oh great adventurer, would you please assist a weak soul in need of aid?
* 1074206 - Excuse me please traveler, might I have a little of your time?
*/
MLQuestSystem.Tell(this, pm, Utility.Random(1074205, 2));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,164 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class HonestBeggar : MLQuest
{
public HonestBeggar()
{
Activated = true;
Title = 1075392; // Honest Beggar
Description =
1075393; // Beg pardon, sir. I mean, madam. Uh, can I ask a favor of you? I found this jeweled ring. Most people would sell it and keep the money, but not me. I ain't never stole nothing, and I ain't about to start. I tried to take it over to Brit castle, figgerin' it must belong to some highborn lady, but the guards threw me out. You look like they might let you pass. Will you take the ring over there and see if you can find the owner?
RefusalMessage = 1075395; // I see. Too good to help an honest beggar like me, eh?
InProgressMessage =
1075396; // A jewel like this must be worth a lot, so it must belong to some noble or another. I would show it around the castle. Someone<6E>s bound to recognize it.
CompletionMessage =
1075397; // Didst thou find my ring? I thank thee very much! It is an old ring, and a gift from my husband. I was most distraught when I realized it was missing.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(ReginasRing), 1, "Regina's Ring", typeof(Regina)));
Rewards.Add(new DummyReward(1075394)); // Find the ring<6E>s owner.
}
public override Type NextQuest => typeof(ReginasThanks);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Evan"), new Point3D(1486, 1706, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Evan"), new Point3D(1486, 1706, 0), Map.Felucca);
}
}
public class ReginasThanks : MLQuest
{
public ReginasThanks()
{
Activated = true;
OneTimeOnly = true;
Title = 1075398; // Regina<6E>s Thanks
Description =
1075399; // What<61>s that you say? It was a humble beggar that found my ring? Such honesty must be rewarded. Here, take this packet and return it to him, and I will be in your debt.
RefusalMessage = 1075401; // Hmph. Very well. What did you say his name was?
InProgressMessage = 1075402; // Take the packet and return it to the beggar who found my ring.
CompletionMessage =
1075403; // What? For me? Let me see . . . these sapphire earrings are for you, it says. Oh, she wants to offer me a job! This is the most wonderful thing that ever happened to me!
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(ReginasLetter), 1, "Regina's Letter", typeof(Evan)));
Rewards.Add(new ItemReward(1075400, typeof(TransparentHeart))); // Transparent Heart
}
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 0, "Regina"), new Point3D(1362, 1622, 50), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Regina"), new Point3D(1422, 1621, 20), Map.Felucca);
}
}
#endregion
#region Mobiles
public class Evan : BaseCreature
{
[Constructible]
public Evan()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Beggar";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Doublet());
AddItem(new ShortPants(0x755));
}
public Evan(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Evan";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class Regina : BaseCreature
{
[Constructible]
public Regina()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Noble";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new GildedDress());
AddItem(new Boots());
}
public Regina(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Regina";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,347 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
public class Responsibility : BaseEscort
{
public Responsibility()
{
Activated = true;
Title = 1074352; // Responsibility
Description =
1074524; // Oh! I just don't know what to do. My mother is away and my father told me not to talk to strangers ... *worried frown* But my grandfather has sent word that he has been hurt and needs me to tend his wounds. He has a small farm southeast of here. Would you ... could you ... escort me there safely?
RefusalMessage = 1074525; // I hope my grandfather will be alright.
InProgressMessage =
1074526; // Grandfather's farm is a ways west of the Shrine of Spirituality. So, we're not quite there yet. Thank you again for keeping me safe.
Objectives.Add(new EscortObjective(new QuestArea(1074781, "Sheep Farm"))); // Sheep Farm
Rewards.Add(ItemReward.BagOfTrinkets);
}
// OSI sends this instead, but it doesn't make sense for an escortable
//public override void OnComplete( MLQuestInstance instance )
//{
// instance.Player.SendLocalizedMessage( 1073775, "", 0x23 ); // Your quest is complete. Return for your reward.
//}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(30), 0, 5, "Lissbet"),
new Point3D(1568, 1040, -7), Map.Ilshenar);
PutSpawner(new Spawner(1, 5, 10, 0, 8, "GrandpaCharley"), new Point3D(1322, 1331, -14), Map.Ilshenar);
PutSpawner(new Spawner(1, TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(30), 0, 3, "Sheep"),
new Point3D(1308, 1324, -14), Map.Ilshenar);
}
}
public class SomethingToWailAbout : MLQuest
{
public SomethingToWailAbout()
{
Activated = true;
Title = 1073071; // Something to Wail About
Description =
1073561; // Can you hear them? The never-ending howling? The incessant wailing? These banshees, they never cease! Never! They haunt my nights. Please, I beg you -- will you silence them? I would be ever so grateful.
RefusalMessage = 1073580; // I hope you'll reconsider. Until then, farwell.
InProgressMessage = 1073581; // Until you kill 12 Wailing Banshees, there will be no peace.
Objectives.Add(new KillObjective(12, new[] { typeof(WailingBanshee) }, "wailing banshees"));
Rewards.Add(ItemReward.BagOfTreasure);
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Jelrice"), new Point3D(1176, 1196, -25), Map.Ilshenar);
}
}
public class Runaways : MLQuest
{
public Runaways()
{
Activated = true;
Title = 1072993; // Runaways!
Description =
1073026; // You've got to help me out! Those wild ostards have been causing absolute havok around here. Kill them off before they destroy my land. There are around twelve of them.
RefusalMessage = 1072270; // Well, okay. But if you decide you are up for it after all, c'mon back and see me.
InProgressMessage = 1072271; // You're not quite done yet. Get back to work!
Objectives.Add(new KillObjective(12, new[] { typeof(FrenziedOstard) }, "frenzied ostards"));
Rewards.Add(ItemReward.BagOfTrinkets);
}
}
public class ViciousPredator : MLQuest
{
public ViciousPredator()
{
Activated = true;
Title = 1072994; // Vicious Predator
Description =
1073028; // You've got to help me out! Those dire wolves have been causing absolute havok around here. Kill them off before they destroy my land. They run around in a pack of around ten.
RefusalMessage = 1072270; // Well, okay. But if you decide you are up for it after all, c'mon back and see me.
InProgressMessage = 1072271; // You're not quite done yet. Get back to work!
Objectives.Add(new KillObjective(10, new[] { typeof(DireWolf) }, "dire wolves"));
Rewards.Add(ItemReward.BagOfTrinkets);
}
}
public class GuileIrkAndSpite : MLQuest
{
public GuileIrkAndSpite()
{
Activated = true;
Title = 1074739; // Guile, Irk and Spite
Description =
1074740; // You know them, don't you. The three? They look like you, you'll see. They looked like me, I remember, they looked like, well, you'll see. The three. They'll drive you mad too, if you let them. They are trouble, and they need to be slain. Seek them out.
RefusalMessage =
1074745; // You just don't understand the gravity of the situation. If you did, you'd agree to my task.
InProgressMessage =
1074746; // Perhaps I was unclear. You'll know them when you see them, because you'll see you, and you, and you. Hurry now.
CompletionMessage =
1074747; // Are you one of THEM? Ahhhh! Oh, wait, if you were them, then you'd be me. So you're -- you. Good job!
Objectives.Add(new KillObjective(1, new[] { typeof(Guile) }, "Guile"));
Objectives.Add(new KillObjective(1, new[] { typeof(Irk) }, "Irk"));
Objectives.Add(new KillObjective(1, new[] { typeof(Spite) }, "Spite"));
Rewards.Add(ItemReward.Strongbox);
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "Yorus"), new Point3D(1389, 423, -24), Map.Ilshenar);
}
}
public class Lissbet : BaseEscortable
{
[Constructible]
public Lissbet()
{
}
public Lissbet(Serial serial)
: base(serial)
{
}
public override bool StaticMLQuester => true;
public override bool InitialInnocent => true;
public override string DefaultName => "Lissbet";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074204, // Greetings seeker.  I have an urgent matter for you, if you are willing.
1074222 // Could I trouble you for some assistance?
));
}
public override void InitBody()
{
SetStr(40, 50);
SetDex(70, 80);
SetInt(80, 90);
Hue = Race.Human.RandomSkinHue();
Female = true;
Body = 401;
Title = "the flower girl";
HairItemID = 0x203D;
HairHue = 0x1BB;
}
public override void InitOutfit()
{
AddItem(new Kilt(Utility.RandomYellowHue()));
AddItem(new FancyShirt(Utility.RandomYellowHue()));
AddItem(new Sandals());
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class GrandpaCharley : BaseCreature
{
[Constructible]
public GrandpaCharley()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the farmer";
Body = 400;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
int hairHue = 0x3B2 + Utility.Random(2);
Utility.AssignRandomHair(this, hairHue);
FacialHairItemID = 0x203E; // Long Beard
FacialHairHue = hairHue;
SetSkill(SkillName.ItemID, 80, 90);
AddItem(new WideBrimHat(Utility.RandomNondyedHue()));
AddItem(new FancyShirt(Utility.RandomNondyedHue()));
AddItem(new LongPants(Utility.RandomNondyedHue()));
AddItem(new Sandals(Utility.RandomNeutralHue()));
AddItem(new ShepherdsCrook());
AddItem(new Backpack());
}
public GrandpaCharley(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Grandpa Charley";
public override bool CanTeach => true;
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Jelrice (Ilshenar)")]
public class Jelrice : BaseCreature
{
[Constructible]
public Jelrice()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the trader";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Shoes(Utility.RandomNeutralHue()));
AddItem(new Skirt(Utility.RandomBlueHue()));
AddItem(new FancyShirt(Utility.RandomRedHue()));
}
public Jelrice(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Jelrice";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074221); // Greetings!  I have a small task for you good traveler.
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Yorus (Ilshenar)")]
public class Yorus : BaseCreature
{
[Constructible]
public Yorus()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the tinker";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Shoes(Utility.RandomNeutralHue()));
AddItem(new LongPants(Utility.RandomBlueHue()));
AddItem(new FancyShirt(Utility.RandomOrangeHue()));
AddItem(new Cloak(Utility.RandomBrightHue()));
}
public Yorus(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Yorus";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074218); // Hey!  I want to talk to you, now.
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}

View file

@ -0,0 +1,71 @@
using System;
using Server.Engines.MLQuests.Items;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
namespace Server.Engines.MLQuests.Definitions
{
// TODO: Assassination Contract, Evidence, Lost in Transit, Last Words
#region Quests
public class LostAndFound : MLQuest
{
public LostAndFound()
{
Activated = true;
Title = 1072370; // Lost and Found
Description =
1072589; // The battered, old bucket is inscribed with barely legible writing that indicates it belongs to someone named "Dallid". Maybe they'd pay for its return?
RefusalMessage =
1072590; // You're right, who cares if Dallid might pay for his battered old bucket back. This way you can carry it around with you!
InProgressMessage = 1072591; // Whoever this "Dallid" might be, he's probably looking for his bucket.
CompletionMessage =
1074580; // Is that my bucket? I had to ditch my favorite bucket when a group of ratmen jumped me!
Objectives.Add(new TimedDeliverObjective(TimeSpan.FromSeconds(600), typeof(BatteredBucket), 1, "battered bucket",
typeof(Dallid), false));
Rewards.Add(ItemReward.BagOfTrinkets);
}
}
#endregion
#region Items
public class BatteredBucket : TransientQuestGiverItem
{
[Constructible]
public BatteredBucket()
: base(0x2004, TimeSpan.FromMinutes(10))
{
LootType = LootType.Blessed;
}
public BatteredBucket(Serial serial)
: base(serial)
{
}
// Original label, doesn't fit the expiration message well
//public override int LabelNumber => 1073129; // A battered bucket.
public override string DefaultName => "battered bucket";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,93 @@
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class PointyEars : MLQuest
{
public PointyEars()
{
Activated = true;
Title = 1074640; // Pointy Ears
Description =
1074641; // I've heard ... there's some that will pay a good bounty for pointed ears, much like we used to pay for each wolf skin. I've got nothing personal against these elves. It's just business. You want in on this? I'm not fussy who I work with.
RefusalMessage = 1074642; // Suit yourself.
InProgressMessage = 1074643; // I can't pay a bounty if you don't bring bag the ears.
CompletionMessage = 1074644; // Here to collect on a bounty?
Objectives.Add(new CollectObjective(20, typeof(SeveredElfEars), 1032590)); // severed elf ears
Rewards.Add(ItemReward.BagOfTrinkets);
}
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Drithen"), new Point3D(1983, 1364, -80), Map.Malas);
}
}
#endregion
#region Mobiles
[QuesterName("Drithen (Umbra)")]
public class Drithen : BaseCreature
{
[Constructible]
public Drithen()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Fierce";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
AddItem(new Backpack());
AddItem(new ElvenBoots(Utility.RandomNeutralHue()));
AddItem(new LongPants(Utility.RandomBlueHue()));
AddItem(new Tunic(Utility.RandomNeutralHue()));
AddItem(new Cloak(Utility.RandomBrightHue()));
SetSkill(SkillName.Focus, 60.0, 80.0);
}
public Drithen(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Drithen";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074188); // Weakling! You are not up to the task I have.
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,356 @@
using System;
using Server.Engines.MLQuests.Items;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class MistakenIdentity : MLQuest
{
public MistakenIdentity()
{
Activated = true;
Title = 1074573; // Mistaken Identity
Description =
1074574; // What do you want? Wonderful, another whining request for a refund on tuition. You know, experiences like that are invaluable ... and infrequent. Having the opportunity to test yourself under such realistic situations isn't something the college offers all students. Fine. Fine. You'll need to submit a refund request form in triplicate before I can return your 1,000,000 gold tuition. You'll need to get some signatures and a few other odds and ends.
RefusalMessage = 1074606; // If you're not willing to follow the proper process then go away.
InProgressMessage = 1074605; // You're not getting a refund without the proper forms and signatures.
CompletionMessage = 1074607; // Oh blast! Not another of those forms. I'm so sick of this endless paperwork.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(TuitionReimbursementForm), 1, "Tuition Reimbursement Form",
typeof(Gorrow)));
Rewards.Add(new DummyReward(1074634)); // Tuition Reimbursement
}
public override Type NextQuest => typeof(YouScratchMyBack);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Aernya"), new Point3D(2095, 1380, -90), Map.Malas);
}
}
public class YouScratchMyBack : MLQuest
{
public YouScratchMyBack()
{
Activated = true;
Title = 1074608; // You Scratch My Back
Description =
1074609; // Heh. Heheheh. Good one. You're not a Bedlam student and you're definitely not eligible for a tuition refund. Heheheh. That old witch Aernya doesn't see as well as she used to you know. Otherwise, she would have ... hmmm, wait a minute. I sense a certain 'opportunity' here. I'll sign your forms in return for a little help with a project of my own. What do you say?
RefusalMessage = 1074615; // Hehehe. Your choice.
InProgressMessage =
1074616; // I'm something of a gourmet, you see. It's tough getting some of the ingredients, though. Bring me back some pixie legs, unicorn ribs and ki-rin brains and I'll sign your form.
CompletionMessage =
1074617; // Oh excellent, you're back. I'll get the oven going. That thing about pixie legs, you see, is that they burn and dry out if you're not really careful. Taste just like chicken too!
CompletionNotice = CompletionNoticeShortReturn;
Objectives.Add(new CollectObjective(1, typeof(UnicornRibs), "Unicorn Ribs"));
Objectives.Add(new CollectObjective(2, typeof(KirinBrains), "Ki-Rin Brains"));
Objectives.Add(new CollectObjective(5, typeof(PixieLeg), "Pixie Leg"));
Rewards.Add(new DummyReward(1074634)); // Tuition Reimbursement
}
public override Type NextQuest => typeof(FoolingAernya);
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 4, "Gorrow"), new Point3D(993, 512, -50), Map.Malas);
}
}
public class FoolingAernya : MLQuest
{
public FoolingAernya()
{
Activated = true;
Title = 1074618; // Fooling Aernya
Description =
1074619; // Now that I've signed your papers you'd better get back to that witch Aernya. Mmmm mmm smell those ribs!
RefusalMessage = 1074620; // Giving up on your scheme eh? Suit yourself.
InProgressMessage =
1074621; // You better hurry back to Mistress Aernya with that signed form. The college only has so much money and with enough claims you may find yourself unable to get your tuition refunded. *wink*
CompletionMessage = 1074622; // What? Hrmph. Gorrow signed your form did he? Let me see that. *squint*
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(SignedTuitionReimbursementForm), 1,
"Signed Tuition Reimbursement Form", typeof(Aernya)));
Rewards.Add(new DummyReward(1074634)); // Tuition Reimbursement
}
public override Type NextQuest => typeof(NotQuiteThatEasy);
public override bool IsChainTriggered => true;
}
public class NotQuiteThatEasy : MLQuest
{
public NotQuiteThatEasy()
{
Activated = true;
Title = 1074623; // Not Quite That Easy
Description =
1074624; // I wouldn't be too smug just yet, whiner. You still need Master Gnosos' signature before I can cut your refund. Last I heard, he's coordinating the recovery of the portions of the college that are currently overrun. *nasty smile* Off with you.
RefusalMessage = 1074626; // Coward.
InProgressMessage = 1074627; // What are you waiting for? The iron maiden is still the portal to Bedlam.
CompletionMessage =
1074628; // Made it through did you? Did you happen to see Red Death out there? Big horse, skeletal ... burning eyes? No? What's this? Forms? FORMS? I'm up to my eyebrows in ravenous out-of-control undead and you want a signature?
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(SignedTuitionReimbursementForm), 1,
"Signed Tuition Reimbursement Form", typeof(MasterGnosos)));
Rewards.Add(new DummyReward(1074634)); // Tuition Reimbursement
}
public override Type NextQuest => typeof(ConvinceMe);
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutDeco(new BedlamTeleporter(), new Point3D(2067, 1371, -75), Map.Malas);
}
public override void OnAccepted(MLQuestInstance instance)
{
instance.PlayerContext.BedlamAccess = true; // Permanent access
}
}
public class ConvinceMe : MLQuest
{
public ConvinceMe()
{
Activated = true;
Title = 1074629; // Convince Me
Description =
1074630; // I'm not signing any forms until the situation here is under control. So, you can either help out or you can forget getting your tuition refund. Which will it be? Help control the shambling dead?
RefusalMessage = 1074631; // No signature for you.
InProgressMessage =
1074632; // No signature for you until you kill off some of the shambling dead out there and destroy that blasted horse.
CompletionMessage = 1074633; // Pulled it off huh? Well then you've earned this signature!
CompletionNotice = CompletionNoticeShortReturn;
QuestArea bedlam = new QuestArea(1074835, "Bedlam"); // Bedlam
Objectives.Add(new KillObjective(1, new[] { typeof(RedDeath) }, "Red Death", bedlam));
Objectives.Add(new KillObjective(10, new[] { typeof(GoreFiend) }, "gore fiends", bedlam));
Objectives.Add(new KillObjective(8, new[] { typeof(RottingCorpse) }, "rotting corpses", bedlam));
Rewards.Add(new DummyReward(1074634)); // Tuition Reimbursement
}
public override Type NextQuest => typeof(TuitionReimbursement);
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "MasterGnosos"), new Point3D(87, 1639, 0), Map.Malas);
}
}
public class TuitionReimbursement : MLQuest
{
public TuitionReimbursement()
{
Activated = true;
Title = 1074634; // Tuition Reimbursement
Description =
1074635; // Well, there you are. I've added my signature to that of Gorrow, so you should be set to return to Mistress Aernya and get your tuition refunded.
RefusalMessage =
1074636; // Great! If you're going to stick around here, I know we have more tasks for you to perform.
InProgressMessage =
1074637; // Just head out the main gates there and you'll find yourself embracing the iron maiden in the Bloodletter's Guild.
CompletionMessage =
1074638; // *disinterested stare* What? Oh, you've gotten your form filled in. How nice. *glare* And I'd hoped you'd drop this charade before I was forced to rub your nose in it. *nasty smile* You're not even a student and as such, you're not eligible for a refund -- you've never paid tuition. For your services, Master Gnosos has recommended you receive pay. So here. Now go away.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(CompletedTuitionReimbursementForm), 1,
"Completed Tuition Reimbursement Form", typeof(Aernya)));
Rewards.Add(ItemReward.Strongbox);
}
public override bool IsChainTriggered => true;
}
#endregion
#region Mobiles
[QuesterName("Aernya (Umbra)")]
public class Aernya : BaseCreature
{
[Constructible]
public Aernya()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Mistress of Admissions";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Sandals(Utility.RandomNeutralHue()));
AddItem(new Skirt(Utility.RandomBool() ? 0x1 : 0x0));
AddItem(new Cloak(Utility.RandomBrightHue()));
AddItem(new FancyShirt(Utility.RandomBool() ? 0x3B2 : 0x3B3));
}
public Aernya(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Aernya";
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Gorrow (Luna)")]
public class Gorrow : BaseCreature
{
[Constructible]
public Gorrow()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Mayor";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
AddItem(new Backpack());
AddItem(new Shoes(0x1BB));
AddItem(new Tunic(Utility.RandomNeutralHue()));
AddItem(new LongPants(0x901));
AddItem(new Cloak(Utility.RandomRedHue()));
}
public Gorrow(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override string DefaultName => "Gorrow";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074200, // Thank goodness you are here, there<72>s no time to lose.
1074203 // Hello friend. I realize you are busy but if you would be willing to render me a service I can assure you that you will be judiciously renumerated.
));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Master Gnosos (Bedlam)")]
public class MasterGnosos : BaseCreature
{
[Constructible]
public MasterGnosos()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the necromancer";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = 0x83E8;
InitStats(100, 100, 25);
HairItemID = 0x2049;
FacialHairItemID = 0x204B;
AddItem(new Backpack());
AddItem(new Shoes(0x485));
AddItem(new Robe(0x497));
SetSkill(SkillName.EvalInt, 60.0, 80.0);
SetSkill(SkillName.Inscribe, 60.0, 80.0);
SetSkill(SkillName.MagicResist, 60.0, 80.0);
SetSkill(SkillName.SpiritSpeak, 60.0, 80.0);
SetSkill(SkillName.Meditation, 60.0, 80.0);
SetSkill(SkillName.Necromancy, 60.0, 80.0);
}
public MasterGnosos(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Master Gnosos";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074186); // Come here, I have a task.
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,125 @@
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
namespace Server.Engines.MLQuests.Definitions
{
public class NewHavenEscort : BaseEscort
{
// Escort reward
private static readonly BaseReward m_Reward = new ItemReward("Gold", typeof(Gold), 500);
public NewHavenEscort(int title, int description, int progress, int destination, string region)
{
Activated = true;
Title = title;
Description = description;
RefusalMessage =
1072288; // I wish you would reconsider my offer. I'll be waiting right here for someone brave enough to assist me.
InProgressMessage = progress;
Objectives.Add(new EscortObjective(new QuestArea(destination, region)));
Rewards.Add(m_Reward);
}
// New Haven escorts do not count for 'helping a human in need'
public override bool AwardHumanInNeed => false;
}
public class EscortToNHAlchemist : NewHavenEscort
{
public EscortToNHAlchemist()
: base(1072314, 1042769, 1072326, 1073864, "the New Haven Alchemist")
{
}
}
public class EscortToNHBard : NewHavenEscort
{
public EscortToNHBard()
: base(1072315, 1042772, 1072327, 1073865, "the New Haven Bard")
{
}
}
public class EscortToNHWarrior : NewHavenEscort
{
public EscortToNHWarrior()
: base(1072316, 1042787, 1072328, 1073866, "the New Haven Warrior")
{
}
}
public class EscortToNHTailor : NewHavenEscort
{
public EscortToNHTailor()
: base(1072317, 1042781, 1072329, 1073867, "the New Haven Tailor")
{
}
}
public class EscortToNHCarpenter : NewHavenEscort
{
public EscortToNHCarpenter()
: base(1072318, 1042775, 1072330, 1073868, "the New Haven Carpenter")
{
}
}
public class EscortToNHMapmaker : NewHavenEscort
{
public EscortToNHMapmaker()
: base(1072319, 1042793, 1072331, 1073869, "the New Haven Mapmaker")
{
}
}
public class EscortToNHMage : NewHavenEscort
{
public EscortToNHMage()
: base(1072320, 1042790, 1072332, 1073870, "the New Haven Mage")
{
}
}
public class EscortToNHInn : NewHavenEscort
{
public EscortToNHInn()
: base(1072321, 1042796, 1072333, 1073871, "the New Haven Inn")
{
}
}
public class EscortToNHFarm : NewHavenEscort
{
public EscortToNHFarm()
: base(1072322, 1042799, 1072334, 1073872, "the New Haven Farm")
{
}
}
public class EscortToNHDocks : NewHavenEscort
{
public EscortToNHDocks()
: base(1072323, 1042802, 1072335, 1073873, "the New Haven Docks")
{
}
}
public class EscortToNHBowyer : NewHavenEscort
{
public EscortToNHBowyer()
: base(1072324, 1042805, 1072336, 1073874, "the New Haven Bowyer")
{
}
}
public class EscortToNHBank : NewHavenEscort
{
public EscortToNHBank()
: base(1072325, 1042784, 1072337, 1073875, "the New Haven Bank")
{
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,727 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
public static class Spellweaving
{
public static void AwardTo(PlayerMobile pm)
{
if (pm == null)
return;
MLQuestContext context = MLQuestSystem.GetOrCreateContext(pm);
if (!context.Spellweaving)
{
context.Spellweaving = true;
Effects.SendLocationParticles(EffectItem.Create(pm.Location, pm.Map, EffectItem.DefaultDuration), 0, 0, 0, 0,
0, 5060, 0);
Effects.PlaySound(pm.Location, pm.Map, 0x243);
Effects.SendMovingParticles(new Entity(Serial.Zero, new Point3D(pm.X - 6, pm.Y - 6, pm.Z + 15), pm.Map), pm,
0x36D4, 7, 0, false, true, 0x497, 0, 9502, 1, 0, (EffectLayer)255, 0x100);
Effects.SendMovingParticles(new Entity(Serial.Zero, new Point3D(pm.X - 4, pm.Y - 6, pm.Z + 15), pm.Map), pm,
0x36D4, 7, 0, false, true, 0x497, 0, 9502, 1, 0, (EffectLayer)255, 0x100);
Effects.SendMovingParticles(new Entity(Serial.Zero, new Point3D(pm.X - 6, pm.Y - 4, pm.Z + 15), pm.Map), pm,
0x36D4, 7, 0, false, true, 0x497, 0, 9502, 1, 0, (EffectLayer)255, 0x100);
Effects.SendTargetParticles(pm, 0x375A, 35, 90, 0x00, 0x00, 9502, (EffectLayer)255, 0x100);
}
}
}
#region Patience
public class Patience : MLQuest
{
public Patience()
{
Activated = true;
Title = 1072753; // Patience
Description =
1072762; // Learning to weave spells and control the forces of nature requires sacrifice, discipline, focus, and an unwavering dedication to Sosaria herself. We do not teach the unworthy. They do not comprehend the lessons nor the dedication required. If you would walk the path of the Arcanist, then you must do as I require without hesitation or question. Your first task is to gather miniature mushrooms ... 20 of them from the branches of our mighty home. I give you one hour to complete the task.
RefusalMessage = 1072767; // *nods* Not everyone has the temperment to undertake the way of the Arcanist.
InProgressMessage =
1072774; // The mushrooms I seek can be found growing here in The Heartwood. Seek them out and gather them. You are running out of time.
CompletionMessage = 1074166; // Have you gathered the mushrooms?
Objectives.Add(new TimedCollectObjective(TimeSpan.FromHours(1), 20, typeof(MiniatureMushroom),
"miniature mushrooms"));
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(NeedsOfTheManyHeartwood1);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Aeluva"), new Point3D(7064, 349, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Aeluva"), new Point3D(7064, 349, 0), Map.Trammel);
// Split up to prevent stacking on the spawner
PutSpawner(new Spawner(20, TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(30), 0, 30, "MiniatureMushroom"),
new Point3D(7015, 366, 0), Map.Felucca);
PutSpawner(new Spawner(20, TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(30), 0, 30, "MiniatureMushroom"),
new Point3D(7015, 366, 0), Map.Trammel);
PutSpawner(new Spawner(5, TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(30), 0, 20, "MiniatureMushroom"),
new Point3D(7081, 373, 0), Map.Felucca);
PutSpawner(new Spawner(5, TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(30), 0, 20, "MiniatureMushroom"),
new Point3D(7081, 373, 0), Map.Trammel);
PutSpawner(new Spawner(15, TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(30), 0, 20, "MiniatureMushroom"),
new Point3D(7052, 414, 0), Map.Felucca);
PutSpawner(new Spawner(15, TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(30), 0, 20, "MiniatureMushroom"),
new Point3D(7052, 414, 0), Map.Trammel);
}
}
public class NeedsOfTheManyHeartwood1 : MLQuest
{
public NeedsOfTheManyHeartwood1()
{
Activated = true;
Title = 1072797; // Needs of the Many - The Heartwood
Description =
1072763; // The way of the Arcanist involves cooperation with others and a strong commitment to the community of your people. We have run low on the cotton we use to pack wounds and our people have need. Bring 10 bales of cotton to me.
RefusalMessage = 1072768; // You endanger your progress along the path with your unwillingness.
InProgressMessage = 1072775; // I care not where you acquire the cotton, merely that you provide it.
CompletionMessage = 1074110; // Well, where are the cotton bales?
Objectives.Add(new CollectObjective(10, typeof(Cotton), 1023577)); // bale of cotton
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(NeedsOfTheManyHeartwood2);
public override bool IsChainTriggered => true;
}
public class NeedsOfTheManyHeartwood2 : MLQuest
{
public NeedsOfTheManyHeartwood2()
{
Activated = true;
Title = 1072797; // Needs of the Many - The Heartwood
Description = 1072764; // We must look to the defense of our people! Bring boards for new arrows.
RefusalMessage =
1072769; // The people have need of these items. You are proving yourself inadequate to the demands of a member of this community.
InProgressMessage = 1072776; // The requirements are simple -- 250 boards.
CompletionMessage = 1074152; // Well, where are the boards?
Objectives.Add(new CollectObjective(250, typeof(Board), 1027127)); // board
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(MakingAContributionHeartwood);
public override bool IsChainTriggered => true;
}
public class MakingAContributionHeartwood : MLQuest
{
public MakingAContributionHeartwood()
{
Activated = true;
Title = 1072798; // Making a Contribution - The Heartwood
Description =
1072765; // With health and defense assured, we need look to the need of the community for food and drink. We will feast on fish steaks, sweets, and wine. You will supply the ingredients, the cooks will prepare the meal. As a Arcanist relies upon others to build focus and lend their power to her workings, the community needs the effort of all to survive.
RefusalMessage = 1072770; // Do not falter now. You have begun to show promise.
InProgressMessage = 1072777; // Where are the items you've been tasked to supply for the feast?
CompletionMessage = 1074158; // Ah good, you're back. We're eager for the feast.
Objectives.Add(new CollectObjective(1, typeof(SackFlour), 1024153)); // sack of flour
Objectives.Add(new CollectObjective(10, typeof(JarHoney), 1022540)); // jar of honey
Objectives.Add(new CollectObjective(20, typeof(FishSteak), 1022427)); // fish steak
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(UnnaturalCreations);
public override bool IsChainTriggered => true;
}
public class UnnaturalCreations : MLQuest
{
public UnnaturalCreations()
{
Activated = true;
Title = 1072758; // Unnatural Creations
Description =
1072780; // You have proven your desire to contribute to the community and serve the people. Now you must demonstrate your willingness to defend Sosaria from the greatest blight that plagues her. Unnatural creatures, brought to a sort of perverted life, despoil our fair world. Destroy them -- 5 Exodus Overseers and 2 Exodus Minions.
RefusalMessage =
1072771; // You must serve Sosaria with all your heart and strength. Your unwillingness does not reflect favorably upon you.
InProgressMessage = 1072779; // Every moment you procrastinate, these unnatural creatures damage Sosaria.
CompletionMessage = 1074167; // Well done! Well done, indeed. You are worthy to become an arcanist!
Objectives.Add(new KillObjective(5, new[] { typeof(ExodusOverseer) }, "Exodus Overseers"));
Objectives.Add(new KillObjective(2, new[] { typeof(ExodusMinion) }, "Exodus Minions"));
Rewards.Add(new ItemReward(1031601, typeof(ArcaneCircleScroll))); // Arcane Circle
Rewards.Add(new ItemReward(1031600, typeof(SpellweavingBook))); // Spellweaving Spellbook
Rewards.Add(new ItemReward(1031602, typeof(GiftOfRenewalScroll))); // Gift of Renewal
}
public override bool IsChainTriggered => true;
public override void GetRewards(MLQuestInstance instance)
{
Spellweaving.AwardTo(instance.Player);
base.GetRewards(instance);
}
}
#endregion
#region Discipline
public class Discipline : MLQuest
{
public Discipline()
{
Activated = true;
Title = 1072752; // Discipline
Description =
1072761; // Learning to weave spells and control the forces of nature requires sacrifice, discipline, focus, and an unwavering dedication to Sosaria herself. We do not teach the unworthy. They do not comprehend the lessons nor the dedication required. If you would walk the path of the Arcanist, then you must do as I require without hesitation or question. Your first task is to rid our home of rats ... 50 of them in the next hour.
RefusalMessage = 1072767; // *nods* Not everyone has the temperament to undertake the way of the Arcanist.
InProgressMessage = 1072773; // You waste my time. The task is simple. Kill 50 rats in an hour.
// No completion message
Objectives.Add(new TimedKillObjective(TimeSpan.FromHours(1), 50, new[] { typeof(Rat) }, "rats",
new QuestArea(1074807, "Sanctuary"))); // Sanctuary
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(NeedsOfTheManySanctuary);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 0, "Koole"), new Point3D(6257, 110, -10), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 0, "Koole"), new Point3D(6257, 110, -10), Map.Trammel);
}
}
public class NeedsOfTheManySanctuary : MLQuest
{
public NeedsOfTheManySanctuary()
{
Activated = true;
Title = 1072754; // Needs of the Many - Sanctuary
Description =
1072763; // The way of the Arcanist involves cooperation with others and a strong commitment to the community of your people. We have run low on the cotton we use to pack wounds and our people have need. Bring 10 bales of cotton to me.
RefusalMessage = 1072768; // You endanger your progress along the path with your unwillingness.
InProgressMessage = 1072775; // I care not where you acquire the cotton, merely that you provide it.
CompletionMessage = 1074110; // Well, where are the cotton bales?
Objectives.Add(new CollectObjective(10, typeof(Cotton), 1023577)); // bale of cotton
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(MakingAContributionSanctuary);
public override bool IsChainTriggered => true;
}
public class MakingAContributionSanctuary : MLQuest
{
public MakingAContributionSanctuary()
{
Activated = true;
Title = 1072755; // Making a Contribution - Sanctuary
Description = 1072764; // We must look to the defense of our people! Bring boards for new arrows.
RefusalMessage =
1072769; // The people have need of these items. You are proving yourself inadequate to the demands of a member of this community.
InProgressMessage = 1072776; // The requirements are simple -- 250 boards.
CompletionMessage = 1074152; // Well, where are the boards?
Objectives.Add(new CollectObjective(250, typeof(Board), 1027127)); // board
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(SuppliesForSanctuary);
public override bool IsChainTriggered => true;
}
public class SuppliesForSanctuary : MLQuest
{
public SuppliesForSanctuary()
{
Activated = true;
Title = 1072756; // Supplies for Sanctuary
Description =
1072765; // With health and defense assured, we need look to the need of the community for food and drink. We will feast on fish steaks, sweets, and wine. You will supply the ingredients, the cooks will prepare the meal. As a Arcanist relies upon others to build focus and lend their power to her workings, the community needs the effort of all to survive.
RefusalMessage = 1072770; // Do not falter now. You have begun to show promise.
InProgressMessage = 1072777; // Where are the items you've been tasked to supply for the feast?
CompletionMessage = 1074158; // Ah good, you're back. We're eager for the feast.
Objectives.Add(new CollectObjective(1, typeof(SackFlour), 1024153)); // sack of flour
Objectives.Add(new CollectObjective(10, typeof(JarHoney), 1022540)); // jar of honey
Objectives.Add(new CollectObjective(20, typeof(FishSteak), 1022427)); // fish steak
Rewards.Add(new DummyReward(1074872)); // The opportunity to learn the ways of the Arcanist.
}
public override Type NextQuest => typeof(TheHumanBlight);
public override bool IsChainTriggered => true;
}
public class TheHumanBlight : MLQuest
{
public TheHumanBlight()
{
Activated = true;
Title = 1072757; // The Human Blight
Description =
1072766; // You have proven your desire to contribute to the community and serve the people. Now you must demonstrate your willingness to defend Sosaria from the greatest blight that plagues her. The human vermin that have spread as a disease, despoiling the land are the greatest blight we face. Kill humans and return to me the proof of your actions. Bring me 30 human ears.
RefusalMessage =
1072771; // You must serve Sosaria with all your heart and strength. Your unwillingness does not reflect favorably upon you.
InProgressMessage = 1072778; // Why do you delay? The human blight must be averted.
CompletionMessage = 1074160; // I will take the ears you have collected now. Hand them here.
Objectives.Add(new CollectObjective(30, typeof(SeveredHumanEars), 1032591)); // severed human ears
Rewards.Add(new ItemReward(1031601, typeof(ArcaneCircleScroll))); // Arcane Circle
Rewards.Add(new ItemReward(1031600, typeof(SpellweavingBook))); // Spellweaving Spellbook
Rewards.Add(new ItemReward(1031602, typeof(GiftOfRenewalScroll))); // Gift of Renewal
}
public override bool IsChainTriggered => true;
public override void GetRewards(MLQuestInstance instance)
{
Spellweaving.AwardTo(instance.Player);
base.GetRewards(instance);
}
}
#endregion
#region Friend of the Fey
public class FriendOfTheFey : MLQuest
{
public FriendOfTheFey()
{
Activated = true;
Title = 1074284; // Friend of the Fey
Description =
1074286; // The children of Sosaria understand the dedication and committment of an arcanist -- and will, from time to time offer their friendship. If you would forge such a bond, first seek out a goodwill offering to present. Pixies enjoy sweets and pretty things.
RefusalMessage = 1074288; // There's always time to make new friends.
InProgressMessage = 1074290; // I think honey and some sparkly beads would please a pixie.
CompletionMessage = 1074292; // What have we here? Oh yes, gifts for a pixie.
Objectives.Add(new CollectObjective(1, typeof(Beads), 1024235)); // beads
Objectives.Add(new CollectObjective(1, typeof(JarHoney), 1022540)); // jar of honey
Rewards.Add(new DummyReward(
1074874)); // The opportunity to prove yourself worthy of learning to Summon Fey. (Sufficient spellweaving skill is required to cast the spell)
}
public override Type NextQuest => typeof(TokenOfFriendship);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Synaeva"), new Point3D(7064, 350, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Synaeva"), new Point3D(7064, 350, 0), Map.Trammel);
}
}
public class TokenOfFriendship : MLQuest
{
public TokenOfFriendship()
{
Activated = true;
Title = 1074293; // Token of Friendship
Description =
1074297; // I've wrapped your gift suitably to present to a pixie of discriminating taste. Seek out Arielle and give her your offering.
RefusalMessage = 1074310; // I'll hold onto this gift in case you change your mind.
InProgressMessage =
1074315; // Arielle wanders quite a bit, so I'm not sure exactly where to find her. I'm sure she's going to love your gift.
CompletionMessage = 1074319; // *giggle* Oooh! For me?
Objectives.Add(new DeliverObjective(typeof(GiftForArielle), 1, "gift for Arielle", typeof(Arielle)));
Rewards.Add(new DummyReward(
1074874)); // The opportunity to prove yourself worthy of learning to Summon Fey. (Sufficient spellweaving skill is required to cast the spell)
}
public override Type NextQuest => typeof(Alliance);
public override bool IsChainTriggered => true;
}
public class Alliance : MLQuest
{
public Alliance()
{
Activated = true;
Title = 1074294; // Alliance
Description = 1074298; // *giggle* Mean reapers make pixies unhappy. *light-hearted giggle* You could fix them!
RefusalMessage = 1074311; // *giggle* Okies!
InProgressMessage = 1074316; // Mean reapers are all around trees! *giggle* You fix them up, please.
CompletionNotice = CompletionNoticeShortReturn;
Objectives.Add(new KillObjective(20, new[] { typeof(Reaper) }, "reapers"));
Rewards.Add(new ItemReward(1031607, typeof(SummonFeyScroll))); // Summon Fey
}
public override bool IsChainTriggered => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.PlayerContext.SummonFey = true;
instance.Player.SendLocalizedMessage(1074320, "",
0x2A); // *giggle* Mean reapers got fixed! Pixie friend now! *giggle* When mean thingies bother you, a brave pixie will help.
base.GetRewards(instance);
}
}
#endregion
#region Fiendish Friends
public class FiendishFriends : MLQuest
{
public FiendishFriends()
{
Activated = true;
Title = 1074283; // Fiendish Friends
Description =
1074285; // It is true that a skilled arcanist can summon and dominate an imp to serve at their pleasure. To do such at thing though, you must master the miserable little fiends utterly by demonstrating your superiority. Rough them up some -- kill a few. That will do the trick.
RefusalMessage = 1074287; // You're probably right. They're not worth the effort.
InProgressMessage = 1074289; // Surely you're not having difficulties swatting down those annoying pests?
// TODO: Verify
CompletionMessage = 1074291; // Hah! You showed them!
Objectives.Add(new KillObjective(50, new[] { typeof(Imp) }, "imps"));
Rewards.Add(new DummyReward(
1074873)); // The opportunity to prove yourself worthy of learning to Summon Fiends. (Sufficient spellweaving skill is required to cast the spell)
}
public override Type NextQuest => typeof(CrackingTheWhipI);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 0, "ElderBrae"), new Point3D(6266, 124, 0), Map.Felucca);
PutSpawner(new Spawner(1, 5, 10, 0, 0, "ElderBrae"), new Point3D(6266, 124, 0), Map.Trammel);
}
}
// TODO: Verify
public class CrackingTheWhipI : MLQuest
{
public CrackingTheWhipI()
{
Activated = true;
Title = 1074295; // Cracking the Whip
Description =
1074300; // Now that you've shown those mini pests your might, you should collect suitable implements to use to train your summoned pet. I suggest a stout whip.
RefusalMessage = 1074313; // Heh. Changed your mind, eh?
InProgressMessage =
1074317; // Well, hurry up. If you don't get a whip how do you expect to control the little devil?
CompletionMessage = 1074321; // That's a well-made whip. No imp will ignore the sting of that lash.
Objectives.Add(new CollectObjective(1, typeof(StoutWhip), "Stout Whip"));
Rewards.Add(new DummyReward(
1074873)); // The opportunity to prove yourself worthy of learning to Summon Fiends. (Sufficient spellweaving skill is required to cast the spell)
}
public override Type NextQuest => typeof(CrackingTheWhipII);
public override bool IsChainTriggered => true;
}
// TODO: Verify
public class CrackingTheWhipII : MLQuest
{
public CrackingTheWhipII()
{
Activated = true;
Title = 1074295; // Cracking the Whip
Description =
1074302; // Now you just need to make the little buggers fear you -- if you can slay an arcane daemon, you'll earn their subservience.
RefusalMessage = 1074314; // If you're not up for it, so be it.
InProgressMessage = 1074318; // You need to vanquish an arcane daemon before the imps will fear you properly.
Objectives.Add(new KillObjective(1, new[] { typeof(ArcaneDaemon) }, 1029733)); // arcane demon
Rewards.Add(new ItemReward(1031608, typeof(SummonFiendScroll))); // Summon Fiend
}
public override bool IsChainTriggered => true;
public override void GetRewards(MLQuestInstance instance)
{
instance.PlayerContext.SummonFiend = true;
instance.Player.SendLocalizedMessage(1074322, "",
0x2A); // You've demonstrated your strength, got a means of control, and taught the imps to fear you. You're ready now to summon them.
base.GetRewards(instance);
}
}
#endregion
#region Mobiles
[QuesterName("Aeluva (The Heartwood)")]
public class Aeluva : BaseCreature
{
[Constructible]
public Aeluva()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2.0)
{
Title = "the arcanist";
Race = Race.Elf;
Female = true;
Body = 606;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
SetSkill(SkillName.Meditation, 60.0, 80.0);
SetSkill(SkillName.Focus, 60.0, 80.0);
AddItem(new ElvenShirt());
AddItem(new Kilt(Utility.RandomNondyedHue())); // Note: OSI hue = 0x1516, typo?
AddItem(new ElvenBoots());
AddItem(new Circlet());
}
public Aeluva(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Aeluva";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
/*
* 1074206 - Excuse me please traveler, might I have a little of your time?
* 1074207 - Good day to you friend! Allow me to offer you a fabulous opportunity!  Thrills and adventure await!
*/
MLQuestSystem.Tell(this, pm, Utility.Random(1074206, 2));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Koole (Sanctuary)")]
public class Koole : BaseCreature
{
[Constructible]
public Koole()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2.0)
{
Title = "the arcanist";
Race = Race.Elf;
Body = 605;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
SetSkill(SkillName.Meditation, 60.0, 80.0);
SetSkill(SkillName.Focus, 60.0, 80.0);
Item item;
item = new LeafChest();
item.Hue = 443;
AddItem(item);
item = new LeafArms();
item.Hue = 443;
AddItem(item);
AddItem(new LeafTonlet());
AddItem(new ThighBoots(Utility.RandomAnimalHue()));
AddItem(new RoyalCirclet());
}
public Koole(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Koole";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074186, // Come here, I have a task.
1074218 // Hey! I want to talk to you, now.
));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Synaeva (The Heartwood)")]
public class Synaeva : BaseCreature
{
[Constructible]
public Synaeva()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2.0)
{
Title = "the arcanist";
Race = Race.Elf;
Female = true;
Body = 606;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
SetSkill(SkillName.Meditation, 60.0, 80.0);
SetSkill(SkillName.Focus, 60.0, 80.0);
Item item = new RavenHelm();
item.Hue = Utility.RandomGreenHue();
AddItem(item);
AddItem(new FemaleLeafChest());
AddItem(new LeafArms());
AddItem(new LeafTonlet());
AddItem(new ElvenBoots());
AddItem(new WildStaff());
}
public Synaeva(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Synaeva";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074223); // Have you done it yet?  Oh, I havent told you, have I?
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Elder Brae (Sanctuary)")]
public class ElderBrae : BaseCreature
{
[Constructible]
public ElderBrae()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2.0)
{
Title = "the wise";
Race = Race.Elf;
Female = true;
Body = 606;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
SetSkill(SkillName.Meditation, 60.0, 80.0);
SetSkill(SkillName.Focus, 60.0, 80.0);
AddItem(new GemmedCirclet());
AddItem(new FemaleElvenRobe(Utility.RandomBrightHue()));
AddItem(new ElvenBoots(Utility.RandomAnimalHue()));
}
public ElderBrae(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Elder Brae";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, Utility.RandomList(
1074215, // Dont test my patience you sniveling worm!
1074218 // Hey!  I want to talk to you, now.
));
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,166 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class TheAncientWorld : MLQuest
{
public TheAncientWorld()
{
Activated = true;
Title = 1074534; // The Ancient World
Description =
1074535; // The lore of my people mentions Mondain many times. In one tale, it is revealed that he created and enslaved a race -- a sort of man bull, known as a 'minotaur'. The tales speak of mighty warriors who charged with blood-soaked horns into the heat of battle. But, alas, the fate of the bull-men is unknown after the rupture. Will you seek information about their civilization?
RefusalMessage = 1074538; // I am disappointed, but I respect your decision.
InProgressMessage =
1074539; // A traveler has told me that worshippers of Mondain still exist and wander the land. Perhaps their lore speaks of whether the bull-men survived. I do not think they share their secrets gladly. You may need to be 'persuasive'.
CompletionMessage = 1074542; // What have you found?
Objectives.Add(new CollectObjective(1, typeof(FragmentOfAMap), "fragment of a map"));
Rewards.Add(new DummyReward(1074876)); // Knowledge of the legendary minotaur.
}
public override Type NextQuest => typeof(TheGoldenHorn);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 5, "LorekeeperBroolol"), new Point3D(7011, 375, 0), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 5, "LorekeeperBroolol"), new Point3D(7011, 375, 0), Map.Felucca);
}
}
public class TheGoldenHorn : MLQuest
{
public TheGoldenHorn()
{
Activated = true;
Title = 1074543; // The Golden Horn
Description =
1074545; // Ah ha! You see here ... and over here ... The map fragment places the city of the bull-men, Labyrinth, on that piece of Sosaria that was thrown into the sky. Hmmm, I would have you go there and find any artifacts that remain that help tell the story. But, legend speaks of a mighty barrier to prevent invasion of the city. Take this map to Braen and explain the problem. Perhaps he can devise a solution.
RefusalMessage = 1074538; // I am disappointed, but I respect your decision.
InProgressMessage = 1074547; // Braen is nearby, run and speak with him.
CompletionMessage = 1074549; // Yes? What do you want? I'm very busy.
Objectives.Add(new DeliverObjective(typeof(FragmentOfAMapDelivery), 1, "fragment of a map", typeof(Braen)));
Rewards.Add(new DummyReward(1074876)); // Knowledge of the legendary minotaur.
}
public override Type NextQuest => typeof(Bullish);
public override bool IsChainTriggered => true;
}
public class Bullish : MLQuest
{
public Bullish()
{
Activated = true;
Title = 1074550; // Bullish
Description =
1074552; // Oh, I see. I will need some materials to infuse you with the essence of a bull-man, so you can fool their defenses. The most similar beast to the original Baratarian bull that the minotaur were bred from is undoubtedly the mighty Gaman, native to the Lands of the Feudal Lords. I need horns, in great quantity to undertake this magic.
RefusalMessage = 1074554; // Oh come now, don't be afraid. The magic won't harm you.
InProgressMessage =
1074555; // I cannot grant you the ability to pass through the bull-men's defenses without the gaman horns.
CompletionMessage =
1074556; // You've returned at last! Give me just a moment to examine what you've brought and I can perform the magic that will allow you enter the Labyrinth.
Objectives.Add(new CollectObjective(20, typeof(GamanHorns), "gaman horns"));
Rewards.Add(new DummyReward(1074876)); // Knowledge of the legendary minotaur.
}
public override Type NextQuest => typeof(LostCivilization);
public override bool IsChainTriggered => true;
}
public class LostCivilization : MLQuest
{
public LostCivilization()
{
Activated = true;
Title = 1074823; // Lost Civilization
Description =
1074825; // *whew* It is done! The fierce essence of the bull has been infused into your aura. You are able now to breach the ancient defenses of the city. Go forth and seek the minotaur -- and then return with wonderous tales and evidence of your visit to the Labyrinth.
RefusalMessage =
1074827; // As you wish. I can't understand why you'd pass up such a remarkable opportunity. Think of the adventures you would have.
InProgressMessage =
1074828; // You won't reach the minotaur city by loitering around here! What are you waiting for? You need to get to Malas and find the access point for the island. You'll be renowned for your discovery!
CompletionMessage =
1074829; // Oh! You've returned at last! I can't wait to hear the tales ... but first, let me see those artifacts. You've certainly earned this reward.
Objectives.Add(new CollectObjective(3, typeof(MinotaurArtifact), "minotaur artifacts"));
Rewards.Add(ItemReward.Strongbox);
}
public override bool IsChainTriggered => true;
}
#endregion
#region Mobiles
[QuesterName("Broolol (The Heartwood)")]
public class LorekeeperBroolol : BaseCreature
{
[Constructible]
public LorekeeperBroolol()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the keeper of tradition";
Race = Race.Elf;
BodyValue = 0x25E;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
SetSkill(SkillName.Meditation, 60.0, 80.0);
SetSkill(SkillName.Focus, 60.0, 80.0);
AddItem(new ElvenBoots(0x70D));
AddItem(new FemaleElvenRobe(0x3A));
AddItem(new WildStaff());
}
public LorekeeperBroolol(Serial serial)
: base(serial)
{
}
public override bool IsInvulnerable => true;
public override bool CanTeach => true;
public override string DefaultName => "Lorekeeper Broolol";
public override bool CanShout => true;
public override void Shout(PlayerMobile pm)
{
MLQuestSystem.Tell(this, pm, 1074200); // Thank goodness you are here, there<72>s no time to lose.
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,131 @@
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
namespace Server.Engines.MLQuests.Definitions
{
public class TownEscort : BaseEscort
{
// Escort reward
private static readonly BaseReward m_Reward = new ItemReward("Gold", typeof(Gold), 500);
public TownEscort(int title, int progress, int destination, string region)
{
Activated = true;
Title = title;
Description =
1072287; // I seek a worthy escort. I can offer some small pay to any able bodied adventurer who can assist me. It is imperative that I reach my destination.
RefusalMessage =
1072288; // I wish you would reconsider my offer. I'll be waiting right here for someone brave enough to assist me.
InProgressMessage = progress;
Objectives.Add(new EscortObjective(new QuestArea(destination, region)));
Rewards.Add(m_Reward);
}
}
public class EscortToYew : TownEscort
{
public EscortToYew()
: base(1072275, 1072289, 1072227, "Yew")
{
}
}
public class EscortToVesper : TownEscort
{
public EscortToVesper()
: base(1072276, 1072290, 1072229, "Vesper")
{
}
}
public class EscortToTrinsic : TownEscort
{
public EscortToTrinsic()
: base(1072277, 1072291, 1072236, "Trinsic")
{
}
}
public class EscortToSkaraBrae : TownEscort
{
public EscortToSkaraBrae()
: base(1072278, 1072292, 1072235, "Skara Brae")
{
}
}
public class EscortToSerpentsHold : TownEscort
{
public EscortToSerpentsHold()
: base(1072279, 1072293, 1072238, "Serpent's Hold")
{
}
}
public class EscortToNujelm : TownEscort
{
public EscortToNujelm()
: base(1072280, 1072294, 1072237, "Nujel'm")
{
}
}
public class EscortToMoonglow : TownEscort
{
public EscortToMoonglow()
: base(1072281, 1072295, 1072232, "Moonglow")
{
}
}
public class EscortToMinoc : TownEscort
{
public EscortToMinoc()
: base(1072282, 1072296, 1072228, "Minoc")
{
}
}
public class EscortToMagincia : TownEscort
{
public EscortToMagincia()
: base(1072283, 1072297, 1072233, "Magincia")
{
}
}
public class EscortToJhelom : TownEscort
{
public EscortToJhelom()
: base(1072284, 1072298, 1072239, "Jhelom")
{
}
}
public class EscortToCove : TownEscort
{
public EscortToCove()
: base(1072285, 1072299, 1072230, "Cove")
{
}
}
public class EscortToBritain : TownEscort
{
public EscortToBritain()
: base(1072286, 1072300, 1072231, "Britain")
{
}
}
public class EscortToOcllo : TownEscort
{
public EscortToOcllo()
: base(1072312, 1072313, 1072234, "Ocllo")
{
}
}
}

View file

@ -0,0 +1,196 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
using Server.Mobiles;
namespace Server.Engines.MLQuests.Definitions
{
#region Quests
public class UnfadingMemoriesPartOne : MLQuest
{
public UnfadingMemoriesPartOne()
{
Activated = true;
Title = 1075355; // Unfading Memories
Description =
1075356; // Aargh! It<49>s just not right! It doesn<73>t capture the unique color of her hair at all! If only I had some Prismatic Amber. That would be perfect. They used to mine it in Malas, but alas, those veins ran dry some time ago. I hear it may have been found in the Prism of Light. Oh, if only there were a bold adventurer within earshot who would go to the Prism of Light and retrieve some for me!
RefusalMessage = 1075358; // Is there no one who can help a humble artist pursue his Muse?
InProgressMessage =
1075359; // You can find Prismatic Amber in the Prism of Light, located just north of the city of Nujel'm.
CompletionMessage =
1075360; // I knew it! See, it<69>s just the color I needed! Look how it brings out the highlights of her wheaten tresses!
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new CollectObjective(1, typeof(PrismaticAmber), "Prismatic Amber"));
Rewards.Add(new DummyReward(
1075357)); // The joy of contributing to a noble artistic effort, however paltry the end product.
}
public override Type NextQuest => typeof(UnfadingMemoriesPartTwo);
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Emilio"), new Point3D(1447, 1664, 10), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Emilio"), new Point3D(1447, 1664, 10), Map.Felucca);
}
}
public class UnfadingMemoriesPartTwo : MLQuest
{
public UnfadingMemoriesPartTwo()
{
Activated = true;
Title = 1075367; // Unfading Memories
Description =
1075368; // Finished! With the pigment I was able to create from the Prismatic Amber you brought me, I was able to complete my humble work. I should explain. Once, I loved a noble lady of gentleness and refinement, who possessed such beauty that I have found myself unable to love another to this day. But it was from afar that I admired her, for it is not for one so lowly as I to pay court to the likes of her. You have heard of the fair Thalia, Lady of Nujel'm? No? Well, she was my Muse, my inspiration, and when I heard she was to be married, I lost whatever pitiful talent I possessed. I felt I must compose a portrait of her, my masterpiece, or I would never be able to paint again. You, my friend, have helped me complete my work. Now I ask another favor of you. Will you take it to her as a wedding gift? She will probably reject it, but I must make the offer.
RefusalMessage =
1075370; // Alright then, you have already helped me more than I deserved. I shall find someone else to undertake this task.
InProgressMessage =
1075371; // The wedding is taking place in the palace in Nujel'm. You will likely find her there.
CompletionMessage =
1075372; // I<>m sorry, I<>m getting ready to be married. I don<6F>t have time to . . . what<61>s that you say?
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(PortraitOfTheBride), 1, "Portrait of the Bride", typeof(Thalia)));
Rewards.Add(new DummyReward(1075369)); // The Artist<73>s gratitude.
}
public override Type NextQuest => typeof(UnfadingMemoriesPartThree);
public override bool IsChainTriggered => true;
}
public class UnfadingMemoriesPartThree : MLQuest
{
public UnfadingMemoriesPartThree()
{
Activated = true;
OneTimeOnly = true;
Title = 1075373; // Unfading Memories
Description =
1075374; // Emilio painted this? It is absolutely wonderful! I used to love looking at his paintings, but I don<6F>t remember him creating anything like this before. Would you be so kind as to carry a letter to him? Fate may have it that I am to marry another, yet I am compelled to reveal to him that his love was not entirely unrequited.
RefusalMessage = 1075376; // Very well, then. If you will excuse me, I need to get ready.
InProgressMessage =
1075377; // Take the letter back to the Artist<73>s Guild in Britain, if you would do me this kindness.
CompletionMessage =
1075378; // She said what? She thinks what of me? I . . . I can<61>t believe it! All this time, I never knew how she truly felt. Thank you, my friend. I believe now I will be able to paint once again. Here, take this bleach. I was going to use it to destroy all of my works. Perhaps you can find a better use for it now.
CompletionNotice = CompletionNoticeShort;
Objectives.Add(new DeliverObjective(typeof(BridesLetter), 1, "Bride's Letter", typeof(Emilio)));
Rewards.Add(new ItemReward(1075375, typeof(Bleach))); // Bleach
}
public override bool IsChainTriggered => true;
public override void Generate()
{
base.Generate();
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Thalia"), new Point3D(3675, 1322, 20), Map.Trammel);
PutSpawner(new Spawner(1, 5, 10, 0, 3, "Thalia"), new Point3D(3675, 1322, 20), Map.Felucca);
}
}
#endregion
#region Mobiles
[QuesterName("Emilio (Britain)")] // OSI's description is "Artist", not very helpful
public class Emilio : BaseCreature
{
[Constructible]
public Emilio()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Tortured Artist";
Race = Race.Human;
BodyValue = 0x190;
Female = false;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Sandals(0x72B));
AddItem(new LongPants(0x525));
AddItem(new FancyShirt(0x53F));
AddItem(new FloppyHat(0x58C));
AddItem(new BodySash(0x1C));
}
public Emilio(Serial serial)
: base(serial)
{
}
public override string DefaultName => "Emilio";
public override bool IsInvulnerable => true;
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
[QuesterName("Thalia (Nujel'm)")] // OSI's description is "Bride", not very helpful
public class Thalia : BaseCreature
{
[Constructible]
public Thalia()
: base(AIType.AI_Vendor, FightMode.None, 2, 1, 0.5, 2)
{
Title = "the Bride";
Race = Race.Human;
BodyValue = 0x191;
Female = true;
Hue = Race.RandomSkinHue();
InitStats(100, 100, 25);
Utility.AssignRandomHair(this);
AddItem(new Backpack());
AddItem(new Sandals(0x8FD));
AddItem(new FancyDress(0x8FD));
}
public Thalia(Serial serial)
: base(serial)
{
}
public override string DefaultName => "Thalia";
public override bool IsInvulnerable => true;
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
#endregion
}

View file

@ -0,0 +1,95 @@
using System;
using Server.Engines.MLQuests.Objectives;
using Server.Engines.MLQuests.Rewards;
using Server.Items;
namespace Server.Engines.MLQuests.Definitions
{
public class WarriorsOfTheGemkeeper : MLQuest
{
public WarriorsOfTheGemkeeper()
{
Activated = true;
Title = 1074536; // Warriors of the Gemkeeper
Description =
1074537; // Here we honor the Gemkeeper's Apprentice and seek to aid her efforts against the humans responsible for the death of her teacher - and the destruction of the elven way of life. Our tales speak of a fierce race of servants of the Gemkeeper, the men-bulls whose battle-skill was renowned. It is desireable to discover the fate of these noble creatures after the Rupture. Will you seek information?
RefusalMessage = 1074063; // Fine then, I'm shall find another to run my errands then.
InProgressMessage =
1074540; // I care not how you get the information. Kill as many humans as you must ... but find the fate of the minotaurs. Perhaps another of the Gemkeeper's servants has the knowledge we seek.
CompletionMessage = 1074542; // What have you found?
Objectives.Add(new CollectObjective(1, typeof(FragmentOfAMap), "fragment of a map"));
Rewards.Add(new DummyReward(1074876)); // Knowledge of the legendary minotaur.
}
public override Type NextQuest => typeof(CloseEnough);
}
public class CloseEnough : MLQuest
{
public CloseEnough()
{
Activated = true;
Title = 1074544; // Close Enough
Description =
1074546; // Ah ha! You see here ... and over here ... The map fragment places the city of the bull-men, Labyrinth, on that piece of Sosaria that was thrown into the sky. Hmmm, I would have you go there and seek out these warriors to see if they might join our cause. But, legend speaks of a mighty barrier to prevent invasion of the city. Take this map to Canir and explain the problem. Perhaps she can devise a solution.
RefusalMessage = 1074063; // Fine then, I'm shall find another to run my errands then.
InProgressMessage = 1074548; // Canir is nearby, run and speak with her.
CompletionMessage = 1074549; // Yes? What do you want? I'm very busy.
Objectives.Add(new DeliverObjective(typeof(FragmentOfAMapDelivery), 1, "fragment of a map", typeof(Canir)));
Rewards.Add(new DummyReward(1074876)); // Knowledge of the legendary minotaur.
}
public override Type NextQuest => typeof(TakingTheBullByTheHorns);
public override bool IsChainTriggered => true;
}
public class TakingTheBullByTheHorns : MLQuest
{
public TakingTheBullByTheHorns()
{
Activated = true;
Title = 1074551; // Taking the Bull by the Horns
Description =
1074553; // Interesting. I believe I have a way. I will need some materials to infuse you with the essence of a bull-man, so you can fool their defenses. The most similar beast to the original Baratarian bull that the minotaur were bred from is undoubtedly the mighty Gaman, native to the Lands of the Feudal Lords. I need horns, in great quantity to undertake this magic.
RefusalMessage = 1074554; // Oh come now, don't be afraid. The magic won't harm you.
InProgressMessage =
1074555; // I cannot grant you the ability to pass through the bull-men's defenses without the gaman horns.
CompletionMessage =
1074556; // You've returned at last! Give me just a moment to examine what you've brought and I can perform the magic that will allow you enter the Labyrinth.
Objectives.Add(new CollectObjective(20, typeof(GamanHorns), "gaman horns"));
Rewards.Add(new DummyReward(1074876)); // Knowledge of the legendary minotaur.
}
public override Type NextQuest => typeof(EmissaryToTheMinotaur);
public override bool IsChainTriggered => true;
}
public class EmissaryToTheMinotaur : MLQuest
{
public EmissaryToTheMinotaur()
{
Activated = true;
Title = 1074824; // Emissary to the Minotaur
Description =
1074825; // *whew* It is done! The fierce essence of the bull has been infused into your aura. You are able now to breach the ancient defenses of the city. Go forth and seek the minotaur -- and then return with wonderous tales and evidence of your visit to the Labyrinth.
RefusalMessage =
1074827; // As you wish. I can't understand why you'd pass up such a remarkable opportunity. Think of the adventures you would have.
InProgressMessage =
1074828; // You won't reach the minotaur city by loitering around here! What are you waiting for? You need to get to Malas and find the access point for the island. You'll be renowned for your discovery!
CompletionMessage =
1074829; // Oh! You've returned at last! I can't wait to hear the tales ... but first, let me see those artifacts. You've certainly earned this reward.
Objectives.Add(new CollectObjective(3, typeof(MinotaurArtifact), "minotaur artifacts"));
Rewards.Add(ItemReward.Strongbox);
}
public override bool IsChainTriggered => true;
}
}