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

News:

Test the accuracy of your method to predict the winning number. If it works, then your system works. But tests over a few hundred spins tell you nothing.

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

Help: Seed change using code in RX

Started by joseito, May 30, 02:00 PM 2017

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

joseito

Hello, I'm trying to change the seed using code, but I have no idea if it can be done. At the moment I have this

system "resetsemilla"
{
  Esta programacion simplemente hace que cada x bolas se cambie
  la semilla, sin necesitar de ninguna interaccion para ello.
}

method "main"
   begin
      While Starting a New Session
         begin
            group
               begin
                 
                  Input Dropdown
                    "¿Tipo de ruleta?
                     1:= Doble 0
                     2:= Unico 0
                     3:= Sin cero"
                 en record"mesa"data

                 Input Data
                 "Cada cuantas bolas cambiamos semilla?:" en Record "Csemilla" Data

               end
        end

        if record"mesa"data = 1
          begin
             Load Double Wheel
          end

       if record"mesa"data = 2 
         begin
           Load Single Wheel
        end

       if record"mesa"data = 3
         begin
           Load No zero Wheel
         end

  while on each spin
     begin

            add 1 to record "Resetear Semilla"  data;
           
            if record "Resetear Semilla"  data > Record "Csemilla" Data then
              begin
                put 1 to record "Resetear Semilla" data;
                Generate Random Number from 1 to 2147483647 into Record "semilla" data
             end
     end


end



Basically, ask if we want to use roulette without 0 with 0 or with double 0 and every few balls we want to make the seed change.

The only thing that would be missing would be to find an instruction that forces the seed to manual change every time we call it.

Let's see if anyone knows how to complete this.

Thank you.

Sorry for the language, English is not my native language

-