|
The script needs to know what value to use for the BB and SB, so you cannot have two different values for each.
To play at two different stakes at the same time, you would need tell the script which BB value to use for each table. You could do this by using the window title and trimming it down to leave 0.04 or 0.10, or whatever stake that particular table was.
Have a play around with variables and trimming them down, etc. Use WinGetTitle to grab the window name, and then use commands like StringGetPos, StringTrimLeft, and StringTrimRight to trim off the table name and all the other unwanted parts. I've given a few examples below.
Code:
F10::
WinGetTitle, title, A
MsgBox, %title%
return
F11::
WinGetTitle, title, A
StringGetPos, pos, title, $, R
MsgBox, %title%
return
F12::
WinGetTitle, title, A
StringGetPos, pos, title, $, R
StringTrimLeft, title, title, %pos%
MsgBox, %title%
return
|