本文整理汇总了C#中Server.Items.Item.PrepareUpdateData方法的典型用法代码示例。如果您正苦于以下问题:C# Item.PrepareUpdateData方法的具体用法?C# Item.PrepareUpdateData怎么用?C# Item.PrepareUpdateData使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Server.Items.Item
的用法示例。
在下文中一共展示了Item.PrepareUpdateData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PutObjectInBackpack
public bool PutObjectInBackpack( Item it, int n, Slots at, bool refresh )
{
bool put = false;
if ( at == Slots.None || Items[ (int)at ] != null )
{
put = true;
at = FindAFreeSlot();
}
if ( at == Slots.None )
{
this.InventoryFailed( 27 );
return false;
}
if ( n == 0 && it.Stackable > 1 )
it.MaxCount = it.Stackable;
else
it.MaxCount = n;
// on verifi les quetes en cours pour les deliveries
CheckDeliveries( it );
if ( put )
{
foreach( Item i in Items )
{
if ( i != null && i.Id == it.Id && i.MaxCount + it.MaxCount <= i.Stackable )
{
i.MaxCount += n;
if ( refresh && account != null )
i.SendTinyUpdate( new int[]{14}, new object[]{ i.MaxCount }, this );
return true;
}
}
}
Items[ (int)at ] = it;
if ( refresh && account != null )
{
int offset = 0;
Converter.ToBytes( 1, tempBuff, ref offset );
Converter.ToBytes( (byte)0, tempBuff, ref offset );
it.PrepareUpdateData( tempBuff, ref offset, UpdateType.UpdateFull, this );
//ItemsUpdate( tempBuff, ref offset );
byte []res = Zip.Compress( tempBuff, 0, offset );
byte []data = new byte[ res.Length + 8 ];
Buffer.BlockCopy( res, 0, data, 8, res.Length );
int t = 4;
Converter.ToBytes( (int)offset, data, ref t );
account.Handler.Send( 0x1F6, data, res.Length + 6 );
ItemsUpdate( new int[] { (int)at } );
}
return true;
}