Open Side Menu Go to the Top
Register
Which randomizer app is this one Doug is using? Which randomizer app is this one Doug is using?

09-20-2016 , 02:33 PM
https://gyazo.com/70130af8986c382ba1b90414fb3e998d

Hey. Doug has used this randomizer during one of his recent videos. From my understanding he clicks on the wanted % and the app returns a yes or no according to selected frequency.

I'm looking for something like that cause it looks better/faster than integer number generators or other common ways to randomize your frequencys.

Tried to find it online but with no success. Does anyone knows where can I find something like that?

Thanks
Which randomizer app is this one Doug is using? Quote
09-20-2016 , 03:03 PM
thats custom made man, i can tell by the url address on top is a html file he has on his hard drive and im sure u wont find it anywhere on the web
Which randomizer app is this one Doug is using? Quote
09-24-2016 , 04:33 PM
Pretty easy to do IMO. I suggest you to look for AHK and read the tutorials, probably you will learn to code a little bit and achieve what you want. Or instead, post in AHK forums.
GL
Which randomizer app is this one Doug is using? Quote
06-17-2017 , 07:03 AM
+1 if someone would make this I'd make a donation
Which randomizer app is this one Doug is using? Quote
06-19-2017 , 02:22 PM
Show the video clip
Which randomizer app is this one Doug is using? Quote
06-21-2017 , 08:10 AM
This seems super easy to make
Which randomizer app is this one Doug is using? Quote
06-21-2017 , 08:10 PM
If you have Excel, have the desired percentage in a cell, say B5. You can use Data Validation with a drop down list (e.g., 0.05, 0.10 , etc.) or enter the number manually.

Then in cell B6, for example, have the command

=If(B5<=RAND(), “YES”,”NO”)
Which randomizer app is this one Doug is using? Quote
06-22-2017 , 10:16 AM
Is it only for holdem?
Which randomizer app is this one Doug is using? Quote
06-22-2017 , 12:04 PM
I'm assuming it just gives a random yes/no based on the percent chosen. For example, choosing 33% will give "yes" (green) 33% of the time and "no" (red) 67% of the time.

Here's my version for that: www.dropbox.com/s/zyrkoo9dlk435gv/Randy.exe?dl=0


"Yes"




"No"





Customizable and savable percentages:




(The "rand" number is the result from the RNG for the particular query. If it's smaller than the chosen percent, the answer is yes; otherwise the answer is no. This is not important but rather just for informational purposes.)

Last edited by Max Cut; 06-22-2017 at 12:12 PM.
Which randomizer app is this one Doug is using? Quote
09-27-2020 , 04:11 AM
Cheers for sharing Max cut
Which randomizer app is this one Doug is using? Quote

      
m