Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
56
Scripts/Services/Tomb of Kings/ToKTeleporter.cs
Normal file
56
Scripts/Services/Tomb of Kings/ToKTeleporter.cs
Normal file
@@ -0,0 +1,56 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Mobiles;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class ToKTeleporter : Item
|
||||
{
|
||||
private static readonly Point3D m_Dest = new Point3D(35, 215, -5);
|
||||
|
||||
[Constructable]
|
||||
public ToKTeleporter()
|
||||
: base(0x1BC3)
|
||||
{
|
||||
Name = "Tomb of Kings Antechamber Teleporter";
|
||||
|
||||
Visible = false;
|
||||
Movable = false;
|
||||
}
|
||||
|
||||
public ToKTeleporter(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool OnMoveOver(Mobile m)
|
||||
{
|
||||
if (m.IsPlayer())
|
||||
{
|
||||
BaseCreature.TeleportPets(m, m_Dest, Map.TerMur);
|
||||
m.MoveToWorld(m_Dest, Map.TerMur);
|
||||
|
||||
m.PlaySound(0x1FE);
|
||||
Effects.SendLocationParticles(m, 0x3728, 10, 10, 0x139F);
|
||||
|
||||
m.SendLocalizedMessage(1112182); // You have been returned to the antechamber of the tomb, directly in front of the Serpent's Breath.
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
return base.OnMoveOver(m);
|
||||
}
|
||||
|
||||
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