1. Standard memberWulebgr
    Angler
    River City
    Joined
    08 Dec '04
    Moves
    16907
    12 Dec '06 16:17
    Originally posted by zebano
    If (gametype == 'clan' || (gametype = 'tournament' && round > 1)) && OpponentRating > 1600
    Then UseDB


    Even that isn't truley accurate, because after hundreds of games, I know the first 8-10 moves of my prefered lines, so I only consult when they deviate. Using the DB in the first place is how I learned the lines.
    My answer is very close to that of my clan leader
  2. Standard memberMarinkatomb
    wotagr8game
    tbc
    Joined
    18 Feb '04
    Moves
    61941
    12 Dec '06 16:26
    Against 1700+ opposition, i do. Everyone else, nah..
  3. Joined
    03 Sep '03
    Moves
    87628
    12 Dec '06 17:03
    Originally posted by zebano
    If (gametype == 'clan' || (gametype = 'tournament' && round > 1)) && OpponentRating > 1600
    Then UseDB


    Even that isn't truley accurate, because after hundreds of games, I know the first 8-10 moves of my prefered lines, so I only consult when they deviate. Using the DB in the first place is how I learned the lines.
    Same here, except I prefer to write it like so:

    if ((OpponentRating > 1600) && ((gametype == 'clan'😉 || ((gametype == 'tournament'😉 && (round > 1))))

    And we'll just ignore your '=' should be '==' error in there. 🙂
  4. Standard memberHomerJSimpson
    Renouned Grob Killer
    Joined
    17 Dec '05
    Moves
    14725
    12 Dec '06 17:06
    For those of you who havent taken a programming class

    '||' = or

    '&&' = and
  5. Joined
    29 Jul '06
    Moves
    2414
    13 Dec '06 02:39
    yes I do

    I use them here, and I use them in USCF sanctioned CC tournaments

    Can't think of any reason not to
Back to Top

Cookies help us deliver our Services. By using our Services or clicking I agree, you agree to our use of cookies. Learn More.I Agree