|
المشاركات 483 |
+التقييم 0.24 |
تاريخ التسجيل May 2019 |
الاقامة |
نظام التشغيل |
رقم العضوية 145 |
#region Nobility
case 7611237:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Hello friend. I can help you get on the top faster! Instead of donating gold, you can give me your cps and I will automatically do the hard work for you. The exchange ratio is 1:1. That means you give me 1 CPs, I donate for you 50000 gold. The minimum amount is 1,000,000 CPs.");
dialog.Input("Insert amount:", 1, 10);
dialog.Option("No thank you.", 255);
dialog.Avatar(48);
break;
}
case 1:
{
uint input;
if (uint.TryParse(npcRequest.Input, out input))
{
if (input < 1000)
{
dialog.Text("You need to input more or atleast 6,000,000 CPs..");
dialog.Input("Insert amount:", 1, 9);
dialog.Option("No thank you.", 255);
dialog.Avatar(48);
return;
}
if (client.Entity.ConquerPoints >= input)
{
client.NpcCpsInput = input;
dialog.Text("Are you sure you want to donate " + input + " CPs? That means I will donate for you " + (((ulong)input) * 1ul) + " gold.");
dialog.Option("Yes", 2);
dialog.Option("No thank you.", 255);
dialog.Avatar(48);
}
else
{
dialog.Text("You don't have that much CPs. Try again. \nThe exchange ratio is 1:1. That means you give me 1 CPs, I donate for you 1 gold. The minimum amount is 1,000,000 CPs.");
dialog.Input("Insert amount:", 1, 9);
dialog.Option("No thank you.", 255);
dialog.Avatar(48);
}
}
else
{
dialog.Text("Try again. \nThe exchange ratio is 1:1. That means you give me 1 CPs, I donate for you 1 gold. The minimum amount is 1,000,000 CPs.");
dialog.Input("Insert amount:", 1, 9);
dialog.Option("No thank you.", 255);
dialog.Avatar(48);
}
break;
}
case 2:
{
if (client.Entity.ConquerPoints >= client.NpcCpsInput && client.NpcCpsInput != 0)
{
client.Entity.ConquerPoints -= client.NpcCpsInput;
Game.ConquerStructures.Nobility.Donate((ulong)client.NpcCpsInput, client);
client.NpcCpsInput = 0;
}
break;
}
}
break;
}
#endregion
if (input < 1000)
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
أدوات الموضوع | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
صفحة تسجيل بشكل كلاسيكي بس للسيرفرات الاونلاين | Eljoker | صفحات التسجيل كونكر اونلاين | 41 | 2024-06-24 08:37 PM |
عايز اظهر الاونلاين ع موقع الجيم | FathyFranco | مشكلات السيرفيرات كونكر الشخصيه | 11 | 2020-02-16 05:36 PM |
حل مشكلة الاصطفة لما تنزل ريبورن بتفضل ليفل عالى | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2019-09-26 10:25 PM |
فكره جديده ! خلى الدروب يزيد مع زيآده عدد الاونلاين | Mero | تطوير سيرفرات كونكر | 1 | 2019-09-26 10:24 PM |
السورس داشغال تمام واحلي سورس نزل على المنتدي ده بس فيه مشكله السورس مبيتشفلش غير من | ahmedzaher | مشكلات السيرفيرات كونكر الشخصيه | 2 | 2019-05-22 08:26 AM |