Bitcoin Forum
September 25, 2025, 04:20:16 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Gambling / FREE DICE CASINO WEBSITE! 15 ZEROS! on: April 22, 2018, 06:12:28 PM
 Cool

Hello friends!

http://digitalmoon.ca/coin_power_freebie.html

Code:
<!doctype html>
<html>
<style>
@font-face {
font-family: systems_analysis;
src: url(systems_analysis.ttf);
}
@font-face {
font-family: eurostile_extended;
src: url('eurostile_extended.otf');
}
.betbutton {
background-color: black;
color: white;
border: none;
border-radius: 0.5px;
cursor: pointer;
width: 1800px;
height: 25px;
font-size: 20px;
border-radius: 12px;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2), 0 1.5px 5px 0 rgba(0,0,0,0.19);
font-family: systems_analysis;
}
.betbutton:hover {
background-color: white;
color: black;
}
.betbutton:active {
transform: translateY(1px);
}
.betbutton:focus {
outline:0 !important;
}
.balanceBox {
font-family: eurostile_extended;
font-size: 25px;
border: 1px transparent;
width: 1800px;
text-align: center;
}
.rollBox {
font-family: systems_analysis;
font-size: 50px;
border: 1px transparent;
width: 1800px;
text-align: center;
}
.infoText2 {
font-family: eurostile_extended;
font-size: 20px;
border: 1px transparent;
color: black;
}
</style>
<head>
<meta charset="utf-8">
<title>Coin Power</title>  
</head>
<body>
<center>
<input type="text" id="rollID" class="rollBox" value="0">
</center>
<br>
<center>
<p class="infoText2">payout</p>
<input type="text" id="payoutID" class="balanceBox" value="2.000000000000000" min="0">
</center>
<br>
<center>
<p class="infoText2">multiplier</p>
<input type="text" id="onLossID" class="balanceBox" value="10.00000000000000" min="0">
</center>
<br>
<center>
<p class="infoText2">bet</p>
<input type="text" id="betAmount" class="balanceBox" value="0.000000000000001">
</center>
<center>
<p class="infoText2">base</p>
<input type="text" id="baseBetAmount" class="balanceBox" value="0.000000000000001">
</center>
<br>
<center>
<p class="infoText2">balance</p>
<input type="text" id="balanceID" class="balanceBox" value="1.000000000000000" min="0" readonly>
</center>
<br>
<br>
<center>
<input type="button" class="betbutton" onclick="autoBet(); overBet()" value="start autobet"/>
</center>
<br>
<center>
<input type="button" class="betbutton" onclick="stopAutobet()" value="stop autobet"/>
</center>
<br>
<center>
<input type="button" class="betbutton" onclick="window.location.reload()" value="refresh"/>
</center>
<br>
<br>
<center>
<img src="litecoin_logo_A.jpg" width="128">
</center>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</body>
</html>
<script>
var x;

function autoBet() {
         x = setInterval(rollHashFunction, 100);
}
function stopAutobet() {
        clearInterval(x);
}  
</script>
<script>
function rollHashFunction() {
    var rollHash = Math.random()*10000;

document.getElementById("rollID").value = rollHash.toFixed(0);

var betAmountVar = document.getElementById("betAmount").value;

var baseBetAmountVar = document.getElementById("baseBetAmount").value;

var onLossVar = document.getElementById("onLossID").value;

var payoutVar = document.getElementById("payoutID").value;
        
var betAmountSet = Number(betAmountVar)*Number(onLossVar);

document.getElementById("betAmount").value = betAmountSet.toFixed(15);

var balanceVar = document.getElementById("balanceID").value;

var balanceADDAbove = Number(balanceVar)+(Number(betAmountVar)*Number(payoutVar));

var balanceADDBelowOne = (Number(payoutVar)-1)*Number(betAmountVar);

var balanceADDBelowTwo = Number(balanceVar)+Number(balanceADDBelowOne);

var balanceSUBTRACT = Number(balanceVar)-Number(betAmountVar);

var rollHashPayout= 10000/(Number(payoutVar));
        
if (payoutVar>2 && rollHash<rollHashPayout) {
    document.getElementById("balanceID").value = balanceADDAbove.toFixed(15);
document.getElementById("betAmount").value = baseBetAmountVar;
baseBetCrash();
} else if (payoutVar>2 && rollHash>rollHashPayout) {
    document.getElementById("balanceID").value = balanceSUBTRACT.toFixed(15);
baseBetCrash();
} else if (payoutVar<=2 && rollHash<rollHashPayout) {
    document.getElementById("balanceID").value = balanceADDBelowTwo.toFixed(15);
document.getElementById("betAmount").value = baseBetAmountVar;
baseBetCrash();
} else if (payoutVar<=2 && rollHash>rollHashPayout) {
    document.getElementById("balanceID").value = balanceSUBTRACT.toFixed(15);
baseBetCrash();
}
}
</script>
<script>
function baseBetCrash() {
var balanceVar = document.getElementById("balanceID").value;
if (balanceVar<=0.00000000000000000001) {
document.getElementById("betAmount").value = 0.00000000000000000000;
}
}
</script>
<script>
function overBet() {
var balanceVar = document.getElementById("balanceID").value;
if (betAmountVar>balanceVar) {
    document.getElementById("betAmount").value = 0;
}
}
</script>
</body>
</html>

