int StartingConditional()
{

    // Add the randomness
    if(Random(100) <= 5)
        return TRUE;

    return FALSE;
}