Bitcoin Forum
October 02, 2025, 02:14:17 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »
1  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: January 09, 2019, 01:38:01 PM
Owner hasn't been online on bitcointalk since march 2018, don't expect him to come around soon, i've been waiting on my withdraw forever and it doesn't look like it's going to be solved anytime soon ;(

Website looks great and simple and since you are operating since 2014 i think about to invest in your bankroll.
Are the Shares/dividends payed out daily or on what frequencies ?

regards

Most of their thing now is pretty good enough for some normal site but only about withdrawal problem that always been matter because there is lack of support team to help them. But if you can handle this, then you should really go for it because their investment is pretty solid

Btw @NLNico, where do you heard the rumor? Because like panjul said and everyone knows that the owner sure active once a while(do not have exact time). But when he is active, he just need to clear some issue on their site
2  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: May 11, 2018, 11:00:22 AM
Sent an account recovery email almost two weeks ago and havent heard back. Any updates?


I have also been waiting for a respons from admin about my account, haven't been able to access it for a while now
3  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 30, 2017, 02:04:29 PM
You can't restart the bot once you call stop(), the only way for it to start up again is to enter start() in the console window like you do to initially start the script running...

So, instead of issuing the stop() command, just track your profit amount, when it reaches the target you're happy with, use the invest() command and then reset back to initial script settings and continue Wink

NOTE: I'm not sure if this will work with any site... I've never used the invest() command, but there seems to be invest() code for just-dice in the dicebot code, so I'm assuming it works

Code:
...
startBalance = balance
runProfit = 0
profitTarget = 1.0 -- Set this to how much PROFIT you want to make before you invest, not the balance!
....

function dobet()

  runProfit = balance - startBalance

  if (win) then
    --do win stuff
  else
    -- do loss stuff
  end

  if runProfit >= profitTarget then
    ching()
    alarm()  
    print("Your Balance is " .. balance)
    print()
    print("TARGET ACHIEVED!!!")
    print()
    print("You Won " .. runProfit .. " for this Session")
    print()

    print("Investing: " .. runProfit)
    invest(runProfit) -- invest winnings
    
    -- reset back to beginning and continue
    startBalance = balance
    runProfit = 0
    chance = 90
    bethigh = true
    nextbet = basebet

    print(" ")
 end

end

One thing i notice was that you took away the 19.8% part of the script ;P it only goes for 90% now

edit: lol after reading thru I saw that I should ad the do win and do lose stuff my self ;P lol Thanks for the help
4  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 07:48:39 PM
You can't restart the bot once you call stop(), the only way for it to start up again is to enter start() in the console window like you do to initially start the script running...

So, instead of issuing the stop() command, just track your profit amount, when it reaches the target you're happy with, use the invest() command and then reset back to initial script settings and continue Wink

NOTE: I'm not sure if this will work with any site... I've never used the invest() command, but there seems to be invest() code for just-dice in the dicebot code, so I'm assuming it works

Code:
...
startBalance = balance
runProfit = 0
profitTarget = 1.0 -- Set this to how much PROFIT you want to make before you invest, not the balance!
....

function dobet()

  runProfit = balance - startBalance

  if (win) then
    --do win stuff
  else
    -- do loss stuff
  end

  if runProfit >= profitTarget then
    ching()
    alarm() 
    print("Your Balance is " .. balance)
    print()
    print("TARGET ACHIEVED!!!")
    print()
    print("You Won " .. runProfit .. " for this Session")
    print()

    print("Investing: " .. runProfit)
    invest(runProfit) -- invest winnings
   
    -- reset back to beginning and continue
    startBalance = balance
    runProfit = 0
    chance = 90
    bethigh = true
    nextbet = basebet

    print(" ")
 end

end

Ok that probably why i got a lot of luna errors when i tried putting in the invest() and start() commando after stop(). I'll give yours a try to see if it works Wink thanks for the help so far Wink
5  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 10:03:34 AM
Hi,

I use bots a lot for my gambling, but since I have zero experience in coding I need some help adding a feature to one of my scripts.

This is the code I want modified:

Code:
chance = 90
bethigh = true
basebet = 0.00000200
nextbet = basebet

-- SET PROFIT TARGET
profittarget= 1.0000000

function dobet()
if (win) then
chance = 90.00
    nextbet = basebet
