|
|
المشاركات 1,941 |
+التقييم 0.96 |
تاريخ التسجيل Apr 2019 |
الاقامة Egypt |
نظام التشغيل windows 7 |
رقم العضوية 1 |
[Item7230091]
FrameAmount=1
Frame0=data/ItemMinIcon/7230091.dds
[7230091]
FrameAmount=1
Frame0=data/MapItemIcon/7230091.dds
7230091@@Xor~Custom~Bag@@0@@0@@0@@0@@0@@0@@0@@0@@9@@0@@0@@5200500@@0@@0@@0@@0@@0@@0@@0@@1@@1@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@1@@100000@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@0@@[Item]@@Xor~Bag~Open~and~get~rare~Item~xD@@5@@0@@0@@0@@0@@500@@
void UseItem
#region Xor Bag # 1
case 7230091:
{
if (client.Inventory.Count < 25)
{
if (client.Entity.VIPLevel == 6)
{
client.Inventory.AddBound(722057, 0, 10); //PoweExpBall [Xor]
client.Inventory.AddBound(1200002, 0, 5); //PrayingStoneLarge [Xor]
client.Entity.BConquerPoints += 1000000;
client.Send(new Message("You have got 10 PowerExp Balls , PrayingStone and 1kk Bound Cps ! Say Thanks To Xor :)", System.Drawing.Color.Red, Message.MsgSystem));
client.Inventory.Remove(item, ShekoProject.Game.Enums.ItemUse.Remove);
}
else
{
client.Send(new Message("you must be VIP leve 6 .. To be able to open this Bag !", System.Drawing.Color.Red, Message.MsgSystem));
}
}
else
client.Send(new Message("You need 15 Free Spaces in your Inventory !.", System.Drawing.Color.Red, Message.TopLeft));
break;
}
#endregion
public bool AddBound(uint id, byte plus, byte times)
{
try
{
Database.ConquerItemInformation infos = new Database.ConquerItemInformation(id, plus);
while (times > 0)
{
if (Count <= 39)
{
Interfaces.IConquerItem item = new Network.GamePackets.ConquerItem(true);
item.ID = id;
item.Plus = plus;
item.Durability = item.MaximDurability = infos.BaseInformation.Durability;
item.Bound = true;
Add(item, Enums.ItemUse.CreateAndAdd);
}
else
{
return false;
}
times--;
}
}
catch (Exception e)
{
Program.SaveException(e);
}
return true;
}
|
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
شرح ازاي تعمل دومين مجاني | محمودمحمدسالم | البرامج والودرات | 30 | 2024-10-29 07:34 AM |
تعلم ازاي تغير شكل Effect NPC | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2024-08-06 06:38 PM |
ايتم الخاصه بي انك تعمل شوب في اي حتا عايزها | Hassan Emprator | تطوير سيرفرات كونكر | 1 | 2019-09-28 07:53 AM |
ازاى تعمل ارض لتجميع السى بى اس للناس الفى اى بى | Ahmeed Sheeko | تطوير سيرفرات كونكر | 3 | 2019-08-13 03:28 PM |
ازاي تعمل مهمة يوميه زي السيرفرات الكبيره | M.H.B[X-Coder]X | تطوير سيرفرات كونكر | 7 | 2019-07-12 07:55 PM |