81 lines
2.0 KiB
C#
81 lines
2.0 KiB
C#
//
|
|
// X-RunUO - Ultima Online Server Emulator
|
|
// Copyright (C) 2015 Pedro Pardal
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 3.0 of the License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this program.
|
|
//
|
|
|
|
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
using Server.Mobiles;
|
|
using System.Collections;
|
|
using Server.Regions;
|
|
using Server.Spells.Fourth;
|
|
using Server.Spells.Chivalry;
|
|
|
|
namespace Server.Engines.InstancedPeerless
|
|
{
|
|
public class InstanceRegion : Region
|
|
{
|
|
private PeerlessInstance m_Owner;
|
|
|
|
public PeerlessInstance Owner { get { return m_Owner; } }
|
|
|
|
public static void Initialize()
|
|
{
|
|
EventSink.Logout += new LogoutEventHandler( EventSink_Logout );
|
|
}
|
|
|
|
public override bool OnBeginSpellCast( Mobile m, ISpell s )
|
|
{
|
|
if ( s is RecallSpell || s is SacredJourneySpell )
|
|
{
|
|
m.SendLocalizedMessage( 501802 ); // Thy spell doth not appear to work...
|
|
return false;
|
|
}
|
|
|
|
return base.OnBeginSpellCast( m, s );
|
|
}
|
|
|
|
public InstanceRegion( PeerlessInstance instance )
|
|
: base( null, instance.Map, Region.Find( instance.EntranceLocation, instance.Map ), instance.RegionBounds )
|
|
{
|
|
m_Owner = instance;
|
|
|
|
Register();
|
|
}
|
|
|
|
public override TimeSpan GetLogoutDelay( Mobile m )
|
|
{
|
|
return TimeSpan.FromMinutes( 10.0 );
|
|
}
|
|
|
|
private static void EventSink_Logout( LogoutEventArgs e )
|
|
{
|
|
Mobile from = e.Mobile;
|
|
|
|
InstanceRegion region = from.Region as InstanceRegion;
|
|
|
|
if ( region != null )
|
|
region.Owner.Kick( from );
|
|
}
|
|
|
|
public override void OnExit( Mobile m )
|
|
{
|
|
m_Owner.RemoveFighter( m );
|
|
}
|
|
}
|
|
}
|