Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
111
Scripts/Mobiles/NPCs/ShrineHealer.cs
Normal file
111
Scripts/Mobiles/NPCs/ShrineHealer.cs
Normal file
@@ -0,0 +1,111 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
using Server.Gumps;
|
||||
using Server.ContextMenus;
|
||||
using Server.Network;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
public abstract class ShrineHealer : BaseHealer
|
||||
{
|
||||
public ShrineHealer()
|
||||
{
|
||||
}
|
||||
|
||||
public override bool CheckResurrect(Mobile m)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public override void GetContextMenuEntries(Mobile from, List<ContextMenuEntry> list)
|
||||
{
|
||||
base.GetContextMenuEntries(from, list);
|
||||
|
||||
if (from is PlayerMobile)
|
||||
{
|
||||
list.Add(new LockKarmaEntry((PlayerMobile)from));
|
||||
list.Add(new ResurrectEntry(from, this));
|
||||
list.Add(new TitheEntry(from));
|
||||
}
|
||||
}
|
||||
|
||||
private class ResurrectEntry : ContextMenuEntry
|
||||
{
|
||||
private Mobile m_Mobile;
|
||||
private ShrineHealer m_Vendor;
|
||||
|
||||
public ResurrectEntry(Mobile mobile, ShrineHealer vendor)
|
||||
: base(6195, 2)
|
||||
{
|
||||
m_Mobile = mobile;
|
||||
m_Vendor = vendor;
|
||||
|
||||
Enabled = !m_Mobile.Alive;
|
||||
}
|
||||
|
||||
public override void OnClick()
|
||||
{
|
||||
m_Vendor.OfferResurrection(m_Mobile);
|
||||
}
|
||||
}
|
||||
|
||||
private class LockKarmaEntry : ContextMenuEntry
|
||||
{
|
||||
private PlayerMobile m_Mobile;
|
||||
|
||||
public LockKarmaEntry(PlayerMobile mobile)
|
||||
: base(mobile.KarmaLocked ? 6197 : 6196, 2)
|
||||
{
|
||||
m_Mobile = mobile;
|
||||
}
|
||||
|
||||
public override void OnClick()
|
||||
{
|
||||
m_Mobile.KarmaLocked = !m_Mobile.KarmaLocked;
|
||||
|
||||
if (m_Mobile.KarmaLocked)
|
||||
m_Mobile.SendLocalizedMessage(1060192); // Your karma has been locked. Your karma can no longer be raised.
|
||||
else
|
||||
m_Mobile.SendLocalizedMessage(1060191); // Your karma has been unlocked. Your karma can be raised again.
|
||||
}
|
||||
}
|
||||
|
||||
private class TitheEntry : ContextMenuEntry
|
||||
{
|
||||
private Mobile m_Mobile;
|
||||
|
||||
public TitheEntry(Mobile mobile)
|
||||
: base(6198, 2)
|
||||
{
|
||||
m_Mobile = mobile;
|
||||
|
||||
Enabled = m_Mobile.Alive;
|
||||
}
|
||||
|
||||
public override void OnClick()
|
||||
{
|
||||
if (this.m_Mobile.CheckAlive())
|
||||
this.m_Mobile.SendGump(new TithingGump(this.m_Mobile, 0));
|
||||
}
|
||||
}
|
||||
|
||||
public ShrineHealer(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user