5165 Custom NPCS

02/19/2011 02:53 FlyByNight96#1
How do you make a npc talk in 5165 source? I know how to edit the face type, mech type etc. But where do you go to make them talk. :) Thanks in advance.
02/19/2011 03:13 Spirited42#2
It's amazing what the search box can do.
02/19/2011 22:10 leow505#3
NPCdialog.cs
02/19/2011 23:18 Syst3m_W1z4rd#4
Code:
case 20303:
{
    switch (Control)
    {
        case 0:
        {
            Say(GC, "Hello");
            Link(GC, "Noob", 255);
            End(GC, 50);
            break;
        }
    }
    break;
}