Author

Topic: [FREE]Dice Calculator ~ Calculate your odds ~ Level up your game ! (Read 3987 times)

legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
Hi,

you can try with this one,
https://www.bitso.me/hi-lo-calc.php

it does 1 million rolls in 0.5 seconds (on i7 8gb ram with chunk size 20000) without locking browser.
You can test also billions.

I suggest you beginning at 10^-8 as base bet, 1 satoshi.

Not graphs yet.. but I'll add more stuff in future.
Use Strategy=0 for classic martingale.

Cheers.

Nice tool.

Does the HIGH/LOW box only take 0 and 1 as inputs? It's not very clear which is which so I suggest making this a checkbox stating whether you want to roll high (and just default to low if it's not checked).

You should also display specifically the settings each strategy uses without having to guess which number it is. I'm not sure how many strategies you implemented so making some kind of summary for each that can be viewed all at once will be useful.
newbie
Activity: 22
Merit: 2
Hi,

you can try with this one,
https://www.bitso.me/hi-lo-calc.php

it does 1 million rolls in 0.5 seconds (on i7 8gb ram with chunk size 20000) without locking browser.
You can test also billions.

I suggest you beginning at 10^-8 as base bet, 1 satoshi.

Not graphs yet.. but I'll add more stuff in future.
Use Strategy=0 for classic martingale.

Cheers.
legendary
Activity: 3808
Merit: 1723
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm

Very interesting features will look into them Smiley

I've been using it for a few years to backtest my strategies. But the problem is that if you choose like 10,000 roll or higher, it will lag your browser. Thats the only negative aspect to it.
newbie
Activity: 50
Merit: 0
newbie
Activity: 14
Merit: 0
I'll be releasing an update later tonight Smiley
newbie
Activity: 14
Merit: 0
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm

Very interesting features will look into them Smiley
hero member
Activity: 882
Merit: 1000
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm

I don't know that site before but it certainly looks and works great. It would be perfect if we can set the win chance and multiplier freely.
legendary
Activity: 3808
Merit: 1723
This is nice. Its pretty much like the Satoshi Dice simulator i've been using for years.

http://strtart.in/satoshi/satoshi.htm
newbie
Activity: 14
Merit: 0
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

That's a good idea but what's the point of a martingale bot when u can use autobetting?

the purpose of this little script is to just calculate the odds of going bust at certain win chance and multiplier percentages; it lets people see how likely it is that they will bust when using martingale, although im of the opinion that martingale will always bust.

Very interesting concept i think i might do some research on that and see
legendary
Activity: 1288
Merit: 1043
:^)
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

That's a good idea but what's the point of a martingale bot when u can use autobetting?

the purpose of this little script is to just calculate the odds of going bust at certain win chance and multiplier percentages; it lets people see how likely it is that they will bust when using martingale, although im of the opinion that martingale will always bust.
newbie
Activity: 14
Merit: 0
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

That's a good idea but what's the point of a martingale bot when u can use autobetting?
legendary
Activity: 2436
Merit: 1804
guess who's back
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here

as I remember first he wanted to sell it , but because there are many free calculators he changed his mind
legendary
Activity: 1540
Merit: 1013
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.

I think he is not making money here because the title is FREE. Even if he can code a betting bot, he will need to code a betting bot that is better than seuntjie's bot and it is hard to sell it as well because seuntjie's bot is very famous around here
hero member
Activity: 602
Merit: 500
In math we trust.
As people already said it's not that hard to code that.
I coded something similar last month in python.
It took me like 30 minutes of effort.
If you'd like to make money you need  to code more complicated things like
a betting martingale bot.
legendary
Activity: 1288
Merit: 1043
:^)
What is EV? Can anyone explain it to a newbie in this type of business here? I would be really happy if someone could link me to some sites where is this explained and easy said.

EV is expected value. https://en.wikipedia.org/wiki/Expected_value

