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

IT & Software => Roulette Software => Topic started by: ThomasGrant on Aug 03, 12:05 AM 2011

Title: Programming Code question...
Post by: ThomasGrant on Aug 03, 12:05 AM 2011
Got a question on a Term.
Ok, I know Tiago has done it.
And MMM has done it with RSS & RSS Pro.
Plus there are other software programs that do it.

Do what? your wondering?

Well... let me try to explain.
I know I can do this via a macro.
A macro recorder can record your mouse.
And that is what some of these software programs use.
They use a mouse to place the bets on the table.
The mouse moves to the specific area and places the bet.
Easy...
Now for my question.
You can place bets down on the table without mouse movements.
And get it to spin.
And do lots of other things.
But what the heck is the word or the term for this.
I know it interacts with the table.
Or it uses the table graphics.
But is there a term for this?
Or word?
Maybe I should ask Kevin of MMM.
One of the very few software that you can use.
That does not use mouse movements to place bets.
I know Roulette Bot Pro and Super Roulette do this on Playtech casinos.
And I know Tiago did with his software.
But buggered if I know what it is called.

Title: Re: Programming Code question...
Post by: superman on Aug 03, 12:34 AM 2011
The software function I use calls it ControlClick but some game windows won't or don't have controls, so you have to use MouseMove etc, I am too lazy to find a work around, especially for BV, but would find a way if I really needed it.
Title: Re: Programming Code question...
Post by: Steve on Aug 03, 12:37 AM 2011
I'm not sure what you mean, but I have software that places bets automatically which was made specifically for my players.

Many "mouse macros" will do it, although mine does it a bit differently and more attuned to advantage play. I think what you are after though is one that does it with the actual images, rather than defined click location. Is that right?
Title: Re: Programming Code question...
Post by: ThomasGrant on Aug 03, 05:15 AM 2011
Here, take a look at these.
This is the code that RSS & RSS Pro use.
1:click_chip1();
2:click_chip2();
3:click_chip3();
4:click_chip4();
5:click_chip5();
6:click_chip6();
7:click_chip7();
8:click_chip8();
9:click_chip9();

click_spin_button();{Spin the wheel for BetVoyager}
//click_spin();{Spin for Playtech casinos}

{Even Chances}
'Red':click_red();
'Black':click_black();

'High':click_high();
'Low':click_low();

'Odd':click_odd();
'Even':click_even();

{Dozens}
'Dozen_Low':click_first_dozen();
'Dozen_Med':click_second_dozen();
'Dozen_High':click_third_dozen();

{Columns}
'Column_1':click_first_column();
'Column_2':click_second_column();
'Column_3':click_third_column();


I asked MMM Admin(Kevin)
He says that it could be AutoPlay.
But he is not sure that this is the correct term.
None of the above commands use any mouse movements.
They interact with the Casino Roulette Table.
I have done videos of this.

I also know that Tiago included this in both Roulette Bot Pro and Super Roulette for Playtech.

Title: Re: Programming Code question...
Post by: superman on Aug 03, 05:41 AM 2011
They are all functions () whats in the function they call?

For playtech you can auto click the controls but I havent (even looked) found a way of NOT using the mouse in BV as I cant locate the controls easily so gave up.
Title: Re: Programming Code question...
Post by: ophis on Aug 03, 12:32 PM 2011
just like superman said. there are internal controls in specific software that you can call (SendMessage funtion), but first you would have to find them (which is not that easy).

BUT .... this wont work for most casinos that are loading inside webbrowser.

hmm to point you in some direction...  try google
"delphi communicate between programs SendMessage"
"delphi press button in another application"
link:://stackoverflow.com/questions/1297556/delphi-how-to-access-another-applications-controls (link:://stackoverflow.com/questions/1297556/delphi-how-to-access-another-applications-controls)


RSS is basicly delphi.
Title: Re: Programming Code question...
Post by: superman on Aug 03, 01:08 PM 2011
QuoteBUT .... this won't work for most casinos that are loading inside webbrowser.

Yeah forgot to mention that, but even in the download version of BV my normal method didn't work, the one I use on playtech doesn't touch your mouse to play the game, but for BV I let it take control of the mouse because I couldn't be ar$ed looking for the right function, a quick look through the help files didn't help so I got lazy and allowed it to control the mouse.