here images
help please here this code for any help please
Code:
//---------TRocarDB------//711738
#region TrocarDB
case 3000508:
{
Npcs dialog = new Npcs(client);
dialog.Text("Trocar DragonBall ou DBScroll");
dialog.Option("DragonBall", 1);
dialog.Option("DBScroll", 2);
// dialog.Option("White horse", 3);
dialog.Option("Agora nao.", 255);
dialog.Send();
break;
}
case 1:
{
if (client.Inventory.Contains(1088000, 1))
{
client.Inventory.Remove(1088000, 1);
client.Entity.ConquerPoints += 215;
}
else
{
client.Send(new Message("Voce nao Tem DragonBall", Color.White, 255));
// dialog.Send();
}
break;
}
case 2:
{
if (client.Inventory.Contains(720028, 1))
{
client.Inventory.Remove(720028, 1);
client.Entity.ConquerPoints += 2150;
}
else
{
client.Send(new Message("Voce nao Tem DBScroll", Color.White, 255));
// dialog.Send();
}
break;
}
#endregion
//---------TrocarDB------//
Help me