example, since primedice has an edge of 1%, the EV is negative, and over the course of a large number of straight rolls (lets say, a million) you would be expected to have 99% of the bankroll that you started with.

Doesn't this make the casino unfair? I think that if there's this, we can't win in a long run, right?

well that's the point of a casino; casinos are for-profit entities, and the edge almost guarantees them that they will come out ahead in the long run. in real life casinos too, all the games and slots there are designed in some way to make the casino money. there's nothing unfair about that, fairness is if your rolls or results are random as they should be in an internet casino.
legendary
Activity: 3472
Merit: 10611
does double provide enough precision?
isn't decimal more suitable in these situations?

here is a little bit of clean-up , hope you don't mind me meddling  Roll Eyes
Code:
Console.WriteLine("Input the Chance of Losing 0-100% ");
float chance = float.Parse(Console.ReadLine());
Console.WriteLine("Input tries ");
int tries = int.Parse(Console.ReadLine());
Console.WriteLine("Input Amount of Bitcoins you wish to gamble ");
float btc = float.Parse(Console.ReadLine());
Console.WriteLine("Input House Edge 0-100% ");
float house_edge = float.Parse(Console.ReadLine());

I think you are right but float seems to work just fine for now.
I will work it more later tonight and update it Smiley

i am just learning c# myself as a hobby and i am not quite sure about all the number variable types and these things always confuse me.
i might run some different tests with a bunch of numbers to make sure.

You want my 2 satoshi's on that ?

Here you go: Fuck calculations ! Gambe for fun, not for profits. That's the only way it should be done.

nah. the fun of coding is much more than gambling Roll Eyes
newbie
Activity: 14
Merit: 0
You want my 2 satoshi's on that ?

Here you go: Fuck calculations ! Gambe for fun, not for profits. That's the only way it should be done.

I understand your point of view but there's people who enjoy analysis Smiley
legendary
Activity: 2464
Merit: 1037
CEO @ Stake.com and Primedice.com
You want my 2 satoshi's on that ?

Here you go: Fuck calculations ! Gambe for fun, not for profits. That's the only way it should be done.
newbie
Activity: 14
Merit: 0
you can't level up your game..
its all based on luck and if your ready to lose any winnings will be a suprise.
BEFORE you deposit you should consider do afford to lose that amount.
and if you think there are some winning strategy you are SOOO wrong.
regards.
-Katerniko1

You are right BUT over a large amount of plays you should be back to 99% of your bankroll since the house edge is 1%

Also the EV will always be negative due to the house edge but u can always calculate what it would be most profitable to play on
hero member
Activity: 518
Merit: 500
What is EV? Can anyone explain it to a newbie in this type of business here? I would be really happy if someone could link me to some sites where is this explained and easy said.

EV is expected value. https://en.wikipedia.org/wiki/Expected_value

example, since primedice has an edge of 1%, the EV is negative, and over the course of a large number of straight rolls (lets say, a million) you would be expected to have 99% of the bankroll that you started with.

Doesn't this make the casino unfair? I think that if there's this, we can't win in a long run, right?
legendary
Activity: 966
Merit: 1000
you can't level up your game..
its all based on luck and if your ready to lose any winnings will be a suprise.
BEFORE you deposit you should consider do afford to lose that amount.
and if you think there are some winning strategy you are SOOO wrong.
regards.
-Katerniko1
legendary
Activity: 1288
Merit: 1043
:^)
What is EV? Can anyone explain it to a newbie in this type of business here? I would be really happy if someone could link me to some sites where is this explained and easy said.

EV is expected value. https://en.wikipedia.org/wiki/Expected_value

example, since primedice has an edge of 1%, the EV is negative, and over the course of a large number of straight rolls (lets say, a million) you would be expected to have 99% of the bankroll that you started with.
hero member
Activity: 518
Merit: 500
What is EV? Can anyone explain it to a newbie in this type of business here? I would be really happy if someone could link me to some sites where is this explained and easy said.
newbie
Activity: 14
Merit: 0
If this at any point requires your primedice credentials , BE VERY CAREFULL !