else
if chance == 19.80 then
nextbet = previousbet * 1.255
else
chance = 19.80
    nextbet = 0.00000060
            bethigh = !bethigh
end
end

if (balance) >= profittarget then

  ching()
  alarm() 
  print("Your Balance is ") print(balance)
  print(" ")
  print("TARGET ACHIEVED!!!")
  print(" ")
  print("You Won ") print(profit) print(" for this Session")
  print(" ")
  stop()
  print(" ")
end

end


I want to add the feature invest on it, so that when I hit my profit target it auto invest the profit and the restarts. I'm using the script together with seuntjies bot on Just-dice. Where should i add the invest part and restart?
6  Economy / Gambling discussion / Re: Need help with some dicebot code on: April 29, 2017, 09:56:50 AM
Not an expert on bots, but I think the best place for you to get support on this is to directly post your question on seuntjie's bot thread. He does reply there a lot and most likely he is watching that thread better than any other threads posted here in the gambling section.

Ok thanks for the heads up, I'll try that thread instead Wink
7  Economy / Gambling discussion / Re: Need help with some dicebot code on: April 28, 2017, 11:16:49 AM
No one?
8  Economy / Gambling discussion / Need help with some dicebot code on: April 27, 2017, 01:18:04 PM
Hi,

I use bots a lot for my gambling, but since I have zero experience in coding I need some help adding a feature to one of my scripts.

This is the code I want modified:

Code:
chance = 90
bethigh = true
basebet = 0.00000200
nextbet = basebet

-- SET PROFIT TARGET
profittarget= 1.0000000

function dobet()
if (win) then
chance = 90.00
    nextbet = basebet
else
if chance == 19.80 then
nextbet = previousbet * 1.255
else
chance = 19.80
    nextbet = 0.00000060
            bethigh = !bethigh
end
end

if (balance) >= profittarget then

  ching()
  alarm() 
  print("Your Balance is ") print(balance)
  print(" ")
  print("TARGET ACHIEVED!!!")
  print(" ")
  print("You Won ") print(profit) print(" for this Session")
  print(" ")
  stop()
  print(" ")
end

end

I want to add the feature invest on it, so that when I hit my profit target it auto invest the profit and the restarts. I'm using the script together with seuntjies bot on Just-dice. Where should i add the invest part and restart?
9  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: April 18, 2017, 06:06:41 PM


But an answer from the support would have been great, Almost 4 days since my deposit and still nothing! No answer either.
Almost 4days and no answer from the support yet? Ridiculuos this will surely affect their site even they are legit but lack of support of representative is not good
Thank you eaLITY,

I will continue to wait patiently for support to show up and resolve the matter. I sent an email but no response yet.



I'm really sorry for the wait. There was a problem with our monero node, it has been solved now and your deposits should have been processed. If any of you still have problem with monero deposit / withdrawal, please do let me know on email or within this thread.
[/quote]


Big thanks! And I never doubted you, only tired of waiting Wink
10  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: April 18, 2017, 01:42:07 PM

Ah so Safedice is also here. I used to play in this site few months ago when I haven't discovered bitcointalk yet. Looks pretty cool but I stopped when I got busy with my job. Sad that they have too many complains here.
Same here I think support are fixing this because this bad complain will affect the site many of us playing on this site but now we stop untill the complaint are all fixed

But an answer from the support would have been great, Almost 4 days since my deposit and still nothing! No answer either.
11  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: April 17, 2017, 07:33:59 PM
Hi,

I have an issue connecting with Seuntjies bot on your site, tried everything from disabling 2FA to registering a new account. It just says that the password/username is wrong.

If you are from the US or any region that needs to complete a captcha in your browser before you can open the site, DiceBot will not be able to log in.

So I need use a vpn to use it? or is the captcha for all regions?
12  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: April 16, 2017, 08:36:15 AM
Having some XMR deposit issues. I sent you a PM, can you help me out admin?

Me too, deposited XMR 48 hours ago and still nothing on the site. Have emailed them without any answer
13  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: April 14, 2017, 06:29:24 PM
Hi,

I have an issue connecting with Seuntjies bot on your site, tried everything from disabling 2FA to registering a new account. It just says that the password/username is wrong.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BetKing.io ICO - Bitcoin Gambling website - 581.4 BTC raised so far on: December 18, 2016, 04:50:51 PM
That's a good point. I agree. Can you go back and erase all the bonuses to make it moe fair for us.
Why? I invested when it was 10% bonus, that one of the reason i didn't wait to invest! So why erase the bonuses? Early investors should have some benefits
I'm almost certain you didn't get the irony.