The manager of Coin Power is BK:




BONUS! BINARY MARTINGALE:

http://www.digitalmoon.ca/Binary%20Martingale.jpg


And how to have two windows open at the same time:

https://finance.yahoo.com/news/how-to-split-your-screen-in-windows-10-twice-in-125541466359.html


yolodice.com autobet script:

Code:
{"roll_range":"lo","stop_loss":20000000,"stop_win":250,"on_start":"a=0.00001000;m=1.1","on_win":"m-=0.005","on_loss":"m=1.1;a*=2"}

Have fun!

2  Economy / Invites & Accounts / I would like to sell my Bitconnect account $636 value 1% profit per day for $400 on: January 09, 2018, 05:02:37 AM
Hello friends,

I have a Bitconnect account worth $636 USD making about 1% profit per day. Capital will be released in approximately 300 days.

I would like to sell it for $400 USD in bitcoin. I will supply username and password first before payment.

If you are interested please reply here and I will PM you or PM me directly. Thanks
3  Economy / Services / I would like to sell my Bitconnect account on: January 09, 2018, 04:18:39 AM
Hello friends,

I have a Bitconnect account worth $636 USD making on average around 1% daily with capital locked for another 300 days approximately.

I would like to sell this account for $400 USD in bitcoin. I will supply you with username and password first.

If interested, please reply here and I will send you a PM or PM me directly. Thanks 
4  Economy / Gambling discussion / Re: This Martingale Sequence CAN'T BLOW UP (free) on: May 01, 2017, 09:50:51 PM
Wait, what

You just wrote Martingale can't blow up and you proceed to explain a martingale strategy
The only change is you don't keep betting the same under/over on loss
The house can still win, it's not very likely there will be 15 unders in a row, but it's the same chance as 15 under/under/under/over/over etc. you wrote
It changes nothing Tongue

....

The thing is strategies do not matter at all

The house has it edge, and you don't
You have a 49.5% chance to win, no matter how long you play
The longer you play to greater earnings for the house, the more you play the bigger the chance of "unlikely" outcomes to happen
But you also have a chance of 15 right ones coming out, so who am I to judge o.O
Dunno
Good luck with this anyways Smiley

Nice one, thanks chief..
5  Economy / Gambling discussion / Re: This Martingale Sequence CAN'T BLOW UP (free) on: May 01, 2017, 09:10:12 PM
Maybe I'm totally mistaken but seriously, isn't that just too much of a pattern for randomness???!


First off, it doesn't matter if you bet "over" or "under".  Your odds are the same either way. 

Thank you for your response. I liked what you said. But may I ask why the above statement is true?

Personally I think randomness wouldn't make a pattern as ordered as 3/3/3/3/3. And my opinion is that the more complex a pattern is, the lower the odds are for it to manifest in a data feed. You seem like you are very knowledgeable about probability and dice action. Have you ever seen this over/under 3/3/3/3/3 pattern play out?

Thanks again and I am awaiting your reply. Cheers! 

Because that's how randomness works.  It's random.  Each bet is independent of each bet before or after it.  So any 50% coinflip bet has the same odds to go 'over' as 'under'.  Whatever happened before or after it is irrelevant and any patterns that arise are just coincidental.  A 3/3/3/3/3 pattern
has the exact same odds of occurring as a 1/1/1/1/1/1/1/1/1/1/1/1/1/1/1 pattern, or a 14/1 pattern, or a 1/14 pattern, or a 2/3/2/3/2/3 pattern, or any other pattern.  Because of randomness.  I'm sure all of those patterns have occurred over a 15 game sample thousands if not hundreds of thousands of times.

OK, but it seems like you're saying randomness can be order and order can be randomness. Although perhaps you're saying order can occur randomly. But then that would be order. No?
6  Economy / Gambling discussion / Re: This Martingale Sequence CAN'T BLOW UP (free) on: May 01, 2017, 07:46:25 PM
Maybe I'm totally mistaken but seriously, isn't that just too much of a pattern for randomness???!


First off, it doesn't matter if you bet "over" or "under".  Your odds are the same either way. 

Thank you for your response. I liked what you said. But may I ask why the above statement is true?

Personally I think randomness wouldn't make a pattern as ordered as 3/3/3/3/3. And my opinion is that the more complex a pattern is, the lower the odds are for it to manifest in a data feed. You seem like you are very knowledgeable about probability and dice action. Have you ever seen this over/under 3/3/3/3/3 pattern play out?

Thanks again and I am awaiting your reply. Cheers! 
7  Economy / Gambling discussion / Re: This Martingale Sequence CAN'T BLOW UP (free) on: May 01, 2017, 07:17:53 PM
Wait, what

You just wrote Martingale can't blow up and you proceed to explain a martingale strategy
The only change is you don't keep betting the same under/over on loss
The house can still win, it's not very likely there will be 15 unders in a row, but it's the same chance as 15 under/under/under/over/over etc. you wrote
It changes nothing Tongue

Hello and thank you for the reply.

Hmm, I suppose what I would say to that is how could two different strategies (1/1/1/1/1/1/1/1/1/1/1/1/1/1/1) versus (3/3/3/3/3) have exactly the same odds? I like to invoke physics whenever I can lol! Or God for that matter haha.

Also, I've been watching dice action (autobet and single rolls) long enough to double an account many many times and I've never seen 3/3/3/3/3.

Is your experience different?

And the casino or house can also act like a financial institution and setup their operation like a ponzi strategy. If there are always more deposits coming in and the rate of this inflow is greater than the rate of money flowing out of the business, then all they need to do is manage this process and take a small profit through a commission or differential (spread or house edge).

Does this make sense to you or am I incorrect with my logic?

Thanks!  Smiley

Bitcoin is the greatest lol!
8  Economy / Gambling discussion / This Martingale Sequence CAN'T BLOW UP (free) on: May 01, 2017, 05:15:47 PM
 Cool Hi! Are you a little discouraged by the x2, /2 buttons at your favorite casino?

Are you wondering why the forums and chat and general excitement about 'yet another gambling site' have subsided quite a bit?

I think it's probably because one of the only ways to bet (I like to call it trading now) is to ADD to your bet and typically involves a martingale

sequence and very often leaves the 'gambler' with an empty account as he watches loss 25 crystalize LOL!  Undecided

NOW, CHECK THIS OUT:

Multiplier=2.00
Increase on loss=100% (x2)

How to trade randomness:

3 trades under 50 - did you lose? don't worry about it!

then 3 trades over 50 - did you lose again? don't worry about it!

then 3 trades under 50 again - did you lose? wow!

then 3 trades over 50 - did you lose again? THE KING HAS BEEN CROWNED.

then 3 trades under 50 - ZOMG, homie, are you all out of duckets??? You pressed the wrong button or something cuz damn!

So that's makes 15 trades in the sequence and if you were to lose all 15 it would look somthing like this:

(under)
(under)
(under)
(over)
(over)
(over)
(under)
(under)
(under)
(over)
(over)
(over)
(under)
(under)
(under)

Maybe I'm totally mistaken but seriously, isn't that just too much of a pattern for randomness???!

Please add to the discussion. And please, don't say things like "no, your man cave smells like beets!" because it makes us all feel bad even if you don't realize how annoying saying stuff like that is.

Anyway if this method is considered viable after people comment, we should try to name this kind of trading strategy like 'pattern trading' or something...

Alright folks, I've done my best for now and this is after watching dice action for years and years so i hope you find this idea helpful.

Let's start skimming - ponzi meming like the awesome community we already are and could continue to be!

All the best! Good luck and good trading,

Hyperius  Smiley

BTCBTCBTC

9  Economy / Service Announcements / NEW CASINO! -> digitalmoon.ca/nicedice on: April 15, 2017, 05:45:53 AM
Do you think movie stars are overworked and underpaid? I don't either!

Presenting a fresh, new, lightning fast dice casino: https://www.digitalmoon.ca/nicedice

The goal of NiceDice is to cultivate a positive, honest and entertaining atmosphere where a good attitude and a sound approach can lead to success.

Here is a screenshot of the current site (which is updated regularly to provide a fun and creative visual experience):



Anyway I hope to see you there! Thank You and Good Luck!   Cool
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!