It won't , i'm looking to keep it as simple as possible and maybe let it be usable with other casinos.
It will always be open source

i dont see why it shouldnt be usable with other casinos already; you already have an input for the house edge in case another casino's edge is different, and youre not making a bot so no need to implement api access for every site. its just a simple calculator for martingale to prepare for the worse-case scenario.


I will also update it tonight with % of consecutive wins in certain amount of tries
legendary
Activity: 1288
Merit: 1043
:^)
If this at any point requires your primedice credentials , BE VERY CAREFULL !

It won't , i'm looking to keep it as simple as possible and maybe let it be usable with other casinos.
It will always be open source

i dont see why it shouldnt be usable with other casinos already; you already have an input for the house edge in case another casino's edge is different, and youre not making a bot so no need to implement api access for every site. its just a simple calculator for martingale to prepare for the worse-case scenario.
newbie
Activity: 14
Merit: 0
If this at any point requires your primedice credentials , BE VERY CAREFULL !

It won't , i'm looking to keep it as simple as possible and maybe let it be usable with other casinos.
It will always be open source
legendary
Activity: 2464
Merit: 1037
CEO @ Stake.com and Primedice.com
If this at any point requires your primedice credentials , BE VERY CAREFULL !
hero member
Activity: 502
Merit: 500
This user is a retard
full member
Activity: 154
Merit: 100
That Darn Cat
Yeah, I would never pay for such a calculator unless I got to try it for five or ten minutes before.  Software trials are a standard now.
newbie
Activity: 14
Merit: 0
does double provide enough precision?
isn't decimal more suitable in these situations?

here is a little bit of clean-up , hope you don't mind me meddling  Roll Eyes
Code:
Console.WriteLine("Input the Chance of Losing 0-100% ");
float chance = float.Parse(Console.ReadLine());
Console.WriteLine("Input tries ");
int tries = int.Parse(Console.ReadLine());
Console.WriteLine("Input Amount of Bitcoins you wish to gamble ");
float btc = float.Parse(Console.ReadLine());
Console.WriteLine("Input House Edge 0-100% ");
float house_edge = float.Parse(Console.ReadLine());

I think you are right but float seems to work just fine for now.
I will work it more later tonight and update it Smiley
legendary
Activity: 2884
Merit: 1117
Download python, save that script in notepad as calculator.py and then execute it.. Tongue
lemme test if I said everything it's ok.
nope, the py script gives me error.
hero member
Activity: 812
Merit: 1000
Is it possible to make a web version of it , something which doesn't involves downloading? Or its not possible to do that?

I think you'll be able to put it on a free domain/server and it will come in real handy. And you might be able to make some money off it by putting some ads on the page.
BitBaby: there is even the python scrypt you can compile by yourself Wink

Assuming.. one knows how to.  Wink
legendary
Activity: 2884
Merit: 1117
Is it possible to make a web version of it , something which doesn't involves downloading? Or its not possible to do that?

I think you'll be able to put it on a free domain/server and it will come in real handy. And you might be able to make some money off it by putting some ads on the page.
BitBaby: there is even the python scrypt you can compile by yourself Wink
hero member
Activity: 812
Merit: 1000
Is it possible to make a web version of it , something which doesn't involves downloading? Or its not possible to do that?

I think you'll be able to put it on a free domain/server and it will come in real handy. And you might be able to make some money off it by putting some ads on the page.
legendary
Activity: 3472
Merit: 10611
does double provide enough precision?
isn't decimal more suitable in these situations?

