|
المشاركات 1,372 |
+التقييم 0.68 |
تاريخ التسجيل Apr 2019 |
الاقامة شرقيه/زقازيق |
نظام التشغيل |
رقم العضوية 30 |
#region InnerPower[H]
case 999055:
{
switch (npcRequest.OptionID)
{
case 0:
{
//client.Entity.Update(_String.Effect, "gamemain", true);
dialog.Text("Hello. iam GM Game Inferno You need InnerPower [H] Server #10.");
//dialog.Option("Item's", 51);
dialog.Option("Point's", 52);
dialog.Option("I*don't*care.", 255);
dialog.Send();
break;
}
case 51://ninja**
{
client.Inventory.Add(3005365, 0, 1);
client.Inventory.Add(3005366, 0, 1);
client.Inventory.Add(3005395, 0, 1);
client.Inventory.Add(3005396, 0, 1);
client.Inventory.Add(3005397, 0, 1);
client.Inventory.Add(3005398, 0, 1);
client.Inventory.Add(3005399, 0, 1);
client.Inventory.Add(3005400, 0, 1);
client.Inventory.Add(3005401, 0, 1);
client.Inventory.Add(3007113, 0, 1);
client.Inventory.Add(3007114, 0, 1);
client.Inventory.Add(3007115, 0, 1);
client.Inventory.Add(3007116, 0, 1);
client.Inventory.Add(3007117, 0, 1);
client.Inventory.Add(3007230, 0, 1);
client.Inventory.Add(3007231, 0, 1);
client.Inventory.Add(3007232, 0, 1);
break;
}
case 52://LeeLong*
{
if (client.Entity.ConquerPoints > 2500)
client.Entity.ConquerPoints -= 2500;
client.Entity.InnerPower.Potency += 10000;
break;
}
}
break;
}
#endregion
client.Entity.InnerPower.Potency += 10000;
#region System InnerPower +items-Check
case 1547:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Hey [" + client.Entity.Name + "] I can sell Items InnerPower. all you have to choose and Check your Points.");
dialog.Text("Your~InnerPower~Count~is: ");
dialog.Text("<tip color=d7ff41 desc=Inner#Power>[" + client.Entity.InnerPower.Potency + "]</tip>: \n");
dialog.Option("UniversalConcept(A)&(B) For " + CPanal.itemsInnerPower + " CPS", 1);
dialog.Option("SecretofBreath(A)&(B) For " + CPanal.itemsInnerPower + " CPS", 2);
dialog.Option("DragonTactics(A)&(B) For " + CPanal.itemsInnerPower + " CPS", 3);
dialog.Option("DoctrineofDeity(A)(B)(C) For " + CPanal.itemsInnerPower + " CPS", 4);
dialog.Option("DemonRider(A)(B) For " + CPanal.itemsInnerPower + " CPS", 5);
dialog.Option("BoundlessHeart(A)(B)(C) For " + CPanal.itemsInnerPower + " CPS", 6);
dialog.Option("PuzzleofLife(A)(B)(C) For " + CPanal.itemsInnerPower + " CPS", 7);
dialog.Option("Points Inner For " + CPanal.itemsInnerPower + " CPS", 8);
dialog.Option("Let~me~think.", 255);
break;
}
#region UniversalConcept(A)&(B)
case 1:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3005365, 0, 1);
client.Inventory.AddBoundItem(3005366, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a UniversalConcept(A)(B) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region SecretofBreath(A)&(B)
case 2:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3005395, 0, 1);
client.Inventory.AddBoundItem(3005396, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a SecretofBreath(A)(B) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region DragonTactics(A)&(B)
case 3:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3005397, 0, 1);
client.Inventory.AddBoundItem(3005398, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a DragonTactics(A)(B) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region DoctrineofDeity(A)(B)(C)
case 4:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3005399, 0, 1);
client.Inventory.AddBoundItem(3005400, 0, 1);
client.Inventory.AddBoundItem(3005401, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a DoctrineofDeity(A)(B)(C) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region DemonRider(A)(B)
case 5:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3007113, 0, 1);
client.Inventory.AddBoundItem(3007114, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a DemonRider(A)(B) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region BoundlessHeart(A)(B)(C)
case 6:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3007115, 0, 1);
client.Inventory.AddBoundItem(3007116, 0, 1);
client.Inventory.AddBoundItem(3007117, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a BoundlessHeart(A)(B)(C) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region PuzzleofLife(A)(B)(C)
case 7:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3007230, 0, 1);
client.Inventory.AddBoundItem(3007231, 0, 1);
client.Inventory.AddBoundItem(3007232, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a PuzzleofLife(A)(B)(C) in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
#region PackPointsInner
case 8:
{
if (client.Entity.ConquerPoints >= CPanal.itemsInnerPower)
{
client.Entity.ConquerPoints -= CPanal.itemsInnerPower;
client.Inventory.AddBoundItem(3007110, 0, 1);
_String str = new _String(true);
str.UID = client.Entity.UID;
str.Type = _String.Effect;
str.Texts.Add("eidolon");
str.TextsCount = 1;
client.Entity.SendScreen(str);
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Congratz you got a PackPointsInner in your inventory.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
else
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "You don't have Enough [" + CPanal.itemsInnerPower + "] Cps.");
npc.OptionID = 255;
client.Send(npc.ToArray());
}
break;
}
#endregion
}
break;
}
#endregion
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
انبي سي الاحصنه | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2022-02-18 04:49 AM |
ممكن npc innerpower | abdocoder | مشكلات السيرفيرات كونكر الشخصيه | 4 | 2020-05-02 10:44 PM |
مساعده كود انبى سى | body2020 | مشكلات السيرفيرات كونكر الشخصيه | 2 | 2020-05-01 03:46 PM |
انبي سي | mohamedomar | مشكلات السيرفيرات كونكر الشخصيه | 3 | 2020-01-24 10:20 PM |
انبي سي توب windwalker | محمد ياسر | تطوير سيرفرات كونكر | 0 | 2019-05-13 02:55 AM |