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

Very simple code

Started by MAgnus, December 22, 2013, 04:47:07 PM

0 Members and 1 Guest are viewing this topic.

MAgnus

Hello everyone)

Need help with some simple sistem, system that puts bets on the numbers of which have been repeated more than 2 times during 37 spins....

I can do progressions and check win/loss and other by myself... but I can't figure out how to make a system of tracking numbers

Help please)   maybe there are such among existing systems

superman

All depends on what language you want it in mate.

create an array to hold the previous numbers

Global $array[37]

Spin wheel for 37 spins before checking for double hit numbers

While spincounter < 37

spin/enter numbers and push to $array

WEnd

Loop through the possiblt 37 numbers searching for any that show 2 times in your array

$i = 0
Do

$j = _ArrayFindAll($array, $i)

If UBound($j) = 2

_ArrayPush($betarray, $i, 1)

EndIf

$i = $i+1

Until $i = 37


You now have a list of numbers in your $betarray to place bets on, from there just spin and tell it to check the result against that array, simples




MAgnus

its must be RX scripting code and i think will be look somthing like this:

track last number for 1 spins record"Last Number"layout
track last number for 37 spins record"37 Numbers"layout
  if record"Last Number"layout found record"37 numbers"layout
   begin
      Put 1 unit bet on record "BET NUMBERS" layout list 
   end


Azim

Quote from: Bockstaele on November 22, 2013, 03:18:04 PM
One site with free program and to see what you you think. Site is psroulette.com
It is helpful for monitoring complicated systems like bet on streets after n times spins and other. Hope you like it.

Here might be something you looking for...

MAgnus

For example what i mean
i want to learn RX to bet on number which repeat 2 or more time..
on the picture that numbers is: 17 27 13 23 24 31 22 18 29 28 35 3
This is hot number of 40 spins, If on 41 spin any number has stopped be hot, it must deleted from bet list

MAgnus

-