Open Side Menu Go to the Top
Register
Simple RNG program, please help Simple RNG program, please help

11-16-2018 , 08:34 AM
Hey guys,

I do not know if this is the appropriate place to post this but I will give it a shot.
Does there exists a simple softwear that would act as a perfect randomizer on the fly when I am playing poker?

For example: I am 3betting this hand 50% of the time, and i would like to know
if i should 3bet it "this" time, while still being at the right frequency. I know i can just pick half the combos or half the suites in this spot, but extending this to a postflop game, I think it would be very beneficial for me to have this as a guide. A program should be something basic where I just put in a % i want, lets say 50% and the program gives me a green or red light based on if i "hit it this time".

Would very much appreciate the help guys.

Last edited by MTTwannabe; 11-16-2018 at 08:36 AM. Reason: missed some details
Simple RNG program, please help Quote
11-16-2018 , 09:00 AM
I have heard that some people use the second hand on a watch or clock. A digital clock would work just the same.

1 to 30 seconds yes, 31 to 60 seconds no. Elegantly simple and always available.
Simple RNG program, please help Quote
11-16-2018 , 11:32 AM
Coming from a background in software, I'm not sure the program would be exactly what you're looking for.

There's a couple of ways to accomplish it, but ultimately it comes down to two. Either the program would have to know how many times you are going to be dealt those hands overall (and then tell you how many/when to 3!) Or it would here a running total and give you the green light until you crossed the limit. There's problems with both.

First, you're not going to be at exactly x% unless the number of opportunities are even (6/12, 7/14, etc) if you're doing the running count version. If that's the case, it would be predictable the more often you used the program.

Knowing the lifetime number of events that would out would help makes it random (or at least appear random). But that's hard to do because the likelihood of you getting certain cards if also random. So you're in a sense, using a random event to create another random event.

A better way to write the program would be to set a threshold of hands say 100k and predict based on that hope often you would be dealt those cards and then randomly choose when to 3! Based on the amount of hands remaining and your current percentage.

The only true "rng" comes from the human brain, and even that can be influenced.

A better approach would be to use poker tracker out something like that and look at your stats. Then try to adjust them yourself.
Simple RNG program, please help Quote
11-16-2018 , 11:50 AM
https://www.random.org

Min = 1
Max = 100

Set it however you want it (ie evens = bet & odd = fold or 1-50 = bet & 51-100 = fold etc)

Adjust the parameters if you want a different %, eg for 75% bet -> 1-75 = bet & 76-100 = fold etc

As the first reply said, some people use seconds on their watch
Simple RNG program, please help Quote
11-17-2018 , 12:03 PM
Just use the color of the last board card dealt. Red will fall 50%, perfectly random, and you get a new one on every street. And if you think that might be eventually detected, switch your "yes" color every hand.

Last edited by NewOldGuy; 11-17-2018 at 12:23 PM.
Simple RNG program, please help Quote
11-17-2018 , 02:36 PM
http://holdemranges.com/download.html

Free randomizer here, scroll down to bottom of page to where it says “randomize” to download. This will do exactly what you want.
Simple RNG program, please help Quote
11-18-2018 , 03:57 AM
Quote:
Originally Posted by The Apex
http://holdemranges.com/download.html

Free randomizer here, scroll down to bottom of page to where it says “randomize” to download. This will do exactly what you want.
Thanks alot sir, now whe I download the randomizer and run it it only opens a
window that has 2 things. First thing are the ever changing numbers on top that change like every 2 seconds randomly, and below this is a 1 card (lets say 6 of diamonds) that changes every 2 seconds along with the numbers on top.

Is this working properly? I do not really know what to do or if maybe it is not working properly on my machine? It does not seem like I could do much here, or how can i use it for my purpose? Sorry that im quiet incompetent, just really do not know what to look for here.
Simple RNG program, please help Quote
11-18-2018 , 04:04 AM
Quote:
Originally Posted by MTTwannabe
Hey guys,

I do not know if this is the appropriate place to post this but I will give it a shot.
Does there exists a simple softwear that would act as a perfect randomizer on the fly when I am playing poker?

For example: I am 3betting this hand 50% of the time, and i would like to know
if i should 3bet it "this" time, while still being at the right frequency
. I know i can just pick half the combos or half the suites in this spot, but extending this to a postflop game, I think it would be very beneficial for me to have this as a guide. A program should be something basic where I just put in a % i want, lets say 50% and the program gives me a green or red light based on if i "hit it this time".

Would very much appreciate the help guys.
In this eg when this spot arises you would glance at the randomizer, if the number shown is 1-50 you would take one action and if its 51-100 you would take the other. You could also assign suits to certain actions( eg. hearts and spades 3b, diamonds and clubs do not 3b). Both would result in you 3betting 50% of the time.

Last edited by The Apex; 11-18-2018 at 04:12 AM.
Simple RNG program, please help Quote
11-18-2018 , 06:55 AM
Quote:
Originally Posted by The Apex
In this eg when this spot arises you would glance at the randomizer, if the number shown is 1-50 you would take one action and if its 51-100 you would take the other. You could also assign suits to certain actions( eg. hearts and spades 3b, diamonds and clubs do not 3b). Both would result in you 3betting 50% of the time.
Thank you so much for clearing this up for me. Cheers
Simple RNG program, please help Quote

      
m