int StartingConditional()
{
    string sName = GetLocalString(OBJECT_SELF, "sName");
    string sLastName = GetLocalString(OBJECT_SELF, "sLastName");
    SetCustomToken(11001, sName);
    SetCustomToken(11002, sLastName);
    if (GetLocalInt(OBJECT_SELF, "Adventurer") == TRUE && GetLocalInt(OBJECT_SELF, "nPersonality") == 2 && GetLocalInt(GetPCSpeaker(), "Duel") == TRUE && GetLocalInt(OBJECT_SELF, "Defeat") == TRUE) return TRUE;
    return FALSE;
}