Bitcoin Forum
May 05, 2024, 02:12:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 ... 225 »
  Print  
Author Topic: 🔶 YOLOdice.com 🔶 suspended on 16st Mar 2021  (Read 143291 times)
memequiserle
Hero Member
*****
Offline Offline

Activity: 616
Merit: 501


Chainjoes.com


View Profile
February 10, 2017, 02:01:26 PM
 #421

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

█▀▀▀










█▄▄▄
CHAIN JOES
▀▀▀█










▄▄▄█
█▀▀▀










█▄▄▄
|
▀▀▀█










▄▄▄█
📝
1714918363
Hero Member
*
Offline Offline

Posts: 1714918363

View Profile Personal Message (Offline)

Ignore
1714918363
Reply with quote  #2

1714918363
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714918363
Hero Member
*
Offline Offline

Posts: 1714918363

View Profile Personal Message (Offline)

Ignore
1714918363
Reply with quote  #2

1714918363
Report to moderator
ethan_nx (OP)
Sr. Member
****
Offline Offline

Activity: 745
Merit: 471


Admin at YOLOdice.com - fast, fair, play/invest.


View Profile WWW
February 10, 2017, 04:00:57 PM
 #422

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

Kiritsugu
Legendary
*
Offline Offline

Activity: 1570
Merit: 1041



View Profile
February 10, 2017, 05:53:22 PM
 #423

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
Clement Kaliyar
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 532


View Profile
February 10, 2017, 10:50:21 PM
 #424

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.
hulla
Hero Member
*****
Offline Offline

Activity: 1820
Merit: 566



View Profile
February 11, 2017, 03:13:06 AM
 #425

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.

.
.Duelbits.
            ▄████▄▄
          ▄█████████▄
        ▄█████████████▄
     ▄██████████████████▄
   ▄████▄▄▄█████████▄▄▄███▄
 ▄████▐▀▄▄▀▌████▐▀▄▄▀▌██

 ██████▀▀▀▀███████▀▀▀▀█████

▐████████████■▄▄▄■██████████▀
▐██████████████████████████▀
██████████████████████████▀
▀███████████████████████▀
  ▀███████████████████▀
    ▀███████████████▀
▄▀▄
█   █
█ █ █
█ █ █
█ █ █
█ █ █
█ █ █
█ █ █
█ █ █
█▀▀▀▀▀█
▀█▀█▀
█▄█
█▄█
▄▀▄
█   █
█ █ █
█ █ █
█ █ █
█ █ █
█ █ █
█ █ █
█ █ █
█▀▀▀▀▀█
▀█▀█▀
█▄█
█▄█
.
         ▄ ▄▄▀▀▀▀▄▄
         ▄▀▀▄      █
         █   ▀▄     █
       ▄█▄     ▀▄   █
      ▄▀ ▀▄      ▀█▀
    ▄▀     ▀█▄▄▄▀▀ ▀
  ▄▀  ▄▀  ▄▀
 ▀▄    ▄▀▀
Live Games

   ▄▄▀▀▀▀▀▀▀▄▄
 ▄▀ ▄▄▀▀▀▀▀▄▄ ▀▄
▄▀ █ ▄  █  ▄ █ ▀▄
█ █   ▀   ▀   █ █  ▄▄▄
█ ▀▀▀▀▀▀▀▀▀▀▀▀▀ █ █   █
█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█  █▄█
█ ▀▀█  ▀▀█  ▀▀█ █  █▄█
█  █    █    █  █  █ █
Slots
.
        ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄
        █         ▄▄  █
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄       █
█  ▄▄         █       █
█             █       █
█   ▄▀▀▄▀▀▄   █       █
█   ▀▄   ▄▀   █       █
█     ▀▄▀     █   ▀▀  █
Blackjack
.
▄▄▀█████▀▄▄
▄▀▀   █████ ▄▄▀▀▄
███▄  ▄█████▄▀▀▄███
██████▀▀     ▀▀██████
█ ▀▀██▀ ▀▄   ▄▀ ▀██▀▀ █
█    █    ███    █    █
█ ▄▄██▄ ▄▀   ▀▄ ▄██▄▄ █
██████▄▄     ▄▄██████
Roulette
.
█▀▀▀▄             ▄▀▀▀█
█ ▀▄ ▀▄         ▄▀ ▄▀ █
▀▄ ▀▄ ▀▄     ▄▀ ▄▀ ▄▀
▀▄ ▀▄ ▀▄  ▀ ▄▀ ▄▀
▀▄ ▀▄ ▀▄ ▀ ▄▀
▄ ▀▄ ▀▄ ▀▄  ▄
█ ▀▄ ▀▄ ▀  ▄▀ █
▄▀▄ ▀▄ ▀ ▄▀ ▄▀▄
Dice Duels
JL421
Hero Member
*****
Offline Offline

