A couple of people have asked me for this so I guess I'll just post it here.
I don't know if its really much of a release but here it is.
You know how on CoMy Source you can't pick Ninja?
It's only for GM's and PM's.
Well I mad a small little NPC to put in Birth Village so He will make you an InternNinja.
Control:
Then the Database Info:
I tested it and it works.
Hope it helps some of you.
BTW: I don't use CoMy.
I just did this for those who asked me.
I don't know if its really much of a release but here it is.
You know how on CoMy Source you can't pick Ninja?
It's only for GM's and PM's.
Well I mad a small little NPC to put in Birth Village so He will make you an InternNinja.
Code:
if (CurrentNPC == 4520)
{
SendPacket(General.MyPackets.NPCSay("Do you want to become a Ninja?"));
SendPacket(General.MyPackets.NPCLink("Yes", 1));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
Code:
if (CurrentNPC == 4520)
{
if (Control == 1)
{
SendPacket(General.MyPackets.NPCSay("There you go. You're an InternNinja now.");
SendPacket(General.MyPackets.NPCLink("Thanks!", 255);
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
MyChar.Job = 50;
SendPacket(General.MyPackets.Vital(MyChar.UID, 7, MyChar.Job));
}
}
Code:
INSERT INTO `npcs` VALUES (315, 4520, 'BirthNinja', 2, 0, 86, 40, 1010, 0);
Hope it helps some of you.
BTW: I don't use CoMy.
I just did this for those who asked me.