mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
-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
33 lines
No EOL
956 B
C#
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();
|
|
}
|
|
}
|
|
} |