Okay i want to create a Exemption Token seller but ive got somewhere with coding him.. but im not sure what to put next
case 30161:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("Hello, I can sell you a Exemption Token for a small price of 2000 CPs, do you want one?"));
GC.AddSend(Packets.NPCLink("Yes please", 1));
GC.AddSend(Packets.NPCLink("No thanks.", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
else if (GC.MyChar.CPs >= 2000)
{
}
Im not sure what to put next any ideas?






