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

Roulette-focused => General Discussion => Topic started by: ThomasGrant on Jan 12, 12:08 AM 2011

Title: RSS Tutorial: How to modify Silvers Scripts...
Post by: ThomasGrant on Jan 12, 12:08 AM 2011
RSS Tutorial: How to modify Silvers Scripts...
Or how to understand them...

Let's look at Silver's famous s_utils
link:://rouletteforum.cc/downloads/?sa=view;id=69 (link:://rouletteforum.cc/downloads/?sa=view;id=69)

I may have explained this before.
No harm in repeating it.

This section of the code.
Calculates what chip bets to place down.
And where.

procedure bet_x_on_y(xunits,yelements,chips);

xunits:=xunits*100;
  for k:=7 downto 1 do begin //here we go through every chip
    if xunits>=(chips[k]*100) then begin
       x_knt:=((xunits) div (chips[k]*100));//here we check how much chips[k] we must put
       for x:=1 to x_knt do begin
         case k of
          1:click_chip1();
          2:click_chip2();
          3:click_chip3();
          4:click_chip4();
          5:click_chip5();
          6:click_chip6();
          7:click_chip7();
         end;


In this first section.
We have a part of the procedure that just calculates how many chips to place down.
What amount. Or how much each bet will be.

In the next section of the procedure.
It tells it where to place the bets.

for y:=0 to VarArrayHighBound(yelements,1) do begin
           case yelements[y] of
            'red':click_red();
            'black':click_black();


And it is in this section that you can add your very own.
It where you can modify and add your own bets.

You can read more about it here.
link:://rouletteforum.cc/tom%27s-place/thomasgrant_2-psc-and-bigscript_fv-12-h-psc/ (link:://rouletteforum.cc/tom%27s-place/thomasgrant_2-psc-and-bigscript_fv-12-h-psc/)

The post explains the concept very well.
The post also goes into some length as to how to add your own parts to the script.

You can always ask Silver to create a script for you.
Just give him the specifications.

He may have time to create them for you.
His fees a very modest.

I have used his scripts.
His ideas.
Asked him numerous questions.
And from all that.
I have managed to understand how to code.
How to do things.
Plus...
I have learned a few of my very own tricks.
You can find out many of the things I have done.
In this script.
bigscript_fv-12-h
link:://:.money-maker-machine.com/forum/downloads/?sa=view;down=144 (link:://:.money-maker-machine.com/forum/downloads/?sa=view;down=144)