Author

Topic: 🔶 YOLOdice.com 🔶 suspended on 16st Mar 2021 - page 204. (Read 143720 times)

member
Activity: 108
Merit: 10
More impressed by this site by the day.

Hope you guys have a long term plan and will be around for some time to come!
full member
Activity: 182
Merit: 100
Hi, just a quick update:

1. Yesterday our servers were a bit laggy and I am sorry for this. It looks like some of database queries were not optimized. I have improved performance of some of the operations, e.g. generating user profit graphs should be much faster now (especially if user has more then 10,000 bets

2. I had to increse the withdrawal fee to from 20ks to 30k satoshis (0.0003BTC). We really want all the outgoing transactions to be confirmed withn a few blocks (and not hang for 12 hours), but with the mempool being stuck so often recently we often pay fees much higher than what we charge our players, we want to make it a bit more close to that we pay. Good thing is that we might add low-fee batch/group withdrawals in the near future.

Cheers,
Ethan

Hi Ethan, I think thats a good update. That will help player received their fund faster and lesser the risk.
I've played YOLODice for 4 days since the time I read your site campaign and I have something to say that about the main function of yolodice site, its not really different from others but I like the interface and network speed there.
newbie
Activity: 16
Merit: 0
Looks great I'll try  Shocked
legendary
Activity: 2940
Merit: 1333
what does this mean for the regular user who just wants to roll on your site. Wink

Nothing at all. The API is something extra that developers can use to make bots, new user interfaces, etc.

I don't vouch for YoloDice.
hero member
Activity: 3094
Merit: 654
Great news for the new update regarding on your API and for the hard work of your team to your site. This why I love to play on your dice site than the other sites. Keep up the good work guys. By the way, I hope the chat box will be regulated due to mix conversation of different language of the players.

I agree with the language thing it looks like hell there. Could it work with IP dependent or English only options so you would see that certain language only.
legendary
Activity: 1288
Merit: 1110
I'm gonna try yoladice.com. It seems great.
sr. member
Activity: 546
Merit: 250
Great news for the new update regarding on your API and for the hard work of your team to your site. This why I love to play on your dice site than the other sites. Keep up the good work guys. By the way, I hope the chat box will be regulated due to mix conversation of different language of the players.
legendary
Activity: 854
Merit: 1000
Great new site... I'm following your developments!

If ever you need some manpower at your site with moderation, or marketing/graphics works, feel free to PM me!
hero member
Activity: 1008
Merit: 1012
Nice addition Ethan! Smiley
But what does this mean for the regular user who just wants to roll on your site. Wink
I thought API were for developers to use.
I just want to play and not have any creative ideas come up then try to modify things. Cheesy
hero member
Activity: 812
Merit: 510
I have used many dice games sites and most of them had the same features like your site they had faucet , autoroll ,chance etc.
The only thing which made your site different from others is the sites profit. I really liked that feature I hope most of the gambling sites try to be positive like your site.
hero member
Activity: 1834
Merit: 566
can we test yolodice via mobile device?
On my side the site cant loaded
and always on connecting, or its because my broswer not support to open this one?

iam playing dice in yolodice use my smartphone without problem
visit site, login site and playing without big problem is fine
It good to hear this and this mean the Yolo Team are really working hard so we can all enjoy visiting the site. I will suggestion the team to add varieties of sport betting into there programme in other to boost their services.
hero member
Activity: 1302
Merit: 532
Great news Ethan for releasing the API and hope dice bot will include this in their next update.I think the next update will be released in a weeks time and i would really like to play smoothly with the bot.Will check that out and comment at a later time.
legendary
Activity: 1570
Merit: 1041
API is OUT!
Play YOLOdice like a Pro :-)

I am really glad to announce that API I've been working on is finally out! And it's working pretty good.

Why

API opens a way to create bots and alternative ways of playing. API also allows fetching public data, making deposits/withdrawals. In the future I want API to support tipping, chat, investments.

Is it faster?

Both yes and no. Without the overhead of your browser and with the power of unperturbed TCP+SSL communication with our servers it's definitely faster. On the other hand, the information travel time (ping) seems to be far more important now.

Earlier today I was able to get 14 bets/s from my home connection and over 50 bets/s from the server located in the same datacenter as YOLOdice.


Where do I start?

If you want to explore API, here are a few resources:

* https://dev.yolodice.com/ - our API documentation site
* https://github.com/ethan-nx/yolodice-client - my reference Ruby client, ready to use, just install as a gem

Is it safe to use?

Watch out! There can be occasional bugs or errors, so it's still safer to create a separate account to play with API.

I am not a programmer

You might want to wait until other people start contributing scripts or bots. I hope DiceBot can support YD in the near future.

If you cannot wait, here is a simple example you could use to bootstrap your own bot:

Code:
require 'yolodice_client'
require 'pp'

auth_key = 'USE_YOUR_OWN_KEY'
yd = YolodiceClient.new
yd.connect
user = yd.authenticate auth_key
user_data = yd.read_user_data selector: {id: user['id']}
puts "Your account balance is: #{user_data['balance']} satoshis."
10.times do
  b = yd.create_bet attrs: {amount: 100, range: 'lo', target: 500000}
  puts "Bet profit: #{b['profit']}"
end
user_data = yd.read_user_data selector: {id: user['id']}
puts "Your account balance is: #{user_data['balance']} satoshis."

Take a look at our Ruby client page to see how to generate your auth key.