here is a little bit of clean-up , hope you don't mind me meddling  Roll Eyes
Code:
Console.WriteLine("Input the Chance of Losing 0-100% ");
float chance = float.Parse(Console.ReadLine());
Console.WriteLine("Input tries ");
int tries = int.Parse(Console.ReadLine());
Console.WriteLine("Input Amount of Bitcoins you wish to gamble ");
float btc = float.Parse(Console.ReadLine());
Console.WriteLine("Input House Edge 0-100% ");
float house_edge = float.Parse(Console.ReadLine());
newbie
Activity: 14
Merit: 0
cool open source calculator . keep up the good work

Just put up a new minor update with icon.

Tonight i will work on finding consecutive chances

for example

30% chance =

1st win: 30%
2nd win: 9%
3rd win: 2.7%
legendary
Activity: 1372
Merit: 1032
All I know is that I know nothing.
cool open source calculator . keep up the good work
newbie
Activity: 25
Merit: 0
Hope you can find something that works man! I've been playing around on PD for a while, and I've tried many different methods. Nothing works well yet. Have found some luck on 99x. Hits more than you think, also like doing 9x over til 21 red, then switching to under.

Good luck!
hero member
Activity: 714
Merit: 503
It's really cool  Wink

Did you have into account the house edge?

Not right now i'll have to see how i'll be able to account for the edge

it seems you finally can input the house edge to make it available for all dices

Nice  Cheesy
newbie
Activity: 14
Merit: 0
0.5% house edge? I think u are talking about safedice??  In PD, the house edge is 1%, i am sure.

You program is awesome, it helps us, thanks for your calculator, and good luck to those who use it and play in PD.

Thanks your kind words keep me going Smiley i will try to improve it as much as i can
hero member
Activity: 840
Merit: 1000
0.5% house edge? I think u are talking about safedice??  In PD, the house edge is 1%, i am sure.

You program is awesome, it helps us, thanks for your calculator, and good luck to those who use it and play in PD.
legendary
Activity: 2884
Merit: 1117
Thank you very much, so many memories... Roll Eyes
newbie
Activity: 14
Merit: 0
Python source code pls? would be good Cheesy

chance = float(raw_input("Input the Chance of Losing 0-100% "))  / 100
tries = int(raw_input("Input tries "))
btc = float(raw_input("Input Amount of Bitcoins you wish to gamble "))
house_edge = float(raw_input("Input the House edge 0-100% "))  / 100
chance += house_edge

def primedicecalculator(chance,tries,btc):
    EV = pow(chance,tries)
    total = 0.0
    for x in range(0,tries):
        lost = btc * 2
        total += float(lost)
    print "The chance of a %d losing streak is %f%%" % (tries,EV * 100)
    print "That means %f in 100 tries or %f in 1000 tries" % (EV * 100,EV * 1000)
    print "[MartinGale]Amount of BTC that has to be gambled to win back from the loss spree %f " % (total)

primedicecalculator(chance,tries,btc)



legendary
Activity: 2884
Merit: 1117
Python source code pls? would be good Cheesy
newbie
Activity: 14
Merit: 0
Thanks for putting g I. The time to create the program this is good for all dice sites in general I think as many have the same house edges etc. I'll probably try out the program later too  Smiley

I'll try to make it as universal as possible Smiley
legendary
Activity: 1218
Merit: 1000
Thanks for putting g I. The time to create the program this is good for all dice sites in general I think as many have the same house edges etc. I'll probably try out the program later too  Smiley
newbie
Activity: 14
Merit: 0
If there was no house edge , over a large amount of plays you would eventually break even mathematically speaking
legendary
Activity: 1288
Merit: 1000
Thanks for this, it is definitely a valuable tool. I've always wanted a calculator to find the chance of losing a bet x times in a row.
But you realize that if you are counting probability of something then exact numbers of wins and loses are not gonna be possible to find?
Thats is why it is called probability. You could assume, if calculator which can show you how much you will win existed Dice would not be called gambling anymore.
newbie
Activity: 14
Merit: 0
Gonna update original post with a link with the current progress !
hero member
Activity: 640
Merit: 500
From my own observation, it is very hard for you to sell this type of software. So it is better to include a tip address and make the program open source and let people use it and modify it freely.
hero member
Activity: 634
Merit: 500
You can add to forum for free download and insert a tip address  Grin
hero member
Activity: 714
Merit: 500
Me, myself and I
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:


