Search content
Sort by

Showing 20 of 28 results by FluxTube
Post
Topic
Board Gambling
Re: Unique auction: 0.1% share on each bet forever
by
FluxTube
on 18/02/2018, 18:13:42 UTC
I made a mistake, the offer i have is 10 BTC for 0.15% per bet!
Post
Topic
Board Gambling
Re: Unique auction: 0.1% share on each bet forever
by
FluxTube
on 16/02/2018, 20:34:00 UTC
Current bit, by anonymous: 10 BTC for 1.5% income per bet.

EDIT: I made a mistake above, it is 10 BTC for 0.15% per bet!
Post
Topic
Board Meta
Re: New bitcointalk.org
by
FluxTube
on 14/02/2018, 05:47:43 UTC
Awesome, didnt know that!
Post
Topic
Board Meta
Re: New bitcointalk.org
by
FluxTube
on 13/02/2018, 20:50:11 UTC
I don't mean to make a new forum (on another domain), but just new software, skin, etc, since bitcointalk.org kinda looks like the 90's.
It would also be an opportunity to write software (add-ons) that would be specifically userfull for a crypto forum. 

It's like a politician, that served his term, and a new one is elected...
Post
Topic
Board Meta
New bitcointalk.org
by
FluxTube
on 13/02/2018, 20:11:53 UTC
There are so many dev's here. Wouln't it be time to develop bitcointalk V2?
Post
Topic
Board Gambling
Unique auction: 0.1% share on each bet forever
by
FluxTube
on 13/02/2018, 18:17:17 UTC
Hello everybody!

litecoin.win has had a investment stage (under the name of ltcrash.com) where we were able to raise over 550 LTC for our bankroll. litecoin.win is running for a couple of weeks now with great success. The game runs stable and secure. We already have a well established user base, considering this short amount of time, with over 50 people playing, almost every game.

What we want is (a bigger) bankroll, so that our players can place bigger bets then our currently max bet of 1 LTC, and for stability.

I'm offering the following:

We are offering 2 spots (shares) for 1 or 2 investors:
For an investment of 10 BTC in our bankroll you will get the following:

* a permanent (years) income of 0.1% of each and every bet placed in the casino (winning or losing).
* the option to pull out your investment (minus earnings / 2). ***

You will get (or register) an account on www.litecoin.win. After each bet placed, that account will be credited. You can withdraw you earnings at any given time (with a minimum of 0.01 LTC). Your investment will be influenced by the house. So if you want to pull out, you will either receive your full investment back (if the house gained since you invested), or get a percentage back (if the house lost). Please note, that when the house loses, you still just earn income for every bet.

We will be eligible to buy you out at any given time, by returning your investment (minus earnings /2), so you would get your full investment back).

In the past two weeks, since the game launched, an investor with a share of 0.1% would have collected about 15 LTC

If you don't know what (a) bankroll is, please don't respond.

This is an auction. Start bidding from 10 BTC per share. We are looking for long term investors (> months preferably)
Questions: PM me. Please use this thread to bid.

Please bid as follows: 11 BTC for 1 share

*** For example: You invest 10 BTC and in a months time your earned 1 BTC. Then you want to pull our, you will get 9.5 BTC back + the 1BTC, you earned. So a total of 10.5
Post
Topic
Board Gambling discussion
Re: Litecoin.win Provably Fair Seeding Event
by
FluxTube
on 02/02/2018, 22:33:49 UTC
Just a lil touch here: the block height 507084 was a bitcoin block, not a litecoin block. (https://blockchain.info/block/0000000000000000003499be13766404995184368e14174120ef76e231df88a1)

Thanks.
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 01/02/2018, 11:18:00 UTC
I'm afraid you are too late. The investment fase is over.
Post
Topic
Board Gambling discussion
Re: Litecoin.win Provably Fair Seeding Event
by
FluxTube
on 01/02/2018, 10:40:35 UTC
Block #507084 has been mined.
The client seed will be that hash of that block: 0000000000000000003499be13766404995184368e14174120ef76e231df88a1
Post
Topic
Board Gambling discussion
Litecoin.win Provably Fair Seeding Event
by
FluxTube
on 01/02/2018, 10:15:13 UTC
Please notice: litecoin.win is formerly known as ltcrash.com and bustacoin.com. See https://bitcointalk.org/index.php?topic=2782356

This will reuse the idea posted by Ryan and used for Bustabit.

This is an event to prove litecoin.win is fair.

  • Starting with a secret seed I've generated a chain of 10,000,000 SHA256 hashes. Each element is the hash of the lowercase, hexadecimal string representation of the previous hash. The hash of the chain's last element is: 281baeeb0f2dc9c9a0875b7362483a50dfd7e37a33a75d82ed9aed82bcb53544
  • litecoin.win will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point.
  • To avoid criticism that the Server Secret used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of.
    The client seed will be the block hash of a Litecoin block that hasn't yet been mined: block 507084

The reference code (javascript) is as follows:

The method to create the hash chain is simply sha256:

Code:
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}

