Ok, so I am going around and making all the NPC's what they should look like,, but it takes so long.. Because I have to search for what the NPC is saying.. and then get the id.. THEN go change it... can someone give me a code so when i click a NPC.. it says in the top left... NPC ID IS ****
It'd have to bee done something like this...
Code:
default:
{
GC.AddSend(Packets.NPCSay("Hi, I am a (incomplete) NPC, my ID is " + NPC.ToString()));
GC.AddSend(Packets.NPCLink("Ok.", 255));
if (N != null)
GC.AddSend(Packets.NPCSetFace(N.Avatar));
else
GC.AddSend(Packets.NPCSetFace(30));
GC.AddSend(Packets.NPCFinish());
break;
}