Updates to the canned evil system for the ML Pestilence spawn.
Pigments of Tokuno have also have heritage items and special material "baseclothing" added. Bag of Sending was corrected for a client change that broke the localization FetidEssence, InterredGrizzle, PerstilentBandage corrected in prep for ML champ spawns. Ilhenir corrected in various ways, imcluding unique drop added to replace the "undiscovered" unique its suppoed to drop. Pestilence added to the spawn types for champs. PlayerMobile modified to reflect new champ spawn titles.
This commit is contained in:
parent
c57b83289e
commit
8adee67ccc
8 changed files with 39 additions and 89 deletions
|
|
@ -161,7 +161,7 @@ namespace Server.Items
|
|||
}
|
||||
else if( !this.IsChildOf( from.Backpack ) )
|
||||
{
|
||||
MessageHelper.SendLocalizedMessageTo( this, from, 1054107, 0x59 ); // The bag of sending must be in your backpack.
|
||||
MessageHelper.SendLocalizedMessageTo(this, from, 1062334, 0x59); // The bag of sending must be in your backpack.
|
||||
}
|
||||
else if( this.Charges == 0 )
|
||||
{
|
||||
|
|
@ -193,7 +193,7 @@ namespace Server.Items
|
|||
}
|
||||
else if( !m_Bag.IsChildOf( from.Backpack ) )
|
||||
{
|
||||
MessageHelper.SendLocalizedMessageTo( m_Bag, from, 1054107, 0x59 ); // The bag of sending must be in your backpack.
|
||||
MessageHelper.SendLocalizedMessageTo(m_Bag, from, 1062334, 0x59); // The bag of sending must be in your backpack. 1054107 is gone from client, using generic response
|
||||
}
|
||||
else if ( m_Bag.Charges == 0 )
|
||||
{
|
||||
|
|
@ -206,7 +206,7 @@ namespace Server.Items
|
|||
|
||||
if ( !item.IsChildOf( from.Backpack ) )
|
||||
{
|
||||
MessageHelper.SendLocalizedMessageTo( m_Bag, from, 1054152, 0x59 ); // You may only send items from your backpack to your bank box.
|
||||
MessageHelper.SendLocalizedMessageTo(m_Bag, from, 1054152, 0x59); // You may only send items from your backpack to your bank box.
|
||||
}
|
||||
else if ( item is BagOfSending || item is Container )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue