$bet1_cum=0;
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
$bet1_cum=0;
#!/usr/bin/perl -w
#copyright [email protected] , License http://www.gnu.org/licenses/gpl.html
$incr = 2.5;
$win = 0;
$bet_start = 0.03;
$bet1=$bet_start;
$bet1_cum=0;
$bet1_profit=0;
$bet1_win=0;
$bet1_cum_win=0;
$bet1_reset=0;
$pot=3000; # amount of cash we have to play with
$table_max=100;
$hitmax=0; # should we goto table max before reseting if next bet would be greater than table max
# reset bets if we have won N amount recently.
# the idea is it stops the odds getting out of control and simulates seprate games if you played to N amount each time
$profit = 0;
$count=20000;
$c=0;
$b1="";
$lose_multiplier = 0.004089;
$win_multiplier = 1.984;
$win_factor = 3;
$r=rand;
$outfile = "/tmp/gamblingsim.$r.html";
$log_outfile = "/tmp/gamblingsim.$r.log";
open(FILE, ">$outfile") or die "couldnt open html file $!\n";
open(FILE_LOG, ">$log_outfile") or die "couldnt open log file $!\n";
$headercount=0;
$header =
"
#
rand
Bet
win
cum
cum win
Profit
";
print FILE
"
Max rounds to play: $count
Pot: \$$pot
table_max \$$table_max
Win Factor Potx$win_factor
bet increment multiplier $incr
Hit table max bet ?: $hitmax
$b1$c$b2 | $b1$rand$b2 | $b1$bet1$b2 | $b1$bet1_win$b2 | $b1$bet1_cum$b2 | $b1$bet1_cum_win$b2 | $b1$bet1_profit$b2 | LOSE | WIN FACTOR $win_factor ACHIVED |
$outfile = "/tmp/gamblingsim.$r.html";
$log_outfile = "/tmp/gamblingsim.$r.log";