Activity: 812
Merit: 510


View Profile
February 11, 2017, 10:00:30 AM
 #426

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.
Lionidas
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 1012


View Profile
February 11, 2017, 10:53:36 AM
 #427

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
Emerge
Legendary
*
Offline Offline

Activity: 854
Merit: 1000



View Profile
February 11, 2017, 11:43:46 AM
 #428

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!
Yuhee
Sr. Member
****
Offline Offline

Activity: 546
Merit: 250


View Profile
February 11, 2017, 12:35:28 PM
 #429

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.
MorpheWQ
Legendary
*
Offline Offline

Activity: 1288
Merit: 1110



View Profile
February 11, 2017, 05:45:19 PM
 #430

I'm gonna try yoladice.com. It seems great.
Reid
Hero Member
*****
Offline Offline

Activity: 2884
Merit: 642


View Profile
February 12, 2017, 03:12:34 AM
 #431

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.
dooglus
Legendary
*
Offline Offline

Activity: 2940
Merit: 1330



View Profile
February 12, 2017, 03:31:59 AM
 #432

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.

Just-Dice                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   Play or Invest                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   1% House Edge
LTC0
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 12, 2017, 03:32:22 AM
 #433

Looks great I'll try  Shocked
ko0ll0ove
Full Member
***
Offline Offline

Activity: 182
Merit: 100



View Profile
February 12, 2017, 12:55:28 PM
 #434

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.
1BitcoinMillionaire
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
February 12, 2017, 03:04:05 PM
 #435

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!
moooonu
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500



View Profile
February 12, 2017, 04:26:17 PM
 #436

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

That's great news and major update for YD. Keep working on YD to make one of the best and eventually on top of all Smiley
hatshepsut93
Legendary
*
Offline Offline

Activity: 2968
Merit: 2145



View Profile
February 12, 2017, 09:16:54 PM
 #437

It would be nice to see info about open/close dates of our investments so we don't have to write it down manually. Some other sites offer even more details, like profit charts for example.

.BEST.CHANGE..███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Clement Kaliyar
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 532


View Profile
February 12, 2017, 10:56:38 PM
 #438

It would be nice to see info about open/close dates of our investments so we don't have to write it down manually. Some other sites offer even more details, like profit charts for example.
For sure that will be a good addition if you could enable more details for the investors and it might even attract new investors. what is your opinion on that ethan,i would like to hear that from you. Smiley
rainingbitcoins
Sr. Member
****
Offline Offline

Activity: 728
Merit: 252


SmartFi - EARN, LEND & TRADE


View Profile
February 13, 2017, 08:52:54 AM
 #439

Well I have never put my bitcoins in any dice sites yet as I feel that luck won't favor me and would end up on loosing side but now as I am part of this campaign so would surely try my luck with small amount of bitcoins lets see what results comes up  Grin

████
██
██
██
██
██
██
██
██
██
██
██
████
...The Open..............
...Lending Platform...
████
████
████
████
████
████
████
████
████
████
████
████
████
▄▄█████████▄▄
▄█████████████████▄
▄██████████▀▀▀▀███████▄
█████████▀        ███████
████████▀        ▄█████████
█████████       ▄▀▀██████████
█████████     ▄▀   ▀█████████
██████████  ▄▀      █████████
█████████▀▀       ▄████████
███████        ▄█████████
▀███████▄▄▄▄██████████▀
▀█████████████████▀
▀▀█████████▀▀
.SMARTFI..████
████
████
████
████
████
████
████
████
████
████
████
████
...Join the SmartFi.....
...Token Sale...
████
██
██
██
██
██
██
██
██
██
██
██
████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████                ██████
█████▌   ███    ███   ▐█████
█████▌   ▀▀▀    ▀▀▀   ▐█████
██████                ██████
███████▄  ▀██████▀  ▄███████
████████████████████████████
████████████████████████████
████████████████████████████
ethan_nx (OP)
Sr. Member
****
Offline Offline

Activity: 745
Merit: 471


Admin at YOLOdice.com - fast, fair, play/invest.


View Profile WWW
February 13, 2017, 09:23:49 AM
 #440

It would be nice to see info about open/close dates of our investments so we don't have to write it down manually. Some other sites offer even more details, like profit charts for example.

Hi,

there are no profit charts for individual investors, but there are quite detailed site profit stats at https://yolodice.com/#stats/investor . These include 1d, 1h and 15m profit candle charts, amounts wagered and as many public data about investment structure we could compile.

On the other hand, open/close dates of individual investments are available. Just do this on your https://yolodice.com/#invest page:

1. If you want to see already closed investments, check the "include closed investments" checkbox,
2. Click any investment you want more info about.

Here are the pics:




Hope this helps! Cheers,
Ethan

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 [22] 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 ... 225 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!