The method to convert a game hash, mix it with the picked client seed to a litecoin.win multiplier:

Code:
function crashPointFromHash(serverSeed, clientSeed) {
  function divisible(hash, mod) {
    // We will read in 4 hex at a time, but the first chunk might be a bit smaller
    // So ABCDEFGHIJ should be chunked like  AB CDEF GHIJ
    var val = 0;
   
    var o = hash.length % 4;
    for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) {
      val = ((val << 16) + parseInt(hash.substring(i, i+4), 16)) % mod;
    }

    return val === 0;
  }

  var hash = crypto.createHmac('sha256', serverSeed).update(clientSeed).digest('hex');

  /* In 1 of 101 games the game crashes instantly. */
  if (divisible(hash, 101))
     return 0;

  /* Use the most significant 52-bit from the hash
     to calculate the crash point */
  var h = parseInt(hash.slice(0,52/4),16);
  var e = Math.pow(2,52);

  return Math.floor((100 * e - h) / (e - h));
}

The chain could be generated with code such as:
Code:
var serverSecret =  'secret';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The final hash is: ', terminatingHash);

Using our chosen starting serverSeed, the hash terminating the chain is 281baeeb0f2dc9c9a0875b7362483a50dfd7e37a33a75d82ed9aed82bcb53544
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 29/01/2018, 13:15:07 UTC
I hope it's ok if i bump this up.

Just a couple of hours left on the co-owners sale on www.ltcrash.com
Post
Topic
Board Auctions
Re: Signature space - Global Moderator - 6700+ posts - around 100 posts/month
by
FluxTube
on 28/01/2018, 21:15:07 UTC
0.04
Post
Topic
Board Project Development
Re: A fantastic idea
by
FluxTube
on 25/01/2018, 14:13:53 UTC
Hello everybody,

I have a fantastic, crypto related,  idea. It's been in my head for a couple of months now, and i've started a draft on a whitepaper. I am absolutely convinced that it has potential to become a very big, widely spread project. But, i can't do it alone, and i'm worried about releasing the idea to others. I'm (desperately) looking for someone who can help me get the things together that i need to get this started. I'm extremely exited about it.

The first questions i have is:

- How do i find people and get them to sign an, internationally valid, confidentiality statement?
- How would it work when someone breaks that treaty?

For the project itself i would need a team:
- a game developer (HTML5, or something online / mobile)
- a crypto expert, who knows either how to develop an ethereum token of a new coin
- somebody with a legal background for the above issues
- a JS/node programmer

How can i start this up? I'm really reticent about sharing the idea, that's something i don't know how to deal with.

Thanks in advance.



is LTCrash the idea or what happened to LTCrash?

No, no, ltcrash is a totally different, independent project.
Post
Topic
Board Project Development
A fantastic idea
by
FluxTube
on 24/01/2018, 18:27:32 UTC
Hello everybody,

I have a fantastic, crypto related,  idea. It's been in my head for a couple of months now, and i've started a draft on a whitepaper. I am absolutely convinced that it has potential to become a very big, widely spread project. But, i can't do it alone, and i'm worried about releasing the idea to others. I'm (desperately) looking for someone who can help me get the things together that i need to get this started. I'm extremely exited about it.

The first questions i have is:

- How do i find people and get them to sign an, internationally valid, confidentiality statement?
- How would it work when someone breaks that treaty?

For the project itself i would need a team:
- a game developer (HTML5, or something online / mobile)
- a crypto expert, who knows either how to develop an ethereum token of a new coin
- somebody with a legal background for the above issues
- a JS/node programmer

How can i start this up? I'm really reticent about sharing the idea, that's something i don't know how to deal with.

Thanks in advance.

