|
المشاركات 1,993 |
+التقييم 1.01 |
تاريخ التسجيل Jun 2019 |
الاقامة |
نظام التشغيل ويندوز 0 |
رقم العضوية 279 |
#region ChangePassword
case 10561: //Repack-Co SoOon
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Hello. I'm the one that was choosen to set/change your account password .you can change you password for 14 letters nubmer or characters. Conquer Ghost World V1 V1");
dialog.Option("I want to change the password.", 2);
dialog.Option("Forget it.", 255);
dialog.Send();
break;
}
#region Change password
case 2:
{
if (client.Account.Password != "")
{
dialog.Text("Please insert the old password you have now.");
dialog.Input("Here:", 6, 14);
dialog.Option("Forget it.", 255);
}
else
{
dialog.Text("You don't have a password set.");
dialog.Option("Alright.", 255);
}
dialog.Send();
break;
}
case 6:
{
if (client.Account.Password != "")
{
if (npcRequest.Input.Length <= 14)
{
if (client.Account.Password == npcRequest.Input)
{
dialog.Text("Please insert the New password again.");
dialog.Input("Here:", 7, 14);
dialog.Option("Forget it.", 255);
}
else
{
dialog.Text("Wrong password. Try again?");
dialog.Input("Here:", 6, 14);
dialog.Option("Alright.", 255);
}
}
else
{
dialog.Text("Invalid password, please try again.");
dialog.Input("Here:", 6, 14);
dialog.Option("Alright.", 255);
}
}
else
{
dialog.Text("You don't have a password set.");
dialog.Option("Alright.", 255);
}
dialog.Send();
break;
}
case 7:
{
if (client.Account.Password != "")
{
if (npcRequest.Input.Length <= 14)
{
client.TempPassword = npcRequest.Input;
dialog.Text("Please insert the New password again.");
dialog.Input("Here:", 8, 14);
dialog.Option("Forget it.", 255);
}
else
{
dialog.Text("Invalid password, please try again.");
dialog.Input("Here:", 7, 14);
dialog.Option("Alright.", 255);
}
}
else
{
dialog.Text("You don't have a password set.");
dialog.Option("Alright.", 255);
}
dialog.Send();
break;
}
case 8:
{
if (client.Account.Password != "")
{
if (npcRequest.Input.Length <= 14)
{
if (client.TempPassword == npcRequest.Input)
{
client.TempPassword = "";
client.Account.Password = npcRequest.Input;
client.Account.Save();
dialog.Text("Password changed!");
dialog.Option("Thank you.", 255);
}
else
{
dialog.Text("Wrong password.");
dialog.Input("Here:", 8, 14);
dialog.Option("Alright.", 255);
}
}
else
{
dialog.Text("Invalid password, please try again.");
dialog.Input("Here:", 8, 14);
dialog.Option("Alright.", 255);
}
}
else
{
dialog.Text("You don't have a password set.");
dialog.Option("Alright.", 255);
}
dialog.Send();
break;
}
#endregion Change password
}
break;
}
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
ثغرة سى بى اس فى السورس | body2020 | مشكلات السيرفيرات كونكر الشخصيه | 7 | 2021-08-11 06:15 AM |
حاجه بخصوص الراجل بتاع الجينج الي في المركت | uncelsam | مشكلات السيرفيرات كونكر الشخصيه | 3 | 2019-07-11 02:34 PM |
ان بي سي الراجل بتاع نجوم الاسلحة | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2019-06-28 05:20 AM |
حل مشكلة ثغرة الصحوه قبل ال 5 ثواني | محمد ياسر | تطوير سيرفرات كونكر | 1 | 2019-05-25 06:48 AM |