|  | 
 
 
|  المشاركات 1,940 |  +التقييم 0.81 |  تاريخ التسجيل Apr 2019 |  الاقامة https://www.facebook.com/daany |  نظام التشغيل |  رقم العضوية 1 | 
 NPC question
				NPC question
		
		
	 
#region question
                case 252525:
                    {
                        switch (npcRequest.OptionID)
                        {
                            case 0:
                                {
                                    dialog.Text("Hey there " + client.Entity.Name + " i can help you to find good maps to lvling up and hunt just choose what u want?.");
                                    dialog.Option("Go [Reborn]", 1);
                                    dialog.Option("Go [Quest] ", 2);
                                    dialog.Option("Go [Job Center] ", 3);
                                    dialog.Option("Go [Level 140] ", 4);
                                    dialog.Option("Go [Shoping] ", 5);
                                    dialog.Option("Go [Big-Monster] ", 6);
                                    dialog.Option("Go [Hunting Map] ", 7);
                                    dialog.Option("Go [Donation] ", 8);
                                    dialog.Option("Go [BlessItem -1] ", 9);
                                    dialog.Option("Go [Open Jiang] ", 10);
                                    dialog.Option("Go [Change [Name-Gender] ", 11);
                                    dialog.Option("Go [Skill Steed] ", 12);
                                    dialog.Option("Go [Bank-Cps] ", 13);
                                    dialog.Option("Just Passing By ", 255);
                                    dialog.Send();
                                    break;
                                }
                            case 1:
                                {
                                    client.Entity.Teleport(1002, 247, 363);
                                    break;
                                }
                            case 2:
                                {
                                    client.Entity.Teleport(1002, 321, 256);
                                    break;
                                }
                            case 3:
                                {
                                    client.Entity.Teleport(1004, 59, 88);
                                    break;
                                }
                            case 4:
                                {
                                    client.Entity.Teleport(1002, 251, 371);
                                    break;
                                }
                            case 5:
                                {
                                    client.Entity.Teleport(1002, 328, 304);
                                    break;
                                }
                            case 6:
                                {
                                    client.Entity.Teleport(10137, 96, 411);
                                    break;
                                }
                            case 7:
                                {
                                    client.Entity.Teleport(1002, 397, 342);
                                    break;
                                }
                            case 8:
                                {
                                    client.Entity.Teleport(1002, 363, 303);
                                    break;
                                }
                            case 9:
                                {
                                    client.Entity.Teleport(1002, 363, 303);
                                    break;
                                }
                            case 10:
                                {
                                    client.Entity.Teleport(1002, 342, 415);
                                    break;
                                }
                            case 11:
                                {
                                    client.Entity.Teleport(1002, 305, 410);
                                    break;
                                }
                            case 12:
                                {
                                    client.Entity.Teleport(1002, 431, 403);
                                    break;
                                }
                            case 13:
                                {
                                    client.Entity.Teleport(1002, 363, 303);
                                    break;
                                }
                        }
                        break;
                    }
                #endregion