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

News:

Progression bets are nothing more than different size bets on different spins. You could get lucky and win big, or unlucky and lose even more.

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

BASIC Progression and Trigger code in RX (for beginners) 2 Crazy Corner System

Started by ignatus, May 19, 11:00 AM 2018

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ignatus

OK, so i've learned how to code progression and Trigger-bet in RX.

Perhaps this code can be useful for a basic trigger and progression- system,(the code and progression can be modified, for your purpose)...

This is something i've played around with today..... it's perhaps a short-term winner(?) "crazy corner", but in the long run, losses seems to happen more frequently, it did pass 40 000-spins from the first test..have only done 2 testings so far..(first test 1u bets, second 5u bets)


RX CODE
==============================
system "CrazyCorner"

method "main"
begin
  while starting a new session
  begin
       Set List [5,5,5,5,10,10,10,15,15,15,25,25,25] to Record "progression" Data
  end

        Copy List [corner(1:5),corner(32:36)] to Record "bet" Layout


  while on each spin
  begin

     If Record "bet" Layout has not Hit 18 times in a row
     begin

         Put 1 on Record "progression" Data Index
         Put 100% of Record "progression" Data to Record "bet" Layout List
     end

    If Record "bet" Layout List Lost Each time
          Begin

           add 1 on Record "progression" Data Index
           Put 100% of Record "progression" Data to Record "bet" Layout List
          End


  if Record "bet" Layout Won each time
  begin
   clear record "bet" layout
   Put 1 on Record "progression" Data Index
  end


  If Record "progression" Data Index >
  Record "progression" Data Count
    Begin
      clear record "bet" layout
      Put 1 on Record "progression" Data Index
    End

  end
END
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

ignatus

If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Face


ignatus

If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Face


ignatus

If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Face


ignatus

Quote from: Face on May 27, 04:56 PM 2018
Thank you :)    RNG or Live?

This bet should work with both....but it's unrealistic to wait X-number of losses before bet? :S idk, this was just an experiment,
If you like to donate link::[url="//paypal.me/ignatus1"]//paypal.me/ignatus1[/url]

"Focus on predicting wheel sectors where the ball is expected to land" ~Steve

Face


Delta11

@ignatus

Can you help me to code the progression in multi level instead of going just one run like
your current one is :  Set List [5,5,5,5,10,10,10,15,15,15,25,25,25] to Record "progression" Data

But instead of all at once on trigger i want to do like
1st trigger then [5,5,5,5] if pass at any level reset to start else wait for next trigger then
2nd trigger then [10,10,10,15] if pass at any level reset to start else wait for next trigger then
3rd trigger then [15,15,25,25] if pass at any level reset to start else wait for next trigger then
4th trigger then [25,45,45,70] if pass at any level reset to start else end session total loss

Thanks in advance

-