What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks Smiley

Nice program maybe you want to share this for free. That's would be nice because this is just calculator right Wink
sr. member
Activity: 420
Merit: 250
Thanks for this, it is definitely a valuable tool. I've always wanted a calculator to find the chance of losing a bet x times in a row.
hero member
Activity: 882
Merit: 1000
Exhausted
What more would you like to see?

1. Make the house edge % adjustable, so the calculator will work not only for PD but any site with a fixed house edge.
2. Calculation of the chance of having a m-loss-streak within n bets, so the user can understand how likely they are going to get, say 10 losses in a row within 1000 bets.
full member
Activity: 238
Merit: 100
★YoBit.Net★ 200+ Coins Exchange & Dice
if i were you i would sell it at the very start because people who get it for free will start to recreating it, updating and giving away for free and you will be left without any money for your fwork
sr. member
Activity: 462
Merit: 250
i think you should give it for free a beta version to make people test it then you can buy the best version Wink
full member
Activity: 154
Merit: 100
That Darn Cat
first off, primedice's edge is 1%, and theres not really any point to selling this, as this isnt that hard to code (could probably be done in under an hour with basic knowledge), and tools like this already exist. if someone could link said dice calculator tools here that'd be great.

This.  With this calculator how low do you expect to lower the max one percent house edge at Primedice?  Also, I do not understand how this is even possible.
legendary
Activity: 2884
Merit: 1117
Offer this one for free, so I can study some of your code Roll Eyes
It's long time I don't program in python, you would bring me so many memories... Cheesy
full member
Activity: 147
Merit: 100
the calculator coding was easy, better you give people for free.
if you still want to sell it.
sell it below $1
legendary
Activity: 2870
Merit: 7490
Crypto Swap Exchange
You better distribute it for free Smiley
But, you could add donation links so you could earn little money from it Smiley

Also, i don't think it's too useful as long as if primedice still has positive house edge
newbie
Activity: 14
Merit: 0
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
http://i.imgur.com/c3FHIli.png

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks Smiley

Thank you for your efforts.  I'm very interested to give it a try whenever you can share it.  Things that I think would be helfpul:

1.  Unlimited values or very high values for variables such as bankroll, bet size, and amount of bets.  For amount of bets I'd like to go as high as 100,000,000 (100M)
2.  If it's ever possible... lots of flexibility and maybe also templates of various gambling strats like Fibonacci, D'Alambert, and Labouchere.
3.  Some way to enter preconfigured lists.. basically flexibility to incorporate any setting you could make in Seuntjie's bot.

Maybe this could be an addon to seuntjie's bot?


I haven't heard about the bot you are talking about , if u could give me more info i could look into it Smiley
legendary
Activity: 2296
Merit: 1031
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:


What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks Smiley

Thank you for your efforts.  I'm very interested to give it a try whenever you can share it.  Things that I think would be helfpul:

1.  Unlimited values or very high values for variables such as bankroll, bet size, and amount of bets.  For amount of bets I'd like to go as high as 100,000,000 (100M)
2.  If it's ever possible... lots of flexibility and maybe also templates of various gambling strats like Fibonacci, D'Alambert, and Labouchere.
3.  Some way to enter preconfigured lists.. basically flexibility to incorporate any setting you could make in Seuntjie's bot.

Maybe this could be an addon to seuntjie's bot?
legendary
Activity: 3472
Merit: 10611
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
[i mg]http://i.imgur.com/c3FHIli.png[/img]

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks Smiley

very nice effort, i would very much like to see the code of your project if it is in c# , i am always interested in programming projects

