Our members are dedicated to PASSION and PURPOSE without drama!

Tracking Software for Practice & Real Play

Started by Gizmotron, December 05, 2012, 10:20:34 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Gizmotron

Bally, I have a special tracker that allows me to see these table layout bets plus several more groupings that are based on inside bets. These additional sets are unique sets of dozens based on locations on the wheel. With extra sets of dozens it's easier to find working collisions.

I suppose my next upgrade could include custom user based pet sets. I could add a simple to add text string that creates a custom made tracking system for favorite bets.
"...IT'S AGAINST THE LAW TO BREAK THE LAW OF AVERAGES." 

Gizmotron

They don't let you use computers at real casinos so I use index cards.

"...IT'S AGAINST THE LAW TO BREAK THE LAW OF AVERAGES." 

Bally6354

I am impressed and wish I had this kind of ability! It's something I never really thought about learning but maybe I should start. I am going to take a few courses in 2013 just to get my focus away from roulette all the time and some kind of programming course is maybe a good idea.

It's like I said on another post Gizmo! 'you are only limited by what you can't see in this game' I believe that 100%. There is nearly always something that presents itself and you sure don't need to be right all the time!

cheers
Sometimes it is the people who no one imagines anything of who do the things that no one can imagine.

Gizmotron

Bally, your method of hanging around even until you get a few wins strung together is a great strategy. It depends on simple patience.

I once hit a perfect pattern of a single dozen that kept going for 30+ spins. It looked like this: @@&@@&@@&@@&@@&@@&... the @ were hits and the & were misses. I took $60 and turned it into $3,000 in about thirty minutes. Always be on the lookout for perfect occurring patterns.
"...IT'S AGAINST THE LAW TO BREAK THE LAW OF AVERAGES." 

Bally6354

Quote from: Gizmotron on December 27, 2012, 04:03:47 PM
I once hit a perfect pattern of a single dozen that kept going for 30+ spins. It looked like this: @@&@@&@@&@@&@@&@@&... the @ were hits and the & were misses. I took $60 and turned it into $3,000 in about thirty minutes. Always be on the lookout for perfect occurring patterns.

The game last night where I won +99 was a perfect example of that.

My 'run of three' strategy which incorporates the (S) and (O) was chopping...

S O S O S O S O

Now betting for the O just means that you would only need to play one dozen or column.

You can filter that even further to get it right down to a couple of numbers.

There are times when this is going to produce an incredible run and you can soon ratchet up some profit just like you said.
Sometimes it is the people who no one imagines anything of who do the things that no one can imagine.

Gizmotron

Quote from: Bally6354 on December 27, 2012, 03:50:34 PM
I am impressed and wish I had this kind of ability! It's something I never really thought about learning but maybe I should start. I am going to take a few courses in 2013 just to get my focus away from roulette all the time and some kind of programming course is maybe a good idea.

You won't find an easier language to learn or program with. This is LiveCode made by Runtime Revolution. These examples are attached to a button on the screen. One example has comments, the other does not. If you have no plans on making a living from your programming hobby then this is the very best way to go.

on mouseUp
  put "" into field "results"
  repeat with i = 1 to 50
   put random(37) into thisSpin
   put "1,2,3,4,5,6,7,8,9,10,11,12," into hList
   if thisSpin is among the items of hList then
      put "| X    | -- " after field "results"
      put i & return after field "results"
   end if
  end repeat
end mouseUp

on mouseUp -- starts the mouse click function
  put "" into field "results" -- clears the results text field
  repeat with i = 1 to 50 -- causes 50 spins
   put random(37) into thisSpin -- selects a random spin
   put "1,2,3,4,5,6,7,8,9,10,11,12," into hList -- sets the bets that win
   if thisSpin is among the items of hList then -- checks for a winner
      put "| X    | -- " after field "results" -- fills in chart
      put i & return after field "results" -- adds the line number
   end if -- ends the if/then condition
  end repeat -- ends the 50 repeats
end mouseUp -- ends the mouse click function
"...IT'S AGAINST THE LAW TO BREAK THE LAW OF AVERAGES." 

Gizmotron

Bally  - " There are times when this is going to produce an incredible run and you can soon ratchet up some profit just like you said."

I've always wanted to tell people that there are moments when you can completely dismantle the casino and its measly house advantage. Sometimes all reason and all intimidation seems to go right out the door. For a brief stretch of spins you can drop huge bets on the casino like a bombing mission in a B-52. It is the next best thing to a bank robbery. While it happens you win every bet, every spin. I let some of it ride while I take some off. The trick is to get up to high flat bets and to ride it until it dies.

"Fortune favors the prepared mind."
"...IT'S AGAINST THE LAW TO BREAK THE LAW OF AVERAGES." 

Max


Gizmotron

"...IT'S AGAINST THE LAW TO BREAK THE LAW OF AVERAGES."