كود:
INSERT INTO `cq_npc` VALUES ('32011', '0', 'ItemsPromo', '0002', '8960', '1004', '0051', '0049', '0', '0');
كود:
#region Promo Seller
case 32011:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Hello! I'm StyleCo V2, I can Give You Items Promotion ");
dialog.Text("world. What do you want my brother!");
dialog.Link("EuxeniteOre", 1);
dialog.Link("Emerald", 2);
dialog.Link("MoonBox", 3);
dialog.Link("Just passing by.", 255);
dialog.Avatar(85);
dialog.Send();
break;
}
case 1:
{
if (client.Entity.ConquerPoints >= 10000)
{
client.Inventory.Add(1072031, 0, 1);
client.Entity.ConquerPoints -= 10000;
}
else
{
dialog.Text("You don't have enough 10k Cps!");
dialog.Link("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
case 2:
{
if (client.Entity.ConquerPoints >= 10000)
{
client.Inventory.Add(1080001, 0, 1);
client.Entity.ConquerPoints -= 10000;
}
else
{
dialog.Text("You don't have enough 10k Cps!");
dialog.Link("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
case 3:
{
if (client.Entity.ConquerPoints >= 10000)
{
client.Inventory.Add(721090, 0, 1);
client.Entity.ConquerPoints -= 10000;
}
else
{
dialog.Text("You don't have enough 10k Cps!");
dialog.Link("I see.", 255);
dialog.Avatar(85);
dialog.Send();
}
break;
}
}
break;
}
#endregion