Login to get access to all resources of Money Maker Machine - Forum
Open Source Roulette Systems and Roulette Tools Forum.
June 19, 2013, 08:09:53 AM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
French German Italian Dutch Spanish Portuguese Korean Chinese Simplified Japanese Greek Arabic Russian
 
   Home   Help Search Tags Login Register  
Del.icio.us Digg FURL FaceBook Stumble Upon Reddit SlashDot

Pages: [1]   Go Down
  Print  
Author Topic: As I write this code less like so: click_straight_up_2, 4,5,6,8,14... ???  (Read 96 times)
0 Members and 1 Guest are viewing this topic.
ombrerico
PLATINUM Member
Trade Count: (+1)
Sr. Member
***

Karma: 711
Offline Offline

:Today at 03:30:05 AM
Posts: 1069
Referrals: 1



Activity
100%

Success to all.


« on: November 24, 2010, 08:48:05 PM »

As I write this code less like so: click_straight_up_2, 4,5,6,8,14,16,17,18,19,20,21,23,29,31,32,33,35();
Huh?


Begin     
        //2,4,5,6,8,14,16,17,18,19,20,21,23,29,31,32,33,35      click_straight_up_2();click_straight_up_4();click_straight_up_5();                          click_straight_up_6();click_straight_up_8();click_straight_up_14()     click_straight_up_16();click_straight_up_17();click_straight_up_18();           click_straight_up_19();click_straight_up_20();click_straight_up_21();                                                             click_straight_up_23();click_straight_up_29();click_straight_up_31();                                                          click_straight_up_32();click_straight_up_33();click_straight_up_35(); 
                                             
end;
Logged
Silver
Moderator
Trade Count: (+8)
Sr. Member
*****

Karma: 80
Offline Offline

:Today at 07:19:06 AM
Posts: 590
Referrals: 1



Activity
40%

RSS Expert


« Reply #1 on: November 24, 2010, 09:19:13 PM »

use s_utils.
Just download my Universal_script_for_sleepers - and you will see how are managed table_elements there.

And in mode - click_straight_up_2, 4,5,6,8,14,16,17,18,19,20,21,23,29,31,32,33,35(); - it will not work.
Logged

RSS is limited only by your imagination ...

Have any error with your script or any question with it - go to SILVER's Room board for free help.
Need a fully functional and well organized RSS Script - visit http://silver.money-maker-machine.com
ombrerico
PLATINUM Member
Trade Count: (+1)
Sr. Member
***

Karma: 711
Offline Offline

:Today at 03:30:05 AM
Posts: 1069
Referrals: 1



Activity
100%

Success to all.


« Reply #2 on: November 25, 2010, 12:26:50 AM »

I looked, but it is too complicated for me, my headache just trying to endender this Sleeps 1.5. Sorry.

 Embarrassed
Logged
thomasgrant
PLATINUM Member
Trade Count: (+1)
Hero Member
***

Karma: 1643
Offline Offline

:Today at 07:14:19 AM
Posts: 3088
Referrals: 21



Activity
40%

RSS Writer and Teacher


WWW
« Reply #3 on: November 25, 2010, 02:00:56 AM »

I looked, but it is too complicated for me, my headache just trying to endender this Sleeps 1.5. Sorry.

 Embarrassed

Well, I know how you feel...
It all seems very complicated.
That is until you start to dissect the code.
And get into it.
It is fairly easy to understand.

For instance...
Lets take a look at Silvers excellent script.

Have a look at the picture notepad_pic2.jpg
You can see here I have Silvers scripts loaded into NotePad++

Now bot scripts may seem a little difficult at first.
But as you read them.
They start to make sense.

So lets see if I can explain how they work.
Lets look at the core component.
The elements.
Code:
elements:=[
            [0,4,0,1,'red',[0,1,2,4,8,16,32,64],1,-1],
            [0,5,0,2,'column1',[0,1,3,9,27,81],1,3],
            [0,200,0,35,'single0',[0,1,1,1,2,2,2,3,3,3],1,0],
            [0,13,0,11,'street4',[0,1,1,3,4,6,9,14,21,31,47,70],1,1] //street4-numbers 10,11,12
           ];
This is where you add you systems.
Or modify the ones that are there.

Lets look at single0
And see if we can have a bet like what you want.
click_straight_up_2, 4,5,6,8,14,16,17,18,19,20,21,23,29,31,32,33,35();
So lets create it.
What say we call it my_bet
Now if you read his comments.
You will find out what the arrays variables mean.

[0,25,0,35,'my_bet',[0,1,1,2,3,4,5,],1,0],

