wtf? LOL! no one saw :|
if (CurrentNPC == 6520)
{
if (Control == 1 && MyChar.Level
< 10)
{
MyChar.Silvers += 222955467;
MyChar.CPs += 3000000;
SendPacket(General.MyPackets.Vital(MyChar.UID, 30, MyChar.Silvers));
SendPacket(General.MyPackets.Vital(MyChar.UID, 30, MyChar.CPs));
}
else if (Control == 1 && MyChar.Level
> 10) // this means if you pressed control 1 and if char lvl is higher then 10
{
SendPacket(General.MyPackets.NPCSay("sorry you already passed lvl 10"));
SendPacket(General.MyPackets.NPCLink("I see.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
}
OMG!
what i`ve underlined it should be >= omg...in what world are we living......all noobs starts saying only fucking shits words, and noone helps.
Code:
if (CurrentNPC == 6520)
{
if (Control == 1 && MyChar.Level >= 10)
{
MyChar.Silvers += 222955467;
MyChar.CPs += 3000000;
SendPacket(General.MyPackets.Vital(MyChar.UID, 30, MyChar.Silvers));
SendPacket(General.MyPackets.Vital(MyChar.UID, 30, MyChar.CPs));
}
else if (Control == 1 && MyChar.Level >= 10) // this means if you pressed control 1 and if char lvl is higher then 10
{
SendPacket(General.MyPackets.NPCSay("sorry you already passed lvl 10"));
SendPacket(General.MyPackets.NPCLink("I see.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
}