Post
Topic
Board Auctions
Re: Advertise on this forum - Round 234
by
FluxTube
on 21/01/2018, 10:07:07 UTC
1 @ 0.1
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 20/01/2018, 19:09:10 UTC
Yes, a single investor can only own up to 50%.
I will have 15% ownership and will put 20 LTC in the bankroll
Is there any way to check out the legitimacy of those people who did invest on? Or the address being used for that crowdsourcing? Just to be transparent if those money being transferred or investors are real ones not just good for visual thing.I do have still the doubts since because i have seen your previous announcement thread seems like no one is interested but you did manage to have lots of people invested on.

Thanks for asking. I have launched a beta test for investors. It has been up for 24 hours now. I think the best way to check our legitimacy is to check out the beta ourself:
http://dev.ltcrash.com:3841
You will find the investors there, testing, and playing for fun.

Please do not send funds to any account in the beta! (You CAN send funds on the crowdsale site)
So anything won until the official launch date in this beta test phase can not be withdrawn?
Are you a former player of bustabit or a former owner of ltcrash since it needed to change their name for not being mistaken to be part of or affiliated to bustabit & bustadice?
You can't deposit to the beta site, but withdrawal works. Although the (hot) wallet that is connected to the beta now has only < 1 LTC balance, so you wouldnt be able to withdraw much. Also: After the beta, all accounts will be deleted, and co-owner accounts will be created prior to the launch.
I am fluxxy on bustabit (and n_y_a_n). And i am the founder of ltcrash.com, formally known as bustacoin.com.
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 20/01/2018, 16:42:23 UTC
Is there any minimal investment on LTC to be part of them team? I think there is so many people want to become co-owner of this kind of game but still the bankroll sure need to be big to be part of it. So how about this site? Btw I saw you said that you only sponsored around 20 ltc, that means you have low payout compare to bustabit? Are you going to increase the max payout if there is a bigger bankroll?

Yes, the minimum investment is 0.1 LTC. The max profit per game will be, just like bustabit, 3% of the bankroll. So the more investors, or higher bankroll, the higher the max profit will be. Currently we have about 200 LTC in the bankroll, so the max profit per game would be around 6 LTC. So that's a lot lower then bustabit. I'm kinda hoping for a big investor before the end of January, so we can start with a more significant bankroll.
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 19/01/2018, 09:17:17 UTC
Are you the same flux who played on just-dice back in 2013/14?

Possibly, i don't remember to be honest.
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 19/01/2018, 07:59:17 UTC
Yes, a single investor can only own up to 50%.
I will have 15% ownership and will put 20 LTC in the bankroll
Is there any way to check out the legitimacy of those people who did invest on? Or the address being used for that crowdsourcing? Just to be transparent if those money being transferred or investors are real ones not just good for visual thing.I do have still the doubts since because i have seen your previous announcement thread seems like no one is interested but you did manage to have lots of people invested on.

Thanks for asking. I have launched a beta test for investors. It has been up for 24 hours now. I think the best way to check our legitimacy is to check out the beta ourself:
http://dev.ltcrash.com:3841
You will find the investors there, testing, and playing for fun.

Please do not send funds to any account in the beta! (You CAN send funds on the crowdsale site)
Thanks for the fast response. I have tried out to access the beta then there are some modifications like animations which is good i love the dark theme and basing on co-owners feedbacks on it seems like there still problems on the site but well this is just on beta phase. Using "lites" is just fine since it do use litecoin on betting just like on what you ask on the chat. Good luck for this one and maybe ill put some investments just a little time to think about if this would be worth or not.

Thanks for checking it out. A lot of the small bugs are solved already.
Post
Topic
Board Marketplace (Altcoins)
Re: ŁTCrash - Crowdsourced, bustabit-like litecoin casino
by
FluxTube
on 19/01/2018, 07:48:54 UTC
Yes, a single investor can only own up to 50%.
I will have 15% ownership and will put 20 LTC in the bankroll
Is there any way to check out the legitimacy of those people who did invest on? Or the address being used for that crowdsourcing? Just to be transparent if those money being transferred or investors are real ones not just good for visual thing.I do have still the doubts since because i have seen your previous announcement thread seems like no one is interested but you did manage to have lots of people invested on.

Thanks for asking. I have launched a beta test for investors. It has been up for 24 hours now. I think the best way to check our legitimacy is to check out the beta ourself:
http://dev.ltcrash.com:3841
You will find the investors there, testing, and playing for fun.

Please do not send funds to any account in the beta! (You CAN send funds on the crowdsale site)