Pages:
Author

Topic: BetKing.io - Anniversary promo - All players credited up to $500 in free bets! - page 9. (Read 27383 times)

newbie
Activity: 43
Merit: 0
How do the affiliate program work? If I invite someone to play who lose 1 btc will I get 20% of that or 40% of that or how much? It is really confusing when it say 20% and 40% on the website
legendary
Activity: 1400
Merit: 1021
To save the risk of trading on hitbtc or with any potential scammers on telegram you can buy BKB directly on BetKing with 25% discount
https://betking.io/invest
legendary
Activity: 1876
Merit: 1289
DiceSites.com owner
Nice Smiley Got a 8x win with that one https://betking.io/?betId=36420889 (just BTC0.028 profit though lol)
legendary
Activity: 1400
Merit: 1021
One of our players just won 0.8 Bitcoin betting on Belgium to qualify Smiley

https://betking.io?betId=36420898

legendary
Activity: 1400
Merit: 1021
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

Having that invest feature surely makes investing easier.

(does anyone use this forum anymore or should I just stick with Telegram?)

Most serious people here rarely posts, but they still read. Using this forum and Telegram at the same time is still the best choice, although time and effort consuming.



I can't access my account Dean.

https://screenshot.net/z52d0c6

What browser did you use? Can you test on a different browser/device?
Will get any issue resolved asap
Can you make sure you have cookies enabled and don't have no script extensions blocking scripts?
sr. member
Activity: 966
Merit: 276
★Bitvest.io★ Play Plinko or Invest!
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

Having that invest feature surely makes investing easier.

(does anyone use this forum anymore or should I just stick with Telegram?)

Most serious people here rarely posts, but they still read. Using this forum and Telegram at the same time is still the best choice, although time and effort consuming.



I can't access my account Dean.

https://screenshot.net/z52d0c6
legendary
Activity: 2534
Merit: 1713
Top Crypto Casino
So Betking is still operating? I thought it was one big scam so refused to participate in the token sale.
copper member
Activity: 2562
Merit: 2504
Spear the bees
Could be. Allowing non-token investments means dilution of profits (if the site's activity remains unchanged) and negative effect on both, buy-back price and market price of tokens (why would you buy token if you could invest directly etc).
Dilution is mitigated by the commission which adds to the BKB price (idea that was proposed). And even for investors that don't want to put more in and only have the tokens, the buyback periods will still be active. Seems alright to me.
legendary
Activity: 2436
Merit: 1561
...Dean's proposition keeps the buyback system but just allows people to invest freely as opposed to buying the token. Is this a bad thing?

Could be. Allowing non-token investments means dilution of profits (if the site's activity remains unchanged) and negative effect on both, buy-back price and market price of tokens (why would you buy token if you could invest directly etc).

But I understand there's more to the story and as long as Dean consults his actions with investors and acts in consensus with them, I see no problem here.

I wouldn't be very surprised if allowing investments actually increased site's profitability (often bankroll investors like to gamble too).


copper member
Activity: 2562
Merit: 2504
Spear the bees
No idea how you could do this unless you completely screw over token investors. Those guys have already had a massive negative ROI.
Dean's proposition keeps the buyback system but just allows people to invest freely as opposed to buying the token. Is this a bad thing?

The investors who are screwed over certainly haven't been voicing their opinions anywhere that I can see. Most of the reaction is positive.
legendary
Activity: 1400
Merit: 1021
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)

No idea how you could do this unless you completely screw over token investors. Those guys have already had a massive negative ROI.

Good job that you're not the one in charge making the decision then. I've already proposed a way that token holders think is a good way to do it IF we do it.

Token holders are up 7.3% so no idea what you are talking about with -ve ROI.


sr. member
Activity: 395
Merit: 264
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)

No idea how you could do this unless you completely screw over token investors. Those guys have already had a massive negative ROI.
legendary
Activity: 1834
Merit: 1008
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)




I think they are lacking of bankroll right now and asking for investment. I do not think that betking usually asking for people to invest. Past betking will just rely on everything that they think it is worth to do and in the end they are getting 7.5k btc profit so where is this money gone by now? Why you are asking for some investment? I'm sorry no offense but I think with asking people just like that will ruin your reputation as a big site, you must just let it flow like last time that you did

