Here is npc [change your class for 1,000,000 CPS!!]
for Source 5165.
k go to NPCDialog.cs and add this:
and now go to NPCS.txt on your OLDCOOB folder and add this in the bottom
NOTE: if you want change the cps just change the GC.MyChar.CPs -= 1000000; [1000000 is the cps just change it if you want..]
if i helped to you press on the Thanks button :)
for Source 5165.
k go to NPCDialog.cs and add this:
Code:
#region ChangeYourClass
case 6699:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("Would you like to change your job for 1000000 cps?"));
GC.AddSend(Packets.NPCLink("Sure!", 1));
GC.AddSend(Packets.NPCLink("No thanks.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else if (Control == 1)
{
GC.AddSend(Packets.NPCSay("Alright choose the job. [for 1000000 cps]"));
GC.AddSend(Packets.NPCLink("Trojan", 3));
GC.AddSend(Packets.NPCLink("Warrior", 4));
GC.AddSend(Packets.NPCLink("Archer", 5));
GC.AddSend(Packets.NPCLink("WaterTaoist", 6));
GC.AddSend(Packets.NPCLink("FireTaoist", 7));
GC.AddSend(Packets.NPCLink("Ninja", 8));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
if (Control == 3)
if (GC.MyChar.Job >= 15 && GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.Job = 15;
}
if (Control == 4)
if (GC.MyChar.Job >= 15 && GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.Job = 25;
}
if (Control == 5)
if (GC.MyChar.Job >= 15 && GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.Job = 45;
}
if (Control == 6)
if (GC.MyChar.Job >= 15 && GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.Job = 135;
}
if (Control == 7)
if (GC.MyChar.Job >= 15 && GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.Job = 145;
}
if (Control == 8)
if (GC.MyChar.Job >= 15 && GC.MyChar.CPs >= 1000000)
{
GC.MyChar.CPs -= 1000000;
GC.MyChar.Job = 55;
}
break;
}
#endregion
Code:
6699 9200 2 67 1002 443 361
if i helped to you press on the Thanks button :)