Stealth for poker bot
Stealth for poker bot
Wanted to create some separate thread for Stealth and everything related to hiding poker bot from the rooms.
One thing i'd like to share is so-called "human mouse driver" (attached). You can replace it with default "mouse.dll" file, found in the bot folder.
What it changes is behavior of mouse movements, they become smoother, like human moves a mouse.
Though i don't have real facts that it helps to avoid bans in such rooms as PokerStars, you can experiment with it. At least it should not get worse i guess.
What i have in my plans also, is adding "pot buttons" for the bot to click, instead of entering bets every time. Also not a 100% solution against agressive poker rooms, but many people asked for this feature, so i will do it soon
Update: this mouse driver is now a part of Warbot installer, so no need to replace anything
One thing i'd like to share is so-called "human mouse driver" (attached). You can replace it with default "mouse.dll" file, found in the bot folder.
What it changes is behavior of mouse movements, they become smoother, like human moves a mouse.
Though i don't have real facts that it helps to avoid bans in such rooms as PokerStars, you can experiment with it. At least it should not get worse i guess.
What i have in my plans also, is adding "pot buttons" for the bot to click, instead of entering bets every time. Also not a 100% solution against agressive poker rooms, but many people asked for this feature, so i will do it soon
Update: this mouse driver is now a part of Warbot installer, so no need to replace anything
- Attachments
-
- mouse.zip
- (6.7 KiB) Downloaded 429 times
Re: Stealth for poker bot
ok, now i updated PokerStars, 888 and Winamax tablemaps, so they support "pot-sized buttons": http://forum.warbotpoker.com/viewtopic. ... 2247#p2247
It means that instead of typing bets all the time, bot can now click "pot", "1/2 pot", etc. buttons occasionally (if suggested bet is in given range, and if appropriate button is detected at table).
To use this feature, open your profile in Notepad++ (or any other text editor), and find this section:
usually its almost at the top.
Then replace it with this code:
and save your profile.
This code does simple approximation: if your next betsize falls in +/- 12.5% range from some pot fraction, the bot will attempt to click such button. If the button is not detected on the table, it will just enter betsize as usual.
Stars, Winamax and 888 are the most risky casinos right now, among popular ones, so i believe its good idea to implement this feature here, at first
It means that instead of typing bets all the time, bot can now click "pot", "1/2 pot", etc. buttons occasionally (if suggested bet is in given range, and if appropriate button is detected at table).
To use this feature, open your profile in Notepad++ (or any other text editor), and find this section:
Code: Select all
##f$betpot_2_1##
##f$betpot_1_1##
##f$betpot_3_4##
##f$betpot_2_3##
##f$betpot_1_2##
##f$betpot_1_3##
##f$betpot_1_4##
Then replace it with this code:
Code: Select all
##f$betpot_1_1##
f$betsize >= 0.875*(pot+call+(currentbet)+call) and f$betsize <= 1.125*(pot+call+(currentbet)+call)
##f$betpot_1_2##
f$betsize >= 0.875*(0.5*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.5*(pot+call)+(currentbet)+call)
##f$betpot_3_4##
f$betsize >= 0.95*(0.75*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.75*(pot+call)+(currentbet)+call)
##f$betpot_2_3##
f$betsize >= 0.875*(0.667*(pot+call)+(currentbet)+call) and f$betsize <= 1.05*(0.667*(pot+call)+(currentbet)+call)
##f$betpot_1_3##
f$betsize >= 0.875*(0.333*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.333*(pot+call)+(currentbet)+call)
##f$betpot_1_4##
f$betsize >= 0.875*(0.25*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.25*(pot+call)+(currentbet)+call)
##f$betpot_2_1##
f$betsize >= 0.875*(2*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(2*(pot+call)+(currentbet)+call)
This code does simple approximation: if your next betsize falls in +/- 12.5% range from some pot fraction, the bot will attempt to click such button. If the button is not detected on the table, it will just enter betsize as usual.
Stars, Winamax and 888 are the most risky casinos right now, among popular ones, so i believe its good idea to implement this feature here, at first
Re: Stealth for poker bot
I think the tablemaps changed. I can't find those sections anymore.
In case it doens't work anymore: Wouldn't it help to "undisplay" the buttons? I think it then looks like the "player" prefers to type in the bets.
In case it doens't work anymore: Wouldn't it help to "undisplay" the buttons? I think it then looks like the "player" prefers to type in the bets.
Re: Stealth for poker bot
Hey! Maybe a stupid question, but done with Stealth setup now. Do i need to run the poker room shortcut with shift-rightclick and choose Casino user every time or has its normal user changed after doing it one time so i can just double click?
Do i need to login to Casino user everytime is the question.
Do i need to login to Casino user everytime is the question.
Re: Stealth for poker bot
Those sections are in the profile not the table map.
Depending on the profile you are using they may not already be there. If they are not in the profile you can just add them.
Re: Stealth for poker bot
i prefer to do it every time with shift+right click.OutLaw88 wrote: ↑Sat Oct 27, 2018 1:33 pm Hey! Maybe a stupid question, but done with Stealth setup now. Do i need to run the poker room shortcut with shift-rightclick and choose Casino user every time or has its normal user changed after doing it one time so i can just double click?
Do i need to login to Casino user everytime is the question.
i guess you can reboot and login as "casino" user, but then you will need to start the bot as your "main" user, which is more complicated IMO
Re: Stealth for poker bot
DO the BetOnline and ACR tablemaps support the raise button code?Alex wrote: ↑Sat Apr 21, 2018 12:59 pm ok, now i updated PokerStars, 888 and Winamax tablemaps, so they support "pot-sized buttons": http://forum.warbotpoker.com/viewtopic. ... 2247#p2247
It means that instead of typing bets all the time, bot can now click "pot", "1/2 pot", etc. buttons occasionally (if suggested bet is in given range, and if appropriate button is detected at table).
To use this feature, open your profile in Notepad++ (or any other text editor), and find this section:usually its almost at the top.Code: Select all
##f$betpot_2_1## ##f$betpot_1_1## ##f$betpot_3_4## ##f$betpot_2_3## ##f$betpot_1_2## ##f$betpot_1_3## ##f$betpot_1_4##
Then replace it with this code:and save your profile.Code: Select all
##f$betpot_1_1## f$betsize >= 0.875*(pot+call+(currentbet)+call) and f$betsize <= 1.125*(pot+call+(currentbet)+call) ##f$betpot_1_2## f$betsize >= 0.875*(0.5*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.5*(pot+call)+(currentbet)+call) ##f$betpot_3_4## f$betsize >= 0.95*(0.75*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.75*(pot+call)+(currentbet)+call) ##f$betpot_2_3## f$betsize >= 0.875*(0.667*(pot+call)+(currentbet)+call) and f$betsize <= 1.05*(0.667*(pot+call)+(currentbet)+call) ##f$betpot_1_3## f$betsize >= 0.875*(0.333*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.333*(pot+call)+(currentbet)+call) ##f$betpot_1_4## f$betsize >= 0.875*(0.25*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(0.25*(pot+call)+(currentbet)+call) ##f$betpot_2_1## f$betsize >= 0.875*(2*(pot+call)+(currentbet)+call) and f$betsize <= 1.125*(2*(pot+call)+(currentbet)+call)
This code does simple approximation: if your next betsize falls in +/- 12.5% range from some pot fraction, the bot will attempt to click such button. If the button is not detected on the table, it will just enter betsize as usual.
Stars, Winamax and 888 are the most risky casinos right now, among popular ones, so i believe its good idea to implement this feature here, at first
-
- Out of this world
- Posts: 357
- Joined: Fri Dec 21, 2018 5:01 pm
Re: Stealth for poker bot
What I prefer to do is to edit my shortcut so that it makes me log in everytime because there have been occasions where I have forgotten to shift-right click and then I've weakened my security.OutLaw88 wrote: ↑Sat Oct 27, 2018 1:33 pm Hey! Maybe a stupid question, but done with Stealth setup now. Do i need to run the poker room shortcut with shift-rightclick and choose Casino user every time or has its normal user changed after doing it one time so i can just double click?
Do i need to login to Casino user everytime is the question.
So my shortcut target was modified to:
C:\Windows\System32\runas.exe /user:"AlternateUserID" "C:\AmericasCardroom\AmericasCardroom.exe"
When I double click, I am prompted to enter the password for AlternateUserID.
You can go a step further and store the password in the modified shortcut, so it's more convenient, but I chose not to since it's less secure.
Re: Stealth for poker bot
That works nicely, Thanks