So it's clear you don't know what you are talking about and just spreading nonsense.

I have been asked by many people, mostly old BetKing investors, to bring back the old invest model where anyone could add to the bankroll.
I've not even decided if we will do it or not as it brings a few problems with the current token system.



Im sorry for this misunderstanding things, my bad for saying such things. I never knew that you guys have been asked for reopened the investment programs instead of using your own bankroll. But it seems that you guys are more focusing on your token program which is spend much of your bankroll and do not know when it will raise, like most of others token that used for gambling on other site. I will watch how this thing is going
legendary
Activity: 2016
Merit: 1106
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)

yes ,people use this forum still Smiley
of course there will be alot of people interested:large bankroll-higher max win-more whales,a win win for everyone
there are not too many trusted sites to invest into and opening investments will benefit both the site and the people who wanna HODL but recieve some profit with a relatively  low risk

legendary
Activity: 1400
Merit: 1021
How exactly does the provably fair work on roulette?

Oh, noticed we don't have the provably fair page updated on site to show this.

The algorithm used is as follows:
Each spin has a unique client and server seed. you can edit your client seed.

Code:

const shuffle = function (deck, mt) {
  let i = deck.length;
  let j;
  let temp;

  while (--i >= 0) {
    j = Math.floor(mt.int() % (i + 1));
    temp = deck[j];
    deck[j] = deck[i];
    deck[i] = temp;
  }
  return deck;
};

const calculateRouletteSpin = function (serverSeed, clientSeed) {
  const hash = crypto.createHash('sha256')
    .update(serverSeed + clientSeed)
    .digest('hex')
    .toString();

  const seed = parseInt(hash.substring(hash.length - 8), 16);
  const mt = new MersenneTwister(seed);
  const newDeck = shuffle(deck, mt);
  const winner = newDeck[36];

  return winner.toString();
};
newbie
Activity: 10
Merit: 0
How exactly does the provably fair work on roulette?
legendary
Activity: 3472
Merit: 1351
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)

I think they are lacking of bankroll right now and asking for investment. I do not think that betking usually asking for people to invest. Past betking will just rely on everything that they think it is worth to do and in the end they are getting 7.5k btc profit so where is this money gone by now? Why you are asking for some investment? I'm sorry no offense but I think with asking people just like that will ruin your reputation as a big site, you must just let it flow like last time that you did

So it's clear you don't know what you are talking about and just spreading nonsense.

I have been asked by many people, mostly old BetKing investors, to bring back the old invest model where anyone could add to the bankroll.
I've not even decided if we will do it or not as it brings a few problems with the current token system.

Obviously he is misunderstanding your post, I do even believe that you are OK to run betking for long term without investment feature but if many people are asking you to re-open it then I think it is good for your site as it will boost your bankroll and whales wont be worry to big bet amount on your site. And I believe most of your past investors will be interested to invest again and you'll get new investors as well from this forum.
legendary
Activity: 1400
Merit: 1021
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)




I think they are lacking of bankroll right now and asking for investment. I do not think that betking usually asking for people to invest. Past betking will just rely on everything that they think it is worth to do and in the end they are getting 7.5k btc profit so where is this money gone by now? Why you are asking for some investment? I'm sorry no offense but I think with asking people just like that will ruin your reputation as a big site, you must just let it flow like last time that you did

So it's clear you don't know what you are talking about and just spreading nonsense.

I have been asked by many people, mostly old BetKing investors, to bring back the old invest model where anyone could add to the bankroll.
I've not even decided if we will do it or not as it brings a few problems with the current token system.

legendary
Activity: 1834
Merit: 1008
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)


[/quote]

I think they are lacking of bankroll right now and asking for investment. I do not think that betking usually asking for people to invest. Past betking will just rely on everything that they think it is worth to do and in the end they are getting 7.5k btc profit so where is this money gone by now? Why you are asking for some investment? I'm sorry no offense but I think with asking people just like that will ruin your reputation as a big site, you must just let it flow like last time that you did
hero member
Activity: 1008
Merit: 515
Had a lot of requests to bring back our old invest feature to let anyone be part of bankroll.

Anyone here interested?

(does anyone use this forum anymore or should I just stick with Telegram?)

I would be interested, but not for large amounts though. It also depends how much volume there will be, and how much % fee you're taking.
Pages:
Jump to: