The Doodle already makes pot-sized raises with those specific hands I believe, most of the time at least, with the possible exception of 99. However if you want to make sure:
custom
preflop
When (hand = AA or hand = KK or hand = QQ or hand = JJ or hand = TT or hand = 99 or hand = AQ suited or hand = AK or hand = AJ suited) and raises = 0 raisepot force
...as you can see it is very easy to do, so give the PPL Guide a read. You will also need to put a codeline in for when raises = 1 if so desired, to handle how you want to play when there is a raise in front of you, etc.
Yes, yes I believe that is just what I was looking for, but just to be sure I'm reading the code properly:
custom
preflop
When (hand = AA or hand = KK or hand = QQ or hand = JJ or hand = TT or hand = 99 or hand = AQ suited or hand = AK or hand = AJ suited) and
raises = 0 raisepot force
Not 3bet because no raises before the player.
But if I want it to 3bet I'll change it to:
custom
preflop
When (hand = AA or hand = KK or hand = QQ or hand = JJ or hand = TT or hand = 99 or hand = AQ suited or hand = AK or hand = AJ suited) and
raises = 1 raisepot force
Please correct me if I misunderstood.
Thanks for your prompt help I'll be sure to give the PPL guide a read.