Openings Poll

Openings Poll

Only Chess

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

W
Angler

River City

Joined
08 Dec 04
Moves
16907
12 Dec 06

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

wotagr8game

tbc

Joined
18 Feb 04
Moves
61941
12 Dec 06

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

Joined
03 Sep 03
Moves
87628
12 Dec 06

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

H
Renouned Grob Killer

Joined
17 Dec 05
Moves
14725
12 Dec 06

For those of you who havent taken a programming class

'||' = or

'&&' = and

Y

Joined
29 Jul 06
Moves
2414
13 Dec 06

yes I do

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

Can't think of any reason not to