#region Go Poker case 30173: { switch (npcRequest.OptionID) { case 0: { dialog.Text("Hello " + client.Entity.Name + " you want to Go Poker"); dialog.Option(" Yes Plese ", 11); } break; case 11: { client.Entity.Teleport(3053, 200, 200); } break; } break; } #endregion
#region Poker case 27838: case 27831: case 27832: case 27833: case 27834: { switch (npcRequest.OptionID) { case 0: { dialog.Text("Hi, I can teleport you to the poker room. Where you can enjoy yourself in the Texas Hold`em Poker. Wish you a good luck and good health."); dialog.Option("Enter~Poker~Room.", 1); dialog.Option("Enter~VIP~Hall.", 2); dialog.Option("Enter~Roulette~Room.", 3); dialog.Avatar(175); dialog.Send(); break; } case 1: { client.Entity.Teleport(3053, 200, 200); break; } case 2: { client.Entity.Teleport(8881, 55, 62); break; } case 3: { client.Entity.Teleport(1858, 55, 62); break; } } break; } #endregion