|
المشاركات 1,994 |
+التقييم 1.01 |
تاريخ التسجيل Jun 2019 |
الاقامة |
نظام التشغيل ويندوز 0 |
رقم العضوية 279 |
#region - OnlinePoints -
if (Time32.Now > client.Entity.OnlinePointStamp.AddMinutes(1))
{
client.Entity.OnlinePoints += 2;
client.Send(new Message("You have got 2 OnlinePoints For Online The Game 1 Min You Have " + client.Entity.OnlinePoints + " OnlinePoints Now", Color.Red, Message.Center));
client.Entity.OnlinePointStamp = Time32.Now;
}
#endregion
#region System Online Points By-Captin-Osama
case 14224:
{
#region -- CPs --
////////////////////////////////////////
uint CPsTB1 = 150;
uint CPs1 = 250000000;
////////////////////////////////////////
uint CPsTB2 = 300;
uint CPs2 = 500000000;
#endregion
#region -- GoldPrize --
uint GoldPrize = 2000;
#endregion
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("All (Heroes) can talk to me to learn about my offers, this offers for OnlinePoints only.");
dialog.Text("Your OnlinePoints Count is : " + client.Entity.OnlinePoints + " .");
dialog.Option("You|Need|Cps|for|OnlinePoints[150 And 300 Points]", 10);
dialog.Option("GoldPrize [2000Points]", 20);
dialog.Option("Just passing by.", 255);
dialog.Send();
break;
}
#region -- CPs --
case 10:
{
dialog.Text("You Choosed Your Way , You Want To Exchange OnlinePoints For CPs .. You Have [ " + string.Format("{0:n0}", client.Entity.OnlinePoints) + " OnlinePoints ] .");
dialog.Option("" + string.Format("{0:n0}", CPs1) + " CPs (" + string.Format("{0:n0}", CPsTB1) + " TP) .", 2);
dialog.Option("" + string.Format("{0:n0}", CPs2) + " CPs (" + string.Format("{0:n0}", CPsTB2) + " TP) .", 3);
dialog.Option("Back .", 165);
dialog.Option("Thank You .", 255);
dialog.Send();
break;
}
case 2:
{
if (client.Entity.OnlinePoints >= CPsTB1)
{
client.Entity.OnlinePoints -= CPsTB1;
client.Entity.ConquerPoints += CPs1;
client.Send(new NpcReply(NpcReply.MessageBox, "You Have Exchanged (" + string.Format("{0:n0}", CPsTB1) + " OnlinePoints) For (" + string.Format("{0:n0}", CPs1) + " CPs) ."));
}
else
{
dialog.Text("- (Sorry): You Don't Have Enough OnlinePoints To Exchanged , You Need (" + string.Format("{0:n0}", CPsTB1) + " OnlinePoints) And You Have Only [ " + string.Format("{0:n0}", client.Entity.OnlinePoints) + " OnlinePoint ] -");
dialog.Option("Back .", 165);
dialog.Option("Wait a Minute .", 255);
dialog.Send();
}
break;
}
case 3:
{
if (client.Entity.OnlinePoints >= CPsTB2)
{
client.Entity.OnlinePoints -= CPsTB2;
client.Entity.ConquerPoints += CPs2;
client.Send(new NpcReply(NpcReply.MessageBox, "You Have Exchanged (" + string.Format("{0:n0}", CPsTB2) + " OnlinePoints) For (" + string.Format("{0:n0}", CPs2) + " CPs) ."));
}
else
{
dialog.Text("- (Sorry): You Don't Have Enough OnlinePoints To Exchanged , You Need (" + string.Format("{0:n0}", CPsTB6) + " OnlinePoints) And You Have Only [ " + string.Format("{0:n0}", client.Entity.OnlinePoints) + " OnlinePoint ] -");
dialog.Option("Back .", 1);
dialog.Option("Wait a Minute .", 255);
dialog.Send();
}
break;
}
#endregion
#region GoldPrize
case 20:
{
if (client.Entity.OnlinePoints >= GoldPrize)
{
client.Entity.OnlinePoints -= GoldPrize;
client.Inventory.Add(2100075, 0, 1);
dialog.Text("Congratulations. You Get P7WeaponSoulPack for " + GoldPrize + " Points.");
client.Send(new NpcReply(NpcReply.MessageBox, "Congratulations. You Get P7WeaponSoulPack for " + GoldPrize + " Points."));
dialog.Option("Thank you.", 255);
}
else
{
dialog.Text("You Don't Have " + GoldPrize + "Points Come When You Have it ");
dialog.Option("Sorry ", 255); dialog.Send();
}
break;
}
#endregion
}
break;
}
#endregion
#region - OnlinePoints -
if (Time32.Now > client.Entity.OnlinePointStamp.AddMinutes(1))
{
client.Entity.OnlinePoints += 2;
client.Send(new Message("You have got 2 OnlinePoints For Online The Game 1 Min You Have " + client.Entity.OnlinePoints + " OnlinePoints Now", Color.Red, Message.Center));
client.Entity.OnlinePointStamp = Time32.Now;
}
#endregion
#region System Online Points By-Captin-Osama
case 14224:
{
#region -- CPs --
////////////////////////////////////////
uint CPsTB1 = 150;
uint CPs1 = 250000000;
////////////////////////////////////////
uint CPsTB2 = 300;
uint CPs2 = 500000000;
#endregion
#region -- GoldPrize --
uint GoldPrize = 2000;
#endregion
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("All (Heroes) can talk to me to learn about my offers, this offers for OnlinePoints only.");
dialog.Text("Your OnlinePoints Count is : " + client.Entity.OnlinePoints + " .");
dialog.Option("You|Need|Cps|for|OnlinePoints[150 And 300 Points]", 10);
dialog.Option("GoldPrize [2000Points]", 20);
dialog.Option("Just passing by.", 255);
dialog.Send();
break;
}
#region -- CPs --
case 10:
{
dialog.Text("You Choosed Your Way , You Want To Exchange OnlinePoints For CPs .. You Have [ " + string.Format("{0:n0}", client.Entity.OnlinePoints) + " OnlinePoints ] .");
dialog.Option("" + string.Format("{0:n0}", CPs1) + " CPs (" + string.Format("{0:n0}", CPsTB1) + " TP) .", 2);
dialog.Option("" + string.Format("{0:n0}", CPs2) + " CPs (" + string.Format("{0:n0}", CPsTB2) + " TP) .", 3);
dialog.Option("Back .", 165);
dialog.Option("Thank You .", 255);
dialog.Send();
break;
}
case 2:
{
if (client.Entity.OnlinePoints >= CPsTB1)
{
client.Entity.OnlinePoints -= CPsTB1;
client.Entity.ConquerPoints += CPs1;
client.Send(new NpcReply(NpcReply.MessageBox, "You Have Exchanged (" + string.Format("{0:n0}", CPsTB1) + " OnlinePoints) For (" + string.Format("{0:n0}", CPs1) + " CPs) ."));
}
else
{
dialog.Text("- (Sorry): You Don't Have Enough OnlinePoints To Exchanged , You Need (" + string.Format("{0:n0}", CPsTB1) + " OnlinePoints) And You Have Only [ " + string.Format("{0:n0}", client.Entity.OnlinePoints) + " OnlinePoint ] -");
dialog.Option("Back .", 165);
dialog.Option("Wait a Minute .", 255);
dialog.Send();
}
break;
}
case 3:
{
if (client.Entity.OnlinePoints >= CPsTB2)
{
client.Entity.OnlinePoints -= CPsTB2;
client.Entity.ConquerPoints += CPs2;
client.Send(new NpcReply(NpcReply.MessageBox, "You Have Exchanged (" + string.Format("{0:n0}", CPsTB2) + " OnlinePoints) For (" + string.Format("{0:n0}", CPs2) + " CPs) ."));
}
else
{
dialog.Text("- (Sorry): You Don't Have Enough OnlinePoints To Exchanged , You Need (" + string.Format("{0:n0}", CPsTB6) + " OnlinePoints) And You Have Only [ " + string.Format("{0:n0}", client.Entity.OnlinePoints) + " OnlinePoint ] -");
dialog.Option("Back .", 1);
dialog.Option("Wait a Minute .", 255);
dialog.Send();
}
break;
}
#endregion
#region GoldPrize
case 20:
{
if (client.Entity.OnlinePoints >= GoldPrize)
{
client.Entity.OnlinePoints -= GoldPrize;
client.Inventory.Add(2100075, 0, 1);
dialog.Text("Congratulations. You Get P7WeaponSoulPack for " + GoldPrize + " Points.");
client.Send(new NpcReply(NpcReply.MessageBox, "Congratulations. You Get P7WeaponSoulPack for " + GoldPrize + " Points."));
dialog.Option("Thank you.", 255);
}
else
{
dialog.Text("You Don't Have " + GoldPrize + "Points Come When You Have it ");
dialog.Option("Sorry ", 255); dialog.Send();
}
break;
}
#endregion
}
break;
}
#endregion
الذين يشاهدون محتوى الموضوع الآن : 2 ( الأعضاء 0 والزوار 2) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
مشكلة في سورس mr online | stevenayman1 | مشكلات السيرفيرات كونكر الشخصيه | 14 | 2020-04-01 12:23 AM |
zoro-online.com سهل | hamza | اعلانات السيرفيرات الشخصية | 1 | 2020-03-05 08:50 PM |
مشكله بخصوص ال points | سمير | مشكلات السيرفيرات كونكر الشخصيه | 10 | 2019-10-06 02:29 AM |
npc Study Points | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2019-06-25 10:48 PM |
Auto Cps Online System | Mero | تطوير سيرفرات كونكر | 4 | 2019-06-02 09:32 PM |