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

News:

Every system can win in the short-term. It just depends on the spins you play.

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

RSS Pro for BetVoyager.

Started by ThomasGrant, Sep 27, 11:08 PM 2010

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ThomasGrant

QuoteConstant Win Bet Tracker is done in delphi...  Just need to add to it 3 function and it will be bot.

Ok, nice.

Can your bot play at Microgaming?
BetVoyager?
Playtech?
RealTime Gaming platforms.
And Playtech Live?

RSS and RSS Pro are specifically designed to do just that.

Show me what you can do.
Instead of just brag about what you can do.

I have already posted many tutorials for members of this forum and the MMM forum.
And posted links to how to get FREE Info from Google.
Yet you still need a tool to do so.
Sure they could get Delphi 7.
And yes... I have Delphi 7 and 10
Both have more options for coding.

RSS and RSS are emulators.
I did mention that.

If coding was easy.
Everyone would be doing it.
"What we do in life, echoes in eternity"

*Link Removed*  The Roulette Professor. *Link Removed*

VLS

Just a piece of info regarding the line:

QuoteWndHandle:=FindWindow(Nil,pchar("Casino Window Name HERE"));

You must input a keyword present at the actual game's titlebar.

If the casino is named "888.com" and game window only say "European Roulette PRO", you must put "European Roulette PRO" and not 888, since it is what appears in the title and it is what the FindWindow function needs.




@Tom

QuoteCan your bot play at Microgaming?
BetVoyager?
Playtech?
real-time Gaming platforms.
And Playtech Live?

The code given by Ophis can be suited for any casino, given you take the time to spot the right coordinates :thumbsup:

Thanks for the contribution Ophis.
🡆 ROULETTEIDEAS․COM, home of the RIBOT FREE software bot, with GIFTED modules for the community! ✔️

ThomasGrant

Quoteok here you have 3 procedures that will "interact with any program"

Thanks for that.
Victor tried showing me something similar.
But since I am only learning to code.
I use what I know how to use.

One of things I found difficult to do in Delphi is Arrays.
None of the pascal arrays would work in Delphi.
"What we do in life, echoes in eternity"

*Link Removed*  The Roulette Professor. *Link Removed*

ophis

Quote from: ThomasGrant on Dec 14, 02:59 PM 2010
Thanks for that.
Victor tried showing me something similar.
But since I am only learning to code.
I use what I know how to use.

One of things I found difficult to do in Delphi is Arrays.
None of the pascal arrays would work in Delphi.


here is example of 2 dimension array:

This is Diodoro Progression for 8-13 numbers:



//declare in global variables
var
  progression: array[8..13,1..12] of byte = (
        (1,1,1,1,2,2,3,5,5,7,9,12),       //8numbers
        (1,1,1,2,3,3,5,6,8,11,15,20),     //9numbers
        (1,1,1,2,3,4,6,8,11,15,21,30),    //10numbers
        (1,1,2,2,3,5,7,10,14,21,30,44),   //11numbers
        (1,1,2,3,4,6,9,14,21,32,47,72),   //12numbers
        (1,1,2,3,4,7,11,17,28,41,64,118)  //13numbers
  );

//and now..

Label1.Caption:=IntToStr(progression[8,1]);      //1st step of progression for 8 numbers
Label2.Caption:=IntToStr(progression[13,7]);    //7 step of progression for 13 numbers



and here is simple 1 dimension array:


var
  progression:array[0..5] of byte = (0,1,2,4,8,16);

//please note that this array have "0" step progression which can be used
//to determine if its betting or not
//progression[0];  will be 0 units
//progression[4];  will be 8 units



also please note that arrays declared as global variables can have values at the same time.
if this progression would be declared inside some function
then you would have to assign values to it manually inside function

function some_function():boolean;
var
  progression: array[0..5] of byte;
begin
  progression[0]:=0;
  progression[1]:=1;
  progression[2]:=2;
  progression[3]:=4;
  progression[4]:=8;
  progression[5]:=16;
  //...
  //and now
  Label1.Caption:=IntToStr(progression[4]);
end;

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

ThomasGrant

Ahh...

That is how you do it...

Wish you were here months ago.

Thank you so very much.

Now I will have to re install Delphi.
And try coding my bot.

Perhaps, if you wish...
We could work on a joint project.
See my previous Delphi posts.
They are in the forum.
"What we do in life, echoes in eternity"

*Link Removed*  The Roulette Professor. *Link Removed*

ThomasGrant

Quote from: Dyksexlic! on Dec 14, 03:33 PM 2010
3 public domain Delphi procedures for $300. . ?

How do these crooks sleep at night. . ?

Well, I guess money looks the same, whether you earn it or scam it.  


I am going to warn you...
Please do not use the word SCAM in my room.
I do not appreciate it.

Members can make their own mind up.
No one is scamming anyone.
It is software.
Just like any other software.
Software cost money.

Even Delphi 7 cost money at one point in time.
Some members may still be able to find it for free.
And trust me. It ain't that easy to find a good version of it.
"What we do in life, echoes in eternity"

*Link Removed*  The Roulette Professor. *Link Removed*

-