True that ;P lol
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BetKing.io ICO - Bitcoin Gambling website - 581.4 BTC raised so far on: December 15, 2016, 11:53:21 AM
3.5 hours left to get your 5% share bonus.

I must admit. I dont like this bonus that some people get and others dont. It's not fair to everyone and that's anyi crypto.
Just my 2 cents.

That's a good point. I agree. Can you go back and erase all the bonuses to make it moe fair for us.

Why? I invested when it was 10% bonus, that one of the reason i didn't wait to invest! So why erase the bonuses? Early investors should have some benefits
16  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: 【BOT】C.A.T. Cryptocurrency Automatic Trader 4.5 LifeLicense -50% BLACK WEEK!!!!! on: November 30, 2016, 07:57:07 PM
Anyone else having issues with kraken API? my CAT frozen and now i can't connect to kraken, the other eschanges work




-edit- It works now Wink
17  Economy / Gambling / Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest! on: October 19, 2016, 10:59:25 AM
hai psy,

i have few question :
1. how about bot,where is API key?
2. how about our old acc?because some user had a lot reff in there
3. i have question about button x2,-1,etc under bet tab and chance set
4. can you add faucet,please. Smiley

best regard

I can't give you the exact answers right now, since we still in a beta stage and I have to ask the Admin about them, but here's some answers at least Wink

1. API key is under the Automate tab, not sure if it works properly yet
2. The reffs from the old account/site is unfourtunatly lost I think, since the whole site is rebooted as a new site. You've got a new referral link under the affiliate tab.
3. so what's the question? x2 = double bet, -1 = 1% less chance
4. Faucet is coming






I'd like to hear the answers to 1 and 2 above as well. Also, where can I withdraw my previously invested funds? You said the old site will be active until everyone's withdrawn, but where is it active?

I just sent an email to the admin about the bankroll from the old site, he's looking for a solution on it. You can try email him on team@coinmillions.com


yeah double bet button etc removed,
maybe add like before.

http://prntscr.com/cw70t2
18  Economy / Gambling / Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest! on: October 17, 2016, 06:58:53 PM
hai psy,

i have few question :
1. how about bot,where is API key?
2. how about our old acc?because some user had a lot reff in there
3. i have question about button x2,-1,etc under bet tab and chance set
4. can you add faucet,please. Smiley

best regard

I can't give you the exact answers right now, since we still in a beta stage and I have to ask the Admin about them, but here's some answers at least Wink

1. API key is under the Automate tab, not sure if it works properly yet
2. The reffs from the old account/site is unfourtunatly lost I think, since the whole site is rebooted as a new site. You've got a new referral link under the affiliate tab.
3. so what's the question? x2 = double bet, -1 = 1% less chance
4. Faucet is coming






I'd like to hear the answers to 1 and 2 above as well. Also, where can I withdraw my previously invested funds? You said the old site will be active until everyone's withdrawn, but where is it active?

I just sent an email to the admin about the bankroll from the old site, he's looking for a solution on it. You can try email him on team@coinmillions.com
19  Economy / Gambling / Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest! on: October 13, 2016, 05:59:10 PM
So once again we like to say sorry for the delay, but the day we all have been waiting on is finally here!!

Friday/Saturday the new Coinmillion will go live, we will then be integrated with moneypot, sharing the bankroll with the other sites!

So no more low max bets!!

The old site will still be active until all investors money has been withdrawn. So please withdraw your money ASAP! Withdraws are done manually so it might take some time, but if it takes to long (more then 24-48H), please send a printscreen of your withdraws to team@coinmillions.com, please add your address and amount.


20  Economy / Gambling / Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest! on: October 06, 2016, 09:35:37 AM
Some updates about the site:


  • The Moneypot developers are finished with the integration of the site, and as we speak the Admin are doing testing to see that there's no issues.
  • Planned relaunch is set to Monday (10th October) if now issues are discovered
  • The old site will be active for people to divest their money, since we are switching to Moneypot's bankroll, but they have to contact admin for the withdraws team@coinmillions.com , they are done manually


The Team of Coinmillions is thankful for you patient and we are sorry for any delays we have caused for you during this development! We are all looking forward to the new Coinmillions being launched!
Pages: [1] 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!