First Follow the npc guide in the all in 1 thread by plasma-hand
Once your npc is made
Open your source do ctrl + g 955
Go right below the comment */ type this in
Code:
if (CurrentNPC == NPCUIDHERE)
{
SendPacket(General.MyPackets.NPCSay("Hello,Would you like to enter the PK arena."));
SendPacket(General.MyPackets.NPCLink("Yes please.", 1));
SendPacket(General.MyPackets.NPCLink("No thanks.", 255));
SendPacket(General.MyPackets.NPCSetFace(30));
SendPacket(General.MyPackets.NPCFinish());
}
And type this in
Code:
if (CurrentNPC == NPCUIDHERE)
{
if (Control == 1)
{
MyChar.Teleport(1005, 52, 69);
}
if (Control == 2)
{
SendPacket(General.MyPackets.NPCSay("Good Bye"));
}
}
Hope this helps
p.s
If you don't want me sending people to your guide plasma-hand let me know and I will make a guide on making a npc






