Author

Topic: Just-Dice.com : now with added CLAMs : Play or Invest - page 203. (Read 454769 times)

legendary
Activity: 3416
Merit: 1912
The Concierge of Crypto
dabs - you don't know what you're talking about.  Even if you broke ECC you couldn't steal those coins.

Presumably because you would still need to reverse the address hash to find out the public key for that address, whereas the cold wallet has made several spends already and so its public key is - uh - public?

Ahh, yes, that part too. If a cold wallet address has spent any coins, then it's public key is public. Otherwise it's not public and much much harder to "crack". I understand this part, but most people don't realize there are a few more steps to generating the public key from the private key, and the generation of the base58check bitcoin version of the wallet import format.

I've played around with jackjack's pywallet and made a wallet.dat file with lots of transactions, but only if I could get the public key (which is published in the blockchain). Otherwise, you can't. In any case, you can't spend them without the private key.
sr. member
Activity: 293
Merit: 250
Saw that, but I have no idea how to use it, was hoping for something a little more user friendly.  Or maybe some instructions on how to use it.

update my post with the steps needed to run it (on Chrome).
legendary
Activity: 2940
Merit: 1333
ALL I NEED BENJAMIN

MONEY OVER EVERYTHING

Very nice!  He got it on only his 8th "bet 1 BTC at low chance, high multiplier" attempt - then left for the day.  That's the way to do it!
hero member
Activity: 488
Merit: 500
ALL I NEED BENJAMIN

MONEY OVER EVERYTHING
Holy shit  Cool
hero member
Activity: 854
Merit: 500
ALL I NEED BENJAMIN

MONEY OVER EVERYTHING
member
Activity: 83
Merit: 10
Btw, here's my last attempt at Martingale...  Roll Eyes


Probably I'd be better off not betting all my invest returns Grin
Welcome to the club  Grin
donator
Activity: 668
Merit: 500
dabs - you don't know what you're talking about.  Even if you broke ECC you couldn't steal those coins.

Presumably because you would still need to reverse the address hash to find out the public key for that address, whereas the cold wallet has made several spends already and so its public key is - uh - public?
Doog, you're smart!
hero member
Activity: 763
Merit: 500
Tried Vlees one yet ?

/*
Commands:
start()         - Start the Martingale Bot
stopNow()       - Stop the Martingale Bot
stopAfterWin()  - Stop the Martingale Bot After Winning
*/

//Settings
var initialBet = "0.0000010";
var chanceToWin = "10";

//Your don't need to change anything below here
var payoutMultiplier;
var martingaleMultiplier;
var nextBet;
var bStopNow = false;
var bStopAfterWin = false;

function start() {
    payoutMultiplier = 99/parseFloat(chanceToWin);
    martingaleMultiplier = payoutMultiplier/(payoutMultiplier-1);
    nextBet = parseFloat(initialBet);
    roll();
}

function stopNow() {
    bStopNow = true;
}

function stopAfterWin() {
    bStopAfterWin = true;
}

function roll() {
    var hi_lo = Math.round(Math.random());
    if (hi_lo == 0)
        hi_lo = 'hi';
    else
        hi_lo = 'lo';
    socket.emit("bet", csrf, {
        chance: chanceToWin,
        bet: nextBet.toFixed(Cool,
        which: hi_lo
    });
}

socket.on("wins", function (data) {
    if (bStopNow || bStopAfterWin)
    {
        bStopNow = false;
        bStopAfterWin = false;
        return;
    }
    nextBet = parseFloat(initialBet);
    roll();
});
socket.on("losses", function (data) {
    if (bStopNow)
    {
        bStopNow = false;
        return;
    }
    nextBet = nextBet * martingaleMultiplier;
    roll();
});
socket.on("jderror", function (data) {
    roll();
});

Saw that, but I have no idea how to use it, was hoping for something a little more user friendly.  Or maybe some instructions on how to use it.
hero member
Activity: 854
Merit: 500
Tried Vlees one yet ?

code

You have to put that in [ code ] tags, or else the :) will turn into a smiley.
g83
sr. member
Activity: 448
Merit: 250
Super Smash Bros. Ultimate Available Now!
Tried Vlees one yet ?

/*
Commands:
start()         - Start the Martingale Bot
stopNow()       - Stop the Martingale Bot
stopAfterWin()  - Stop the Martingale Bot After Winning
*/

//Settings
var initialBet = "0.0000010";
var chanceToWin = "10";

//Your don't need to change anything below here
var payoutMultiplier;
var martingaleMultiplier;
var nextBet;
var bStopNow = false;
var bStopAfterWin = false;

function start() {
    payoutMultiplier = 99/parseFloat(chanceToWin);
    martingaleMultiplier = payoutMultiplier/(payoutMultiplier-1);
    nextBet = parseFloat(initialBet);
    roll();
}

