I've read thru all the documentation I can find for BBO dealer syntax, and I'm confused about something.
I simply want to generate one hand at a time on BBO bidding or practice table, using Deal Source with syntax code. Is there a way for me to force a particular bid from an opponent hand from within the syntax code?
For example, if I want my student to practice Negative Doubles, can I generate a 1minor opening, then have the opponent overcall 1S. Is that possible?
If this is covered somewhere in documentation, could you kindly refer me to the right spot?
Page 1 of 1
Question on BBO dealer syntax
#3
Posted Yesterday, 14:41
There is a specific forum for discussion of Dealer syntax, not sure if you read it all but in any case this thread belongs there: maybe some kind moderator can move it.
Yes you can (if you have programming skills) generate a 1 minor opening, then have the opponent overcall 1S.
I gave up on Dealer when BBO decided for no good reason to suppress the vital tricks function, but if you post there and nobody can help I will scratch my memory.
Yes you can (if you have programming skills) generate a 1 minor opening, then have the opponent overcall 1S.
I gave up on Dealer when BBO decided for no good reason to suppress the vital tricks function, but if you post there and nobody can help I will scratch my memory.
#5
Posted Today, 02:06
This is the script I've used in the past.
# Set dealer to North using BBO commands and use 180 switch # # define constraints for North # # North should have one club or one diamond opener but not a strong 1NT # north1m = hcp(north)>12 and hcp(north)<18 and shape(north, any 4333 + xx45 + x4x5 + 4xx5 + xxx6 + xx54 + x45x + 4x5x + xx6x) north1nt = hcp(north)>14 and hcp(north)<18 and shape(north, any 4333 + any 4432 + any 5332) # # define constraints for East # # East should overcall one spade # east1s = hcp(east)>10 and shape(east, 6xxx + 54xx + 5x4x + 5xx4 + 5332 + 5323 + 5332) and hcp(east,spades)>5 # # define constraints for South # # South should have a negative double # southdbl = hcp(south)>6 and hearts(south)>3 and hcp(south)<10 (north1m and not north1nt) and southdbl and east1s
Page 1 of 1