本文整理匯總了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;
}