محمد ياسر
2019-05-31, 09:37 PM
السلام عليكم ورحمة الله وبركاته
انبي سي بيدي لفل بالتسلسل
ياعني انت لول لفل 15 اتزيد لفل واحد لما تكلمه
هو حاليا ايدي الفل لناس الي للفل 130 وفوق لان الفل هنا بيكون صعب وده حركه حلوه للسورسات الصعبه
حط دول في ال NPCS.CS
#region Level 1-140
case 19994:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Hi " + client.Player.Name + " I Sell Level 130 For 1,000 and onther 131-140 each for 2,500 ConquerPoints.");
dialog.Option("Yes,I Need Level .", 1);
dialog.Option("Yes,I Need Level 131-140.", 2);
dialog.Option("NO Thx.", 255);
dialog.Avatar(116);
dialog.Send();
break;
}
case 1:
{
if (client.Player.ConquerPoints >= 1000 && (client.Player.Level <= 130))
{
client.Player.ConquerPoints -= 1000;
client.Player.Level += 1;
client.Player.Atributes += 3;
}
else
{
dialog.Text("Please get 1,000 ConquerPoints to Get Level 130.");
dialog.Option("I see.", 255);
dialog.Avatar(116);
dialog.Send();
}
break;
}
case 2:
{
if (client.Player.ConquerPoints >= 2500 && (client.Player.Level >= 130) && (client.Player.Level <= 139))
{
client.Player.ConquerPoints -= 2500;
client.Player.Level += 1;
client.Player.Atributes += 3;
}
else
{
dialog.Text("Please get 2500 ConquerPoints to Get Level 131-140.");
dialog.Option("I see.", 255);
dialog.Avatar(116);
dialog.Send();
}
break;
}
}
break;
}
#endregion
انبي سي بيدي لفل بالتسلسل
ياعني انت لول لفل 15 اتزيد لفل واحد لما تكلمه
هو حاليا ايدي الفل لناس الي للفل 130 وفوق لان الفل هنا بيكون صعب وده حركه حلوه للسورسات الصعبه
حط دول في ال NPCS.CS
#region Level 1-140
case 19994:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Hi " + client.Player.Name + " I Sell Level 130 For 1,000 and onther 131-140 each for 2,500 ConquerPoints.");
dialog.Option("Yes,I Need Level .", 1);
dialog.Option("Yes,I Need Level 131-140.", 2);
dialog.Option("NO Thx.", 255);
dialog.Avatar(116);
dialog.Send();
break;
}
case 1:
{
if (client.Player.ConquerPoints >= 1000 && (client.Player.Level <= 130))
{
client.Player.ConquerPoints -= 1000;
client.Player.Level += 1;
client.Player.Atributes += 3;
}
else
{
dialog.Text("Please get 1,000 ConquerPoints to Get Level 130.");
dialog.Option("I see.", 255);
dialog.Avatar(116);
dialog.Send();
}
break;
}
case 2:
{
if (client.Player.ConquerPoints >= 2500 && (client.Player.Level >= 130) && (client.Player.Level <= 139))
{
client.Player.ConquerPoints -= 2500;
client.Player.Level += 1;
client.Player.Atributes += 3;
}
else
{
dialog.Text("Please get 2500 ConquerPoints to Get Level 131-140.");
dialog.Option("I see.", 255);
dialog.Avatar(116);
dialog.Send();
}
break;
}
}
break;
}
#endregion