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

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.
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.