|
المشاركات 1,940 |
+التقييم 0.95 |
تاريخ التسجيل Apr 2019 |
الاقامة Egypt |
نظام التشغيل windows 7 |
رقم العضوية 1 |
#region Change LordTokens
case 890:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Greetings! I'm a great seller, I have the most precious items in the entire ");
dialog.Text("world. What do you want to get?");
dialog.Option("GoldPrize [5 LordTokens]", 1);
dialog.Option("GoldCup [4 LordTokens]", 2);
dialog.Option("GoldTrophy [3 LordTokens]", 3);
dialog.Option("SilverPrize [2 LordTokens]", 4);
dialog.Option("BronzePrize [1 LordTokens]", 5);
dialog.Option("Just passing by.", 255);
dialog.Avatar(85);
dialog.Send();
break;
}
case 1:
{
if (client.Inventory.Contains(723467, 5))
{
client.Inventory.Remove(723467, 5);
client.Inventory.Add(2100075, 0, 1);
}
else
{
dialog.Text("You don't have enough 5 LordTokens !");
dialog.Option("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
case 2:
{
if (client.Inventory.Contains(723467, 4))
{
client.Inventory.Remove(723467, 4);
client.Inventory.Add(2100095, 0, 1);
}
else
{
dialog.Text("You don't have enough 4 LordTokens !");
dialog.Option("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
case 3:
{
if (client.Inventory.Contains(723467, 3))
{
client.Inventory.Remove(723467, 3);
client.Inventory.Add(2100085, 0, 1);
}
else
{
dialog.Text("You don't have enough 3 LordTokens !");
dialog.Option("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
case 4:
{
if (client.Inventory.Contains(723467, 2))
{
client.Inventory.Remove(723467, 2);
client.Inventory.Add(2100065, 0, 1);
}
else
{
dialog.Text("You don't have enough 2 LordTokens !");
dialog.Option("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
case 5:
{
if (client.Inventory.Contains(723467, 1))
{
client.Inventory.Remove(723467, 1);
client.Inventory.Add(2100055, 0, 1);
}
else
{
dialog.Text("You don't have enough 1 LordTokens !");
dialog.Option("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
}
break;
}
#endregion
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
npc تغير الباسورد | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2020-05-09 12:57 AM |
تغير الفي اي بي 7 | Hassan Emprator | تطوير سيرفرات كونكر | 2 | 2020-05-07 12:04 AM |
تغير اصتافة | khaled202020 | مشكلات السيرفيرات كونكر الشخصيه | 4 | 2020-03-30 01:48 AM |
كيفيت تغير اسم اللعبه | ElSaher | تطوير سيرفرات كونكر | 1 | 2020-02-04 04:04 AM |