Search content
Sort by

Showing 20 of 338 results by psy112
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 09/01/2019, 13:38:01 UTC
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
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 11/05/2018, 11:00:22 UTC
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
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
psy112
on 30/04/2017, 14:04:29 UTC
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
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
psy112
on 29/04/2017, 19:48:39 UTC
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
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
psy112
on 29/04/2017, 10:03:34 UTC
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?
Post
Topic
Board Gambling discussion
Re: Need help with some dicebot code
by
psy112
on 29/04/2017, 09:56:50 UTC
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
Post
Topic
Board Gambling discussion
Re: Need help with some dicebot code
by
psy112
on 28/04/2017, 11:16:49 UTC
No one?
Post
Topic
Board Gambling discussion
Topic OP
Need help with some dicebot code
by
psy112
on 27/04/2017, 13:18:04 UTC
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?
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 18/04/2017, 18:06:41 UTC


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
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 18/04/2017, 13:42:07 UTC

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.
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 17/04/2017, 19:33:59 UTC
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?
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 16/04/2017, 08:36:15 UTC
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
Post
Topic
Board Gambling
Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014
by
psy112
on 14/04/2017, 18:29:24 UTC
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.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BetKing.io ICO - Bitcoin Gambling website - 581.4 BTC raised so far
by
psy112
on 18/12/2016, 16:50:51 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] BetKing.io ICO - Bitcoin Gambling website - 581.4 BTC raised so far
by
psy112
on 15/12/2016, 11:53:21 UTC
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
Post
Topic
Board Service Announcements (Altcoins)
Re: 【BOT】C.A.T. Cryptocurrency Automatic Trader 4.5 LifeLicense -50% BLACK WEEK!!!!!
by
psy112
on 30/11/2016, 19:57:07 UTC
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
Post
Topic
Board Gambling
Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest!
by
psy112
on 19/10/2016, 10:59:25 UTC
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
Post
Topic
Board Gambling
Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest!
by
psy112
on 17/10/2016, 18:58:53 UTC
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
Post
Topic
Board Gambling
Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest!
by
psy112
on 13/10/2016, 17:59:10 UTC
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.


Post
Topic
Board Gambling
Re: Coinmillions.com New Multi-Crypto gambling site: Dice, Poker, Shell, Invest!
by
psy112
on 06/10/2016, 09:35:37 UTC
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!