Ok well I am not really expecting an answer to this but I want my PrizeNPC to send the chars to my website, I am using 5165 and this is all I have for my NPCDialog.cs for now
Code:
#region PrizeNPC
case 47:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("I am PrizeNPC and if you want to buy DragonBalls you can donate to my masters site"));
GC.AddSend(Packets.NPCLink("Okie dokie send me to the site plox.", 1));
GC.AddSend(Packets.NPCLink("Nah. Fuck him.", 255));
GC.AddSend(Packets.NPCSetFace(30));
GC.AddSend(Packets.NPCFinish());
}
else if (Control == 1)
{
if (GC.MyChar.VipLevel == 0)
}
break;
}
#endregion