function stopNow() {
    bStopNow = true;
}

function stopAfterWin() {
    bStopAfterWin = true;
}

function roll() {
    var hi_lo = Math.round(Math.random());
    if (hi_lo == 0)
        hi_lo = 'hi';
    else
        hi_lo = 'lo';
    socket.emit("bet", csrf, {
        chance: chanceToWin,
        bet: nextBet.toFixed(Cool,
        which: hi_lo
    });
}

socket.on("wins", function (data) {
    if (bStopNow || bStopAfterWin)
    {
        bStopNow = false;
        bStopAfterWin = false;
        return;
    }
    nextBet = parseFloat(initialBet);
    roll();
});
socket.on("losses", function (data) {
    if (bStopNow)
    {
        bStopNow = false;
        return;
    }
    nextBet = nextBet * martingaleMultiplier;
    roll();
});
socket.on("jderror", function (data) {
    roll();
});
hero member
Activity: 763
Merit: 500
Does anyone have a bot they can send me that I can play around with?  PM me if so and I'll send a tip from it's "profits" Wink

I was hoping for a simple martingale bot, but after each loss it would bet 0 until it got 3 losses in a row, then pick back up the betting chain where it left off.  And yes I know that the next roll has nothing to do with the last roll....lol, just looking for fun not make $ (that's for my BTC invested in the site to do)
hero member
Activity: 488
Merit: 500
Btw, here's my last attempt at Martingale...  Roll Eyes


Probably I'd be better off not betting all my invest returns Grin

How were you picking high or low?  Was it random?  It looks like you need a "not" in there somewhere.  Wink

Yes, it was random. Hah, I'll invert that for the next run. Let's see Smiley
legendary
Activity: 2940
Merit: 1333
Btw, here's my last attempt at Martingale...  Roll Eyes


Probably I'd be better off not betting all my invest returns Grin

How were you picking high or low?  Was it random?  It looks like you need a "not" in there somewhere.  Wink
hero member
Activity: 488
Merit: 500
Btw, here's my last attempt at Martingale...  Roll Eyes


Probably I'd be better off not betting all my invest returns Grin
hero member
Activity: 854
Merit: 500
I completely forgot. Yes, nobody makes $30k/month.

And so to make $30k/year with all your assumptions, you would need to invest 6455/12 = 538 BTC?

Yes, but there are so many variables. The amount wagered changes all the time (I used the average since the site launched), and right now we are at 2.5% profit instead of 1%.
legendary
Activity: 2940
Merit: 1333
I completely forgot. Yes, nobody makes $30k/month.

And so to make $30k/year with all your assumptions, you would need to invest 6455/12 = 538 BTC?
hero member
Activity: 854
Merit: 500
Question: How much do you have to have invested into this site to live off of the investment.

Assumption: To live from your investment, you should make ~$30,000. (Considering you don't pay any taxes)

Profit = (your investment % of site) * (wagered/month) * (.01)

The site was launched on June 20, and now it is July 9 (. There have been a total of 78,469.72206232 wagered. Total site invested: 25,748.67315358

Profit = 30000/100 (BTC/$ being $100)
% invested = (YOURINVEST)/25,748.67315358
wagered/month = 78,469.72206232/0.6557377049180328

300 = [(YOURINVEST)/25748.67315358]*[78469.72206232/0.6557377049180328]*[.01]
YOURINVEST = 6455.117443680793 BTC = 645511.7443680793

This is also a big overestimation since it takes the average wagered amount since site launch, but in reality the amount wagered is growing exponentially.

You also seem to be assuming there's only one month in a year.  Most years have more than that.  Or are you trying to earn $30k per month?

I completely forgot. Yes, nobody makes $30k/month.

Question: How much do you have to have invested into this site to live off of the investment.


This is also a big overestimation since it takes the average wagered amount since site launch, but in reality the amount wagered is growing exponentially.

You also seem to be assuming there's only one month in a year.  Most years have more than that.  Or are you trying to earn $30k per month?

You can't live with less than $20k here.

socialhilfe (poverty line) here is what? 2000CHF/month + 300/month for each child?
legendary
Activity: 2940
Merit: 1333
if you take out your profits doesn't the rate of returns slow down?

Not if everybody takes out their profits.
sr. member
Activity: 375
Merit: 250
Question: How much do you have to have invested into this site to live off of the investment.


This is also a big overestimation since it takes the average wagered amount since site launch, but in reality the amount wagered is growing exponentially.

You also seem to be assuming there's only one month in a year.  Most years have more than that.  Or are you trying to earn $30k per month?

You can't live with less than $20k here.

if you take out your profits doesn't the rate of returns slow down?
legendary
Activity: 2940
Merit: 1333
You also seem to be assuming there's only one month in a year.  Most years have more than that.  Or are you trying to earn $30k per month?

You can't live with less than $20k here.

Per month?

Jump to: