Logging of staff crafting items, Fixes for the OSI client changes The potion stacking stuff BaseWeapon fix, so that damage increase things don't multiply themselves. admin gump fixes for Firewall Various display tweaks for weight SoS no longer spawn in Tokuno Hiryu hues happified to OSI standards staff now see alliance chat correctly Play barkeeper text increased per OSI Various other OSI skill requirement changes Various unimplemented features of the SE moves EventSink for when the client version is received from client. Client validation moved out of the core. Client version validation now has options to ignore/kick/warn/annoy. Automagically tries to detect current client. Reverted the delayeddamagecontext back to OSI standards. Can no longer use bags of sending in jail. MagerySpell implemented. Now only Magery spells have a circle, and various other properties of 'em. TransformationSpellHelper now implemented. Things moved around for this. Spells now need a Timespan for the cast delay, instead of arbitrarily based on Circle. Circle doesn't make sense for non-Magery spells! Alot of the spellweaving spells added to OSI standards.
84 lines
No EOL
2.3 KiB
C#
84 lines
No EOL
2.3 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Mobiles;
|
|
using Server.Network;
|
|
using Server.Gumps;
|
|
|
|
namespace Server.Gumps
|
|
{
|
|
public class PetResurrectGump : Gump
|
|
{
|
|
private BaseCreature m_Pet;
|
|
private double m_HitsScalar;
|
|
|
|
public PetResurrectGump( Mobile from, BaseCreature pet )
|
|
: this( from, pet, 0.0 )
|
|
{
|
|
}
|
|
|
|
public PetResurrectGump( Mobile from, BaseCreature pet, double hitsScalar ) : base( 50, 50 )
|
|
{
|
|
from.CloseGump( typeof( PetResurrectGump ) );
|
|
|
|
m_Pet = pet;
|
|
m_HitsScalar = hitsScalar;
|
|
|
|
AddPage( 0 );
|
|
|
|
AddBackground( 10, 10, 265, 140, 0x242C );
|
|
|
|
AddItem( 205, 40, 0x4 );
|
|
AddItem( 227, 40, 0x5 );
|
|
|
|
AddItem( 180, 78, 0xCAE );
|
|
AddItem( 195, 90, 0xCAD );
|
|
AddItem( 218, 95, 0xCB0 );
|
|
|
|
AddHtmlLocalized( 30, 30, 150, 75, 1049665, false, false ); // <div align=center>Wilt thou sanctify the resurrection of:</div>
|
|
AddHtml( 30, 70, 150, 25, String.Format( "<div align=CENTER>{0}</div>", pet.Name ), true, false );
|
|
|
|
AddButton( 40, 105, 0x81A, 0x81B, 0x1, GumpButtonType.Reply, 0 ); // Okay
|
|
AddButton( 110, 105, 0x819, 0x818, 0x2, GumpButtonType.Reply, 0 ); // Cancel
|
|
}
|
|
|
|
public override void OnResponse( NetState state, RelayInfo info )
|
|
{
|
|
if ( m_Pet.Deleted || !m_Pet.IsBonded || !m_Pet.IsDeadPet )
|
|
return;
|
|
|
|
Mobile from = state.Mobile;
|
|
|
|
if ( info.ButtonID == 1 )
|
|
{
|
|
if ( m_Pet.Map == null || !m_Pet.Map.CanFit( m_Pet.Location, 16, false, false ) )
|
|
{
|
|
from.SendLocalizedMessage( 503256 ); // You fail to resurrect the creature.
|
|
return;
|
|
}
|
|
else if( m_Pet.Region != null && m_Pet.Region.IsPartOf( "Khaldun" ) ) //TODO: Confirm for pets, as per Bandage's script.
|
|
{
|
|
from.SendLocalizedMessage( 1010395 ); // The veil of death in this area is too strong and resists thy efforts to restore life.
|
|
return;
|
|
}
|
|
|
|
m_Pet.PlaySound( 0x214 );
|
|
m_Pet.FixedEffect( 0x376A, 10, 16 );
|
|
m_Pet.ResurrectPet();
|
|
|
|
double decreaseAmount;
|
|
|
|
if( from == m_Pet.ControlMaster )
|
|
decreaseAmount = 0.1;
|
|
else
|
|
decreaseAmount = 0.2;
|
|
|
|
for ( int i = 0; i < m_Pet.Skills.Length; ++i ) //Decrease all skills on pet.
|
|
m_Pet.Skills[i].Base -= decreaseAmount;
|
|
|
|
if( !m_Pet.IsDeadPet && m_HitsScalar > 0 )
|
|
m_Pet.Hits = (int)(m_Pet.HitsMax * m_HitsScalar);
|
|
}
|
|
|
|
}
|
|
}
|
|
} |