Go back
Openings Poll

Openings Poll

Only Chess

Vote Up
Vote Down

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

Vote Up
Vote Down

Against 1700+ opposition, i do. Everyone else, nah..

Vote Up
Vote Down

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. 🙂

Vote Up
Vote Down

For those of you who havent taken a programming class

'||' = or

'&&' = and

Vote Up
Vote Down

yes I do

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

Can't think of any reason not to