Tell me what you think! Cheers,
Ethan
Great news, Ethan!  Thanks for always working diligently to improve YD! Cheesy
sr. member
Activity: 745
Merit: 471
Admin at YOLOdice.com - fast, fair, play/invest.
API is OUT!
Play YOLOdice like a Pro :-)

I am really glad to announce that API I've been working on is finally out! And it's working pretty good.

Why

API opens a way to create bots and alternative ways of playing. API also allows fetching public data, making deposits/withdrawals. In the future I want API to support tipping, chat, investments.

Is it faster?

Both yes and no. Without the overhead of your browser and with the power of unperturbed TCP+SSL communication with our servers it's definitely faster. On the other hand, the information travel time (ping) seems to be far more important now.

Earlier today I was able to get 14 bets/s from my home connection and over 50 bets/s from the server located in the same datacenter as YOLOdice.


Where do I start?

If you want to explore API, here are a few resources:

* https://dev.yolodice.com/ - our API documentation site
* https://github.com/ethan-nx/yolodice-client - my reference Ruby client, ready to use, just install as a gem

Is it safe to use?

Watch out! There can be occasional bugs or errors, so it's still safer to create a separate account to play with API.

I am not a programmer

You might want to wait until other people start contributing scripts or bots. I hope DiceBot can support YD in the near future.

If you cannot wait, here is a simple example you could use to bootstrap your own bot:

Code:
require 'yolodice_client'
require 'pp'

auth_key = 'USE_YOUR_OWN_KEY'
yd = YolodiceClient.new
yd.connect
user = yd.authenticate auth_key
user_data = yd.read_user_data selector: {id: user['id']}
puts "Your account balance is: #{user_data['balance']} satoshis."
10.times do
  b = yd.create_bet attrs: {amount: 100, range: 'lo', target: 500000}
  puts "Bet profit: #{b['profit']}"
end
user_data = yd.read_user_data selector: {id: user['id']}
puts "Your account balance is: #{user_data['balance']} satoshis."

Take a look at our Ruby client page to see how to generate your auth key.

Tell me what you think! Cheers,
Ethan
hero member
Activity: 616
Merit: 501
Chainjoes.com
can we test yolodice via mobile device?
On my side the site cant loaded
and always on connecting, or its because my broswer not support to open this one?

iam playing dice in yolodice use my smartphone without problem
visit site, login site and playing without big problem is fine
hero member
Activity: 616
Merit: 502
can we test yolodice via mobile device?
On my side the site cant loaded
and always on connecting, or its because my broswer not support to open this one?

Which mobile device are you using? It works perfectly fine on my Android devices, with both Chrome and Firefox. Moreover you should be able to add YOLOdice to your home screen, bringing a near-native experience (whithout browser bar etc.)

It works totally fine on my android phone also, maybe the problem is your internet connection, not the site itself. Also try to clear the cache of your browser to increase the performance of it.
sr. member
Activity: 745
Merit: 471
Admin at YOLOdice.com - fast, fair, play/invest.
Today we have added 3 more disks and one more server. The traffic seems to be growing! Thanks and keep it busy! :-)
Cheer,
Ethan
hero member
Activity: 1834
Merit: 566
Question about transaction fees for withdrawing - do you plan to add more options with larger fees for faster withdrawing? It could be really helpful in some situations. As I understand, right now it's a flat 0.0002 BTC for all withdrawals.

It would be nice addition for yolodice, nowadays many dice sites offers this feature which is very useful for players so that they can get faster confirmation when they set higher fees especially for bigger withdrawal amount.



They should just make this just like Bitsler. Last months there is so now and then a very large queue unconfirmed transactions. if that happens you definitely want to set a higher fee.
Larger fees is not really large when you are a gambler, our concern is only to see a fast deposit so we can enjoy the game the soonest time and when we win, of course we love to withdraw also and we want it the faster way.
Transaction fee won't matter, it's just a minimal amount, most of the gambling sites have that.
Yes,that's correct and must be a stable payment feature in other to bring in more gambler cause people love a fast or automatic payment deposit site which pay customer their winning in a snap.
sr. member
Activity: 745
Merit: 471
Admin at YOLOdice.com - fast, fair, play/invest.
Hi, just a quick update:

1. Yesterday our servers were a bit laggy and I am sorry for this. It looks like some of database queries were not optimized. I have improved performance of some of the operations, e.g. generating user profit graphs should be much faster now (especially if user has more then 10,000 bets

2. I had to increse the withdrawal fee to from 20ks to 30k satoshis (0.0003BTC). We really want all the outgoing transactions to be confirmed withn a few blocks (and not hang for 12 hours), but with the mempool being stuck so often recently we often pay fees much higher than what we charge our players, we want to make it a bit more close to that we pay. Good thing is that we might add low-fee batch/group withdrawals in the near future.

Cheers,
Ethan
sr. member
Activity: 745
Merit: 471
Admin at YOLOdice.com - fast, fair, play/invest.
Nice to see the site keep growing and better improvement.
Want ask about rain , is it possible for raining specific people ?

Yes, just use /tip command to rain multiple people, e.g. to tip me and Scott you could do:
Code:
/tip 1,2 0.1
where 1,2 - these are my and Scott's IDs, 0.1 is how much you want to split between us. Although I think it's a very fine example, I am affraid you will want to change the parameters :-)

Also what about a faucet that levels up based on the a out you have waged ?

Take the look at our FAQ: https://yolodice.com/#faq , there is a question "How much does the faucet drop?". Clearly the amounts dropped depend you your wagered amount and can reach 0.00003 BTC (3k satoshis).

Cheers,
Ethan
Jump to: