كود:
#region Title Storage Manager By michaelJackon
case 471613:
{
dialog.Avatar(218);
switch (npcRequest.OptionID)
{
case 0://michaelJackon
{
dialog.Text("Hello " + client.Entity.Name + ", How are you ? I am the manager of the new Titles / Wings");
dialog.Text("Do you want to buy Wings / Titles ? [Your points are " + client.Entity.TitlePoints);
dialog.Option("Wings", 1);
dialog.Option("Titles", 2);
dialog.Option("Active", 100);
dialog.Avatar(218);
dialog.Send();
break;//michaelJackon
}
case 2://michaelJackon
{
dialog.Text("Hello Select if you Wont for titles ");
dialog.Text("Do you want to buy titles ? [Your points are " + client.Entity.TitlePoints);
dialog.Option("Overlord Title", 3);
dialog.Option("Grandmaster Title", 4);
dialog.Option("RisingStar Title", 5);
dialog.Option("Victor Title", 6);
dialog.Option("Conqueror Title", 7);
dialog.Option("Talent Title", 8);
dialog.Option("Fashionist Title", 9);
dialog.Option("SwiftChaser Title", 10);
dialog.Option("Handsome Title", 11);
dialog.Option("Scholar Title", 12);
dialog.Option("Beauty Title", 13);
dialog.Option("Goddess Title", 14);
dialog.Option("Fairy Title", 15);
dialog.Option("Wise Title", 16);
dialog.Option("EARTH Knight Title", 17);
dialog.Option("SKY Knight Title", 18);
dialog.Option("Glory Knight Title", 19);
dialog.Option("Paladin Title", 20);
dialog.Option("Next", 39);
dialog.Avatar(218);
dialog.Send();
break;//Titles
}
case 39://michaelJackon
{
dialog.Text("Hello Select if you Wont for Titles ");
dialog.Text("Do you want to buy Titles ? [Your points are " + client.Entity.TitlePoints);
dialog.Option("World Renowned Title", 29);
dialog.Option("World Dominator Title", 30);
dialog.Option("Big Fan Title", 31);
dialog.Option("Euro Collector Title", 32);
dialog.Option("Invincible Title", 33);
dialog.Option("Monkey Rider Title", 35);
dialog.Option("Solar Rider Title", 36);
dialog.Option("Lunar Rider Title", 37);
dialog.Option("Saint Rider Title", 38);
dialog.Option("Legendary Title", 40);
dialog.Option("Peerless Title", 41);
dialog.Option("Outstanding Title", 42);
dialog.Option("Expert Title", 43);
dialog.Option("Great Perfection Title", 44);
dialog.Option("Peerless Beauty Title", 45);
dialog.Option("Super Idol Title", 46);
dialog.Option("Most Radiant Title", 47);
dialog.Option("Most Attractive Title", 48);
dialog.Option("Next", 50);
dialog.Avatar(218);
dialog.Send();
break;//Titles
}
case 50://michaelJackon
{
dialog.Text("Hello Select if you Wont for Titles ");
dialog.Text("Do you want to buy Titles ? [Your points are " + client.Entity.TitlePoints);
dialog.Option("Immortal Fate Title", 51);
dialog.Option("Successor to Legends Title", 52);
dialog.Option("Fashion Icon Title", 53);
dialog.Option("Fashion Idol Title", 54);
dialog.Option("Fashion Master Title", 55);
dialog.Option("Honored Hero Title", 56);
dialog.Option("Brilliant Leader Title", 57);
dialog.Option("PokerKing Title", 58);
dialog.Option("PokerLord Title", 59);
dialog.Option("PokerMaster Title", 60);
dialog.Option("PokerStar Title", 61);
dialog.Option("KingTeam Title", 62);
dialog.Option("DominatorTeam Title", 63);
dialog.Option("PowerTeam Title", 64);
dialog.Option("EliteTeam Title", 65);
dialog.Option("Love for ten years Title", 71);
dialog.Option("Love never goes away Title", 72);
dialog.Option("Love makes you mad Title", 73);
dialog.Option("Full Level Runes Title", 74);
dialog.Option("Professional Title", 76);
dialog.Option("Elite Shooter Title", 77);
dialog.Option("King of Football Title", 78);
dialog.Option("thanks", 255);
dialog.Avatar(218);
dialog.Send();
break;//Titles
}
case 1://michaelJackon
{
dialog.Text("Hello Select if you Wont for Wings ");
dialog.Text("Do you want to buy wings ? [Your points are " + client.Entity.TitlePoints);
dialog.Option("CTF Wing", 21);
dialog.Option("5 S Garment Wing", 22);
dialog.Option("5 S Mount Aramor Wing", 23);
dialog.Option("ElitePkChampion Wing", 24);
dialog.Option("Fairy Wing", 25);
dialog.Option("Planet Wing", 26);
dialog.Option("VioletLightning Wing", 27);
dialog.Option("VioletCloud Wing", 28);
dialog.Option("Supreme Power Wing", 34);
dialog.Option("Romance Wing", 49);
dialog.Option("Emerald Glow Wing", 66);
dialog.Option("Orange Glow Wing", 67);
dialog.Option("Flame Glow Wing", 68);
dialog.Option("Bright Glow Wing", 69);
dialog.Option("Siren Song Wing", 70);
dialog.Option("Love butterfly Wing", 75);
dialog.Option("thanks", 255);
dialog.Avatar(218);
dialog.Send();
break;//Wings
}
#region Active
case 100:
{
new CoatStorage().Login(client);
new TitleStorage().Login(client);
break;
}
#endregion
#region Wing
case 21://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 400)
{
client.Entity.TitlePoints -= 400;
client.Entity.WTitles.AddTitle(6002, 21, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 400 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 22://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 200)
{
client.Entity.TitlePoints -= 200;
client.Entity.WTitles.AddTitle(6003, 22, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 200 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 23://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(6004, 23, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 24://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 400)
{
client.Entity.TitlePoints -= 400;
client.Entity.WTitles.AddTitle(6001, 20, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 400 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 25://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(6005, 6005, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 26://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 500)
{
client.Entity.TitlePoints -= 500;
client.Entity.WTitles.AddTitle(6009, 6009, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 500 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 27://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 500)
{
client.Entity.TitlePoints -= 500;
client.Entity.WTitles.AddTitle(6008, 6008, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 500 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 28://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(6007, 6007, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 34://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(6011, 6011, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 49://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(6012, 6012, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 66://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(6013, 6013, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 67://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(6014, 6014, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 68://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(6015, 6015, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 69://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(6016, 6016, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 70://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(6017, 6017, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 75://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(6018, 6018, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
#endregion
#region Title
case 3://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 200)
{
client.Entity.TitlePoints -= 200;
client.Entity.WTitles.AddTitle(1, 1000, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 200 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 4://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2018, 1, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 5://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 270)
{
client.Entity.TitlePoints -= 270;
client.Entity.WTitles.AddTitle(2001, 2, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 270 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 6://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 250)
{
client.Entity.TitlePoints -= 250;
client.Entity.WTitles.AddTitle(2002, 3, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 250 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 7://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 230)
{
client.Entity.TitlePoints -= 230;
client.Entity.WTitles.AddTitle(2003, 4, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 230 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 8://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 200)
{
client.Entity.TitlePoints -= 200;
client.Entity.WTitles.AddTitle(2004, 5, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 200 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 9://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2005, 6, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 10://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2006, 7, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 11://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2024, 2024, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 12://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2023, 2023, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 13://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2022, 2022, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 14://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2021, 2021, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 15://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2020, 2020, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 16://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2025, 2025, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 17://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2028, 2028, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 18://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2029, 2029, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 19://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2030, 2030, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 20://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2031, 2031, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 29://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2027, 2027, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 30://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2026, 2026, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 31://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2032, 2032, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 32://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2033, 2033, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 33://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2034, 2034, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 35://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2013, 14, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 36://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2014, 15, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 37://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2015, 16, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 38://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2016, 17, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 40://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2035, 2035, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 41://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2036, 2036, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 42://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2037, 2037, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 43://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2038, 2038, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 44://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2039, 2039, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 45://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2040, 2040, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 46://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2041, 2041, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 47://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2044, 2044, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 48://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 300;
client.Entity.WTitles.AddTitle(2045, 2045, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 300 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 51://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2050, 2050, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 52://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2051, 2051, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 53://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2052, 2052, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 54://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2053, 2053, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 55://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2054, 2054, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 56://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2057, 2057, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 57://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 300)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2056, 2056, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 58://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2046, 2046, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 59://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2047, 2047, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 60://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2048, 2048, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 61://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2049, 2049, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 62://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2059, 2059, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 63://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2060, 2060, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 64://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2061, 2061, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 65://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2062, 2062, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 71://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2063, 2063, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 72://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2064, 2064, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 73://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2065, 2065, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 74://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(9, 1, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 76://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2082, 2082, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 77://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 150)
{
client.Entity.TitlePoints -= 150;
client.Entity.WTitles.AddTitle(2083, 2083, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 150 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
case 78://michaelJackon
{
if (client.Entity.WTitles != null && client.Entity.TitlePoints > 100)
{
client.Entity.TitlePoints -= 100;
client.Entity.WTitles.AddTitle(2084, 2084, false);
}
else
{
dialog.Text("Sorry, you don't have enough points , You need 100 point");
dialog.Option("Oh , Shit !", byte.MaxValue);
}
break;
}
#endregion
}
break;
}
#endregion