servuo/Scripts/Quests/MasteringtheSoulforge.cs
TrueUO f608d123a4
Bug Fixes (#4762)
-Fixed issue where client helpers could bypass the container gump and add items directly to the seed box
-SearedFireAntGoo is no longer stackable
-Blue NPC's (mainly vendors, not initial innocent) can no longer be attacked on trammel maps
-Aggressors/Aggressed from pet masters now works properly. This was suspected to crated large numbers to redundant aggressor/aggressed added to a mobiles aggressor/aggressed lists
-Aggressive action for healing a mobile while fighting another mobile has been re-enabled
-AuraDamage is now a harmful act, ie those affected will aggro on your pet!
-MLDryads should no longer attack other wild creatures during Blackthorn Invasion Instance
-More code cleanup
2020-04-21 17:25:24 -07:00

33 lines
No EOL
956 B
C#

using Server.Items;
namespace Server.Engines.Quests
{
public class MasteringtheSoulforge : BaseQuest
{
public MasteringtheSoulforge()
{
AddObjective(new ObtainObjective(typeof(RelicFragment), "Relic Fragments", 50, 0x2DB3));
AddReward(new BaseReward(typeof(ScrollBox2), "Knowledge"));
}
public override object Title => "Mastering the Soulforge";
public override object Description => 1112529;
public override object Refuse => 1112549;
public override object Uncomplete => 1112550;
public override object Complete => 1112551;
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();
}
}
}