Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
119
Scripts/Items/Quest/PrismOfLightAdmissionTicket.cs
Normal file
119
Scripts/Items/Quest/PrismOfLightAdmissionTicket.cs
Normal file
@@ -0,0 +1,119 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class PrismOfLightAdmissionTicket : PeerlessKey
|
||||
{
|
||||
[Constructable]
|
||||
public PrismOfLightAdmissionTicket()
|
||||
: base(0x14EF)
|
||||
{
|
||||
this.Weight = 1.0;
|
||||
}
|
||||
|
||||
public PrismOfLightAdmissionTicket(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override int LabelNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
return 1074340;
|
||||
}
|
||||
}// Prism of Light Admission Ticket
|
||||
public override void GetProperties(ObjectPropertyList list)
|
||||
{
|
||||
base.GetProperties(list);
|
||||
|
||||
list.Add(1074841); // Double click to transport out of the Prism of Light dungeon
|
||||
list.Add(1075269); // Destroyed when dropped
|
||||
}
|
||||
|
||||
public override void OnDoubleClick(Mobile from)
|
||||
{
|
||||
if (this.IsChildOf(from.Backpack))
|
||||
{
|
||||
if (from.Region.IsPartOf("Prism of Light"))
|
||||
this.Teleport(from);
|
||||
else
|
||||
from.SendLocalizedMessage(1074840); // This ticket can only be used while you are in the Prism of Light dungeon.
|
||||
}
|
||||
}
|
||||
|
||||
public override bool DropToWorld(Mobile from, Point3D p)
|
||||
{
|
||||
bool ret = base.DropToWorld(from, p);
|
||||
|
||||
if (ret)
|
||||
this.DestroyItem(from);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
public override bool DropToMobile(Mobile from, Mobile target, Point3D p)
|
||||
{
|
||||
bool ret = base.DropToMobile(from, target, p);
|
||||
|
||||
if (ret)
|
||||
this.DestroyItem(from);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
public override bool DropToItem(Mobile from, Item target, Point3D p)
|
||||
{
|
||||
bool ret = base.DropToItem(from, target, p);
|
||||
|
||||
if (ret && this.Parent != from.Backpack)
|
||||
this.DestroyItem(from);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
public virtual void DestroyItem(Mobile from)
|
||||
{
|
||||
from.SendLocalizedMessage(500424); // You destroyed the item.
|
||||
this.Teleport(from);
|
||||
this.Decay();
|
||||
}
|
||||
|
||||
public virtual void Teleport(Mobile from)
|
||||
{
|
||||
if (from.Region != null && from.Region.IsPartOf("Prism of Light"))
|
||||
{
|
||||
// teleport pets
|
||||
Region region = from.Region.GetRegion("Prism of Light");
|
||||
|
||||
if (region != null)
|
||||
{
|
||||
List<Mobile> mobiles = region.GetMobiles();
|
||||
|
||||
foreach (Mobile m in mobiles)
|
||||
if (m is BaseCreature && ((BaseCreature)m).ControlMaster == from)
|
||||
m.MoveToWorld(new Point3D(3785, 1107, 20), this.Map);
|
||||
}
|
||||
|
||||
// teleport player
|
||||
from.MoveToWorld(new Point3D(3785, 1107, 20), this.Map);
|
||||
}
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.Write((int)0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user