本文整理匯總了C#中Zepheus.FiestaLib.Networking.Packet.TryReadLong方法的典型用法代碼示例。如果您正苦於以下問題:C# Packet.TryReadLong方法的具體用法?C# Packet.TryReadLong怎麽用?C# Packet.TryReadLong使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zepheus.FiestaLib.Networking.Packet
的用法示例。
在下文中一共展示了Packet.TryReadLong方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TradeChangeMoney
public static void TradeChangeMoney(ZoneClient pClient, Packet pPacket)
{
long money;
if(!pPacket.TryReadLong(out money))
return;
if (pClient.Character.Trade != null)
{
pClient.Character.Trade.ChangeMoneyToTrade(pClient.Character, money);
}
}
示例2: TakeGuildMoney
public static void TakeGuildMoney(ZoneClient client, Packet packet)
{
long TakeMoney;
if (!packet.TryReadLong(out TakeMoney))
return;
if (client.Character.Guild == null)
return;
client.Character.Guild.GuildMoney -= TakeMoney;
client.Character.Guild.GuildStore.SendRemoveFromGuildStore(Data.GuildStoreAddFlags.Gold, client.Character.Character.Name, TakeMoney, client.Character.Guild.GuildMoney);
}
示例3: GiveGuildMoney
public static void GiveGuildMoney(ZoneClient client, Packet packet)
{
long GiveMoney;
if (!packet.TryReadLong(out GiveMoney))
return;
if (client.Character.Guild == null)
return;
if (client.Character.Character.Money < GiveMoney)
{
//todo response you have money to low
return;
}
client.Character.Character.Money -= GiveMoney;
client.Character.ChangeMoney(client.Character.Character.Money);
client.Character.Guild.GuildMoney += GiveMoney;
client.Character.Guild.GuildMoneySave();
client.Character.Guild.GuildStore.SendAddGuildStore(Data.GuildStoreAddFlags.Gold, client.Character.Character.Name, GiveMoney, client.Character.Guild.GuildMoney);
}