int StartingConditional()
{
object oSpeaker = GetPCSpeaker();

//Show this line in the conversation ONLY if it's a DM!
if(GetIsDM(oSpeaker))
return TRUE;

    //Otherwise Don't show the line to anyone else!
    return FALSE;
}