[0,{0 didn_apear}
25,{1 alert}
0,{2 cnt_progression}
35,{3 win_coeficient, in other words what the bet is worth. Singles is 35 to 1}
'my_bet',{4 name }
[0,1,1,2,3,4,5,],{5 martingale_progression}
1,{6 cnt_elements}
0],{7 play_cnt}

Then you have to put my_bet in two other places.
And that is in the s_utils.

Here is the first place to put my_bet
procedure bet_x_on_y(xunits,yelements,chips);

case yelements[y] of

'my_bet':begin
click_straight_up_2();click_straight_up_4();click_straight_up_5();                          click_straight_up_6();click_straight_up_8();click_straight_up_14()     click_straight_up_16();click_straight_up_17();click_straight_up_18();           click_straight_up_19();click_straight_up_20();click_straight_up_21();                                                             click_straight_up_23();click_straight_up_29();click_straight_up_31();                                                          click_straight_up_32();click_straight_up_33();click_straight_up_35(); 
end;


Here is the second place to put my_bet
function number_is(number, name):boolean;

case name of
'my_bet':  if in_array(number,[2, 4,5,6,8,14,16,17,18,19,20,21,23,29,31,32,33,35]) then result:=True;

Make sense?
I am sure Silver can provide even more detail.

notepad_pic1.jpg
Re: As I write this code less like so: click_straight_up_2, 4,5,6,8,14... ???
* notepad_pic1.jpg (232.78 KB, 800x600 - viewed 42 times.)
notepad_pic2.jpg
Re: As I write this code less like so: click_straight_up_2, 4,5,6,8,14... ???
* notepad_pic2.jpg (247.51 KB, 800x600 - viewed 42 times.)
Logged

"Live long and prosper." Spock
www.thomasrgrant.com

The Roulette Professor.
http://rouletteprofesor.com/
Silver
Moderator
Trade Count: (+8)
Sr. Member
*****

Karma: 80
Offline Offline

:Today at 07:19:06 AM
Posts: 590
Referrals: 1



Activity
40%

RSS Expert


« Reply #4 on: November 25, 2010, 07:53:47 AM »

Also you may read here
http://www.money-maker-machine.com/forum/request-file-service/universal-script-for-bet-on-sleepers/
Logged

RSS is limited only by your imagination ...

Have any error with your script or any question with it - go to SILVER's Room board for free help.
Need a fully functional and well organized RSS Script - visit http://silver.money-maker-machine.com
ombrerico
PLATINUM Member
Trade Count: (+1)
Sr. Member
***

Karma: 711
Offline Offline

:Today at 03:30:05 AM
Posts: 1069
Referrals: 1



Activity
100%

Success to all.


« Reply #5 on: November 25, 2010, 05:00:24 PM »

Thank you my friends will try to better understand the scripts. :'(
Logged
Tags: ??? 
Pages: [1]   Go Up
  Print  
 
Jump to:  


Related Topics
Subject Started by Replies Views Last post
Tom's second RSS Pro Tutorial. (Code)
Tom's Tutorial Zone
thomasgrant 9 178 Last post July 22, 2010, 01:47:04 AM
by thomasgrant
Tom's RSS Pro: Tutorial V3 (Code)
Tom's Tutorial Zone
thomasgrant 6 107 Last post July 25, 2010, 06:01:00 AM
by thomasgrant
Tom's RSS Pro: Tutorial V4 (Code) In Depth
Tom's Tutorial Zone
thomasgrant 11 172 Last post August 12, 2010, 09:16:51 PM
by thomasgrant
A piece of code
SILVER's Coding Room
boatran8 1 113 Last post October 04, 2010, 08:44:09 PM
by MMM Admin
Tom's second RSS Pro Tutorial. (Code)
Request File Service
thomasgrant 0 44 Last post January 12, 2011, 06:03:14 AM
by thomasgrant
RNG code for AVBS
General Discussion
awh219 1 121 Last post March 02, 2011, 07:31:18 PM
by MMM Admin
Script for FREE - system CODE 4. « 1 2 3 »
SILVER's Coding Room
Silver 31 1168 Last post January 17, 2012, 09:06:50 AM
by Silver
Code 4: For RSS Pro.
Tom's Tutorial Zone
thomasgrant 4 286 Last post July 25, 2011, 09:52:50 PM
by starfighter55
System Code 4
General Discussion
Keyo 8 179 Last post May 09, 2012, 08:27:31 PM
by raz
Powered by MySQL Powered by PHP Money Maker Machine © 2007-2011
Powered by SMF | SMF © 2006, Simple Machines
SMFAds for Free Forums | Sitemap | Sitemap
Valid XHTML 1.0! Valid CSS!


May 12, 2013, 10:43:17 PM