|
المشاركات 1,941 |
+التقييم 0.96 |
تاريخ التسجيل Apr 2019 |
الاقامة Egypt |
نظام التشغيل windows 7 |
رقم العضوية 1 |
private static void DropItem(ItemUsage itemUsage, GameState client)
private static void DropItem(ItemUsage itemUsage, GameState client)
{
if (client.Booth != null)
{
// client.Send(new NpcReply(6, " Sorry Friend You Cant Drop it") { OptionID = 0xff }.ToArray());
client.Send(new NpcReply(6, "Sorry you cant drop items while you in Booth") { OptionID = 0xff }.ToArray());
}
else
{
IConquerItem item = null;
if (client.Inventory.TryGetItem(itemUsage.UID, out item) && (item.ID != 0))
{
ConquerItemInformation information = new ConquerItemInformation(item.ID, 0);
if ((item.Lock == 0) && !item.Suspicious)
{
if ((information.BaseInformation.Type == ConquerItemBaseInformation.ItemType.Dropable) && !item.Bound)
{
ushort x = client.Entity.X;
ushort y = client.Entity.Y;
if (client.Map.SelectCoordonates(ref x, ref y))
{
FloorItem item2 = new FloorItem(true)
{
Item = item,
ItemID = item.ID,
ItemColor = item.Color,
MapID = client.Map.ID,
MapObjType = MapObjectType.Item,
X = x,
Y = y,
Type = 1,
OnFloor = Time32.Now,
UID = FloorItem.FloorUID.Next
};
while (client.Map.Npcs.ContainsKey(item2.UID))
{
item2.UID = FloorItem.FloorUID.Next;
}
client.SendScreenSpawn(item2, true);
client.Map.AddFloorItem(item2);
client.Inventory.Remove(item, Enums.ItemUse.Remove);
}
}
else
{
client.Inventory.Remove(item, Enums.ItemUse.Remove);
}
}
}
}
}
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
عاوز امنع الاسكلات في الماركت | YoussefJoe | مشكلات السيرفيرات كونكر الشخصيه | 0 | 2021-09-19 03:12 AM |
عاوز امنع اي حد يفتح pk في ماب معين | Mr3bdallahPro | مشكلات السيرفيرات كونكر الشخصيه | 2 | 2020-05-01 09:18 PM |
عاوز امنع ال فى اى بى او الغى الفى اى بى | bosha1 | مشكلات السيرفيرات كونكر الشخصيه | 2 | 2020-03-09 02:38 PM |
نظام الجي ام يرمي هدايه في وقت معين | محمد ياسر | تطوير سيرفرات كونكر | 4 | 2019-07-23 12:06 PM |
امنع الشتايم فى سيرفرك | محمد ياسر | تطوير سيرفرات كونكر | 0 | 2019-04-24 10:28 AM |