Login to get access to all resources of Money Maker Machine - Forum
Open Source Roulette Systems and Roulette Tools Forum.
May 23, 2013, 06:41:31 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: Street bet live playtech..  (Read 708 times)
0 Members and 1 Guest are viewing this topic.
starfighter55
GOLD Member
Trade Count: (0)
Full Member
**

Karma: 293
Offline Offline

:May 14, 2013, 10:18:58 PM
Posts: 342
Referrals: 0



Activity
0%


« on: February 26, 2011, 11:50:28 PM »

Hi.....


This is a script for bet 10 cents on 10 streets at same time.... This is not a complete script, my first script to getting startet as simple as possible to get me to understand what we use to get the script running.. I have made a textfile with a simple street bet and it works but only for 1.time.. What I want the script to do is a win/lost situation and start over again... I wrote in the file to get an idea..

Just to give me something to start with I need a little help.. Instead of taking tutorials from the net there has nothing to do with roulette scripts I will learn from here, that makes more sense...

The rss live playtech tool has this option Ctrl+space is that what a hole script is using to play on roulette.. Maybe this could help me to see what the script has to contain of variables, functions and procedures..??

Cheers
Starfighter..
             |
             |
             |
             |
             V




* StreetBet.txt (0.97 KB - downloaded 34 times.)
« Last Edit: February 26, 2011, 11:53:27 PM by starfighter55 » Logged

Alfolof
GOLD Member
Trade Count: (+1)
Sr. Member
**

Karma: 174
Offline Offline

:Today at 01:43:08 AM
Posts: 923
Referrals: 0



Activity
0%


« Reply #1 on: February 27, 2011, 01:10:26 AM »

Check if this work.
var number,x,x1;
begin
//street_bet...
x:=1;  //"x" is an variable                   
// Here I wait for new round and then the first bet take place on 10 streets.....***
repeat
print('wait f o r a new round t o start');   
wait_for_new_round();                           
print('new round started');
print('click chip2');// 10 cents bet.         
click_chip2();
x1:=0;  //"x1" is an variable                           
Repeat
    click_street_bet_0_1_2();            //Here I want the progression to take place if lost on same streets: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.
    click_street_bet_1_2_3();           
    click_street_bet_7_8_9();         
    click_street_bet_10_11_12();
    click_street_bet_13_14_15();
    click_street_bet_19_20_21();
    click_street_bet_25_26_27();
    click_street_bet_28_29_30();                           
    click_street_bet_31_32_33();       
    click_street_bet_34_35_36();
inc (x1);
until (x1>=x);                               
print('click confirm bet button');
click_confirm_bet_button();
print('wait f o r a new number t o land');
wait_for_new_number();
number:=get_last_landed_number();   //"number" is an variable
                                                         
case number of     
0:x:=1;             //Here if won to go back to start.....****     
1:x:=1;
2:x:=1;
3:x:=1; 
4:inc (x);
5:inc (x);                               
6:inc (x);         
7:x:=1;
8:x:=1;
9:x:=1;
10:x:=1;
11:x:=1;
12:x:=1;
13:x:=1;
14:x:=1;
15:x:=1;
16:inc (x);
17:inc (x);
18:inc (x);
19:x:=1;
20:x:=1;
21:x:=1;
22:inc (x); 
23:inc (x);
24:inc (x);
25:x:=1;
26:x:=1; 
27:x:=1;
28:x:=1;
29:x:=1;
30:x:=1;
31:x:=1;
32:x:=1;
33:x:=1;
34:x:=1;
35:x:=1;
36:x:=1;
end;         
if (x>=12) then           
x:=1;
print('Landed number '+IntToStr(get_last_landed_number()));
until (x=0);                                                       

end;
Logged
starfighter55
GOLD Member
Trade Count: (0)
Full Member
**

Karma: 293
Offline Offline

:May 14, 2013, 10:18:58 PM
Posts: 342
Referrals: 0



Activity
0%


« Reply #2 on: February 27, 2011, 01:31:31 AM »

Hi Alfolof...

You are awsome...Thanks again..... This script work with live roulette... Great that you made it simple so I have something to work with.. I will use this script to learn and make my own settings and changes to see if that will work.. Wink

Cheers
Starfighter...
Logged

ric1280
VIP Member
Trade Count: (0)
Newbie
*

Karma: 0
Offline Offline

:February 13, 2013, 04:16:15 AM
Posts: 1
Referrals: 0



Activity
0%


« Reply #3 on: January 04, 2013, 12:29:31 AM »

 Hi Alfolof, I can see some diferences from that code to pascal. In pascal in the var section you have to put sothing like this "number:integer" to tell to the program the type of number and i notice that you use the function "print()" to print text but in pascal you should use writeln() or just write(). If that is working well , then the RSS uses a variant from pascal. Can you tell me the main diferences from both to be aware? RSS has a command console? is possible to create a text file in Rss platform?
Logged
Tags:
Pages: [1]   Go Up
  Print  
 
Jump to:  


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 21, 2013, 09:30:33 AM