#region Booth Item Seller
case 56428:
switch (npcRequest.OptionID)
{
case 0:
dialog.Text("Hello, I'm the Booth item seller, Do you want to buy the booth item?");
dialog.Option("Yes!", 1);
dialog.Option("Just passing by.", byte.MaxValue);
break;
case 1:
if (client.Entity.ConquerPoints >= 50000)
{
if (client.Inventory.Count < 40)
{
client.Entity.ConquerPoints -= 50000;
client.Inventory.Add(3004458, 0, 1);
}
else
{
dialog.Text("Sorry There is no free spaces in your inventory!");
dialog.Option("Shit.", byte.MaxValue);
}
}
else
{
dialog.Text("Sorry you don't have enough cps you need 50000");
dialog.Option("Shit.", byte.MaxValue);
}
break;
}
break;
#endregion
[/COLOR]