int StartingConditional()
{
    int iResult = 0;

    if(GetGold(GetPCSpeaker()) >= 500)
        iResult = 1;
    return iResult;
}