• Welcome to #1 Roulette Forum & Message Board | www.RouletteForum.cc.

News:

WARNING: Forums often contain bad advice & systems that aren't properly tested. Do NOT believe everything. Read these links: The Facts About What Works & Why | How To Proplerly Test Systems | The Top 5 Proven Systems | Best Honest Online Casinos

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

BV Bot for Winkel´s Win as much as you want

Started by MadMax, Dec 26, 10:54 AM 2011

Previous topic - Next topic

0 Members and 5 Guests are viewing this topic.

MadMax

Hello Folks!
I have coded a bot for Winkel´s Wamayw method for the Betvoyager Casino.
The bot needs the online version with Firefox browser and a colour depth of 32 bit.
You can download it here:
link:s://rapidshare.com/files/1038740312/WinkelBot.rar
I have also attached it to this post, but there were problems with my last rar file I have attached, so you can use the rapicshare link as alternative.
The bot comes with a readme, were you should get all informations you need.
Only this: to start, first start the casino, then the WinkelBot.exe (the other exe files in the folder are controlled by this and shouldn´t be used by you). Then a little window will appear that asks you, if the window is already be moved. Only click OK, when the casino window is moved to the upper left side of your screen and has changed its size (this will be automatic, but can take some seconds).
After this, the real bot starts. You can choose the line you want to play. Choose it and click "Start".
The used progression is the one Winkel was recommending. You can change the progression as you want. How this works and more is explained in the readme.
The bot isn´t limited in any kind. So, if you use it and benefit from it, please be so fair and honor my work with a tribute to my moneybooker or paypal account.
And note: as all systems, this one can fail too!

marivo

Thank you! It doesn't work with Chrome by any chance, right?

marivo

I have problems because the bot doesn't place casino window in the exact position and it make clicks on an "empty" space. If I adjust it (the casino window) slightly then it works, but it places only 1 bet and then stops.

ophis


var pt: TPoint;

-----------------

    pt.x:=x;
    pt.y:=y;

    Windows.ClientToScreen(CasinoHANDLE, pt);
    SetCursorPos(pt.x,pt.y);



google:
ClientToScreen function.

This will help you with coordinates since it returns XY of Client Area of specified window and NOT global coordinates.

thanks to that you can have window in any place on desktop and 0,0 will be in top left corner of this window.

Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

darrnyf


darrnyf


MadMax

@ darrnyf:
all files must be in the folder you downloaded. I guess, you have moved the WinkelBot.exe out of the folder? If so, put it back!

@marivo:
it will only work with Firefox! If this problem happens with Firefox, you can try this: after starting the casino, go into the WinkelBot folder  and start the BVpos.exe manually by rightclicking it and choose open.
But I noticed another thing today: you will need the windows vista skin. Sorry, I dind´t recoginize this when doing the bot. Other skins have different borders to their windows, and that will make the bot fail. I will try to solve this problem, but at the moment I´m very busy, so I can´t say when I will find time to fix this.

@ophis:
Thank you very much for your hint! I´m not a very experienced coder, so I´m not very used to the windows API commands. The ones I use I also have found by doing research on different forums. So your hints will be very welcome!

marivo

Quote from: MadMax on Dec 27, 01:05 AM 2011
But I noticed another thing today: you will need the windows vista skin.
Yes, I have windows xp. So I guess that's why it places only 1 bet and then stops.

ophis

Quote from: MadMax on Dec 27, 01:05 AM 2011
But I noticed another thing today: you will need the windows vista skin. Sorry, I dind´t recoginize this when doing the bot. Other skins have different borders to their windows, and that will make the bot fail. I will try to solve this problem, but at the moment I´m very busy, so I can´t say when I will find time to fix this.

ClientToScreen function will solve this problem. Since CLIENT area of a program (browser) is behind borders/menus... So skin wont matter anymore. x0y0 will always be in the same place regardless windows Skin or operating system.
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

Normy2000

Thanks for the info on ClientToScreen Ophis  :thumbsup: , i had the same problems with my bots when i use different browser and OS. The x,y change a little bit, just enough to make the bot not working.
nOrMy2o0o  ‹(•¿•)›
"Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning."  Albert Einstein

ophis

different browsers is another story...

since they are builded in another way.
sometimes u need to get Handle of Child window but often they don't have any title, or child of a child or child of a child of a child etc...

u need to make function which will search for some probable child window.

You can compare child windows with main browser window and check its % of hight ... because u looking only for the one that does not include menu....

its easier with standalone programs.

Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

VLS

Hello dear friends,

I did solve this asking user to drag-and-drop a bulls-eye into target window :)

The core of the how-to being to use the WindowFromPoint function:

WindowFromPoint function @ MSDN

It does require a bit of user interaction but it's accurate.






You can see proof-of-concept in a proggie of mine: ]Download here.

Hope it helps in some form.

Vic
🡆 ROULETTEIDEAS․COM, home of the RIBOT WEB software, featuring FREE modules for the community! ✔️

VLS

Quote from: darrnyf on Dec 27, 12:49 AM 2011
it shows an error clicker is missing


Problem being the folder "C:\WinkelBot\" is hardcoded in the program.


Perhaps MadMax may want to change it to a relative path in future version to prevent this :)

i.e. instead of:

baseDir = "C:\WinkelBot\"

go like

baseDir = "./"
🡆 ROULETTEIDEAS․COM, home of the RIBOT WEB software, featuring FREE modules for the community! ✔️

MadMax

Thanks a lot Victor for this hint!
I wouldn´t find this error, because on my safed coding the line which directs the program to the other parts is already changed. The defined folder was only for testing the program in debugging mode without creating an executable. I must have forgotten to change it back before creating the exe file.
So I have attached the new WinkelBot.exe. Just replace it with the previous one.
Sorry for this!

ophis

Quote from: VLS on Dec 28, 12:06 PM 2011
Hello dear friends,

I did solve this asking user to drag-and-drop a bulls-eye into target window :)

The core of the how-to being to use the WindowFromPoint function:

WindowFromPoint function @ MSDN

It does require a bit of user interaction but it's accurate.






You can see proof-of-concept in a proggie of mine: ]Download here.

Hope it helps in some form.

Vic

Thx for that Victor. I was thinking about that lately. I will use it for sure.
Multi Systems Tracker
➨ [url="//rmst.forumer.com"]RMST.forumer.com[/url]

-