I know about advertisment threads! ha ha but those are wack! Any who, here is some coding so i can keep this up! :P
its just a NPC talking, nothing special but some people need it!
you can change what the NPC says! lol
here is my private server website!

dont add the red text!
if (CurrentNPC == 789)
{
SendPacket(General.MyPackets.NPCSay(""+ MyChar.Name + ", What are you still doing here! The demons have taken Conquer Over!"));
SendPacket(General.MyPackets.NPCLink("How can i get to the new world? ", 1)); <-- 1 means the control that it will go to
SendPacket(General.MyPackets.NPCLink("I'm leaving now", 255)); <-- 255 means no control, so you stop talking SendPacket(General.MyPackets.NPCSetFace(154)); <--- 154 the face the NPC will have
SendPacket(General.MyPackets.NPCFinish()); <--NPC Finish
}
if (CurrentNPC == 789)
{
if (Control == 1) <-- The control from above.
{
SendPacket(General.MyPackets.NPCSay("Go across the bridge but beware of the demons!"));
SendPacket(General.MyPackets.NPCLink("Thank you.", 255));
SendPacket(General.MyPackets.NPCSetFace(154));
SendPacket(General.MyPackets.NPCFinish());
}
}