p.s. i don't think you can sell the project since there is nothing special about it yet, and also i think PrimeDice's house edge is 1% not 0.5% check their website faq to make sure.
newbie
Activity: 14
Merit: 0
It's really cool  Wink

Did you have into account the house edge?

Not right now i'll have to see how i'll be able to account for the edge
hero member
Activity: 714
Merit: 503
It's really cool  Wink

Did you have into account the house edge?
hero member
Activity: 504
Merit: 500
That's a nice product and I believe you should distribute it for free!
You will surely get some donations in doing so...
hero member
Activity: 490
Merit: 500
~ScapeGoat~

Should i sell it eventually or distribute it free?


Cool , nice effort !
I guess you should distribute this tool as free , as it will help you to gain Popularity and in future it can work as vouch for your next project.
But there is no point of this tool , as primedice offers 1% edge , moreover there are much tools available in market and one can code it for himself who has a preliminary knowledge.
Anyways best of Luck for your efforts !
legendary
Activity: 1288
Merit: 1043
:^)
Well i understand if i'm going to sell it i wouldn't put over the price of 5$

I haven't found anything really useful and i'm looking into advancing it a lot , even calculating total EV but i need more ideas to know how to work it Smiley
http://www.statisticshowto.com/how-to-calculate-expected-value-in-statistics/
http://statistics.about.com/od/Formulas/a/What-Is-The-Formula-For-Expected-Value.htm

just do a google search... but the expected value wont really change, it will always be .99 with the house edge.
newbie
Activity: 14
Merit: 0
Well i understand if i'm going to sell it i wouldn't put over the price of 5$

I haven't found anything really useful and i'm looking into advancing it a lot , even calculating total EV but i need more ideas to know how to work it Smiley
legendary
Activity: 1288
Merit: 1043
:^)
first off, primedice's edge is 1%, and theres not really any point to selling this, as this isnt that hard to code (could probably be done in under an hour with basic knowledge), and tools like this already exist. if someone could link said dice calculator tools here that'd be great.
newbie
Activity: 14
Merit: 0
Hello , i am currently developing a tool to use with primedice that will (Hopefully) calculate a lot of things such as EV etc , i understand primedice's EV is always negative due to the 0.5% edge but i'll do my best.


This is it right now:
http://i.imgur.com/c3FHIli.png

What more would you like to see?
Should i sell it eventually or distribute it free?

The program is developed using Python but i will port it to C# later for easy use.

Thanks Smiley



Basic Source C#:
Quote
 
            Console.WriteLine("Input the Chance of Losing 0-100% ");
            string strchance = Console.ReadLine();
            float chance = float.Parse(strchance);
            Console.WriteLine("Input tries ");
            string strtries = Console.ReadLine();
            int tries = int.Parse(strtries);
            Console.WriteLine("Input Amount of Bitcoins you wish to gamble ");
            string strbtc = Console.ReadLine();
            float btc = float.Parse(strbtc);
            Console.WriteLine("Input House Edge 0-100% ");
            string strhouse_edge = Console.ReadLine();

            float house_edge = float.Parse(strhouse_edge);
            
            chance = chance / 100;
            house_edge = chance / 100;            

            float EV = (float)Math.Pow(chance, tries);
            float total = 0.0f;
            float lost = 0;
            for (int i = 0; i < tries; i++)
            {
                lost = btc * 2;
                total += (float)lost;
            }
            Console.WriteLine("The chance of a {0} losing streak is {1}%", tries, EV * 100);
            Console.WriteLine("That means {0} in 100 tries or {1} in 1000 tries", EV * 100, EV * 1000);
            Console.WriteLine("[MartinGale]Amount of BTC that has to be gambled to win back from the loss spree {0}", total);



If u wish to donate : 1Pc5wLrQjYQqLpQWZxyCjNpacsqSECuu1

More work will be done in the upcoming days.



EDIT: Minor update added icon too Smiley
Jump to: