Pages:
Author

Topic: CoinDice - Start your own dice site today. - page 8. (Read 49645 times)

legendary
Activity: 1135
Merit: 1002
Developer
November 29, 2014, 02:42:53 PM
people are selling copies of this (and modified versions to take investments labelled "CoinDice 4") for as low as .25btc on cryptothrift
Any explanation for this, are these copies allowed?
also can copies be resold?

Hello,

this is against our rules. Our licenses comes with lifetime support and updates. Reselling our products is not allowed.

Johny
sr. member
Activity: 350
Merit: 250
November 28, 2014, 07:18:05 PM
people are selling copies of this (and modified versions to take investments labelled "CoinDice 4") for as low as .25btc on cryptothrift
Any explanation for this, are these copies allowed?
also can copies be resold?
newbie
Activity: 42
Merit: 0
November 25, 2014, 04:34:05 PM
Can I get my answers in email faster? For 1+ month I received 5 emails from you, but I sent you like 30  Cool
legendary
Activity: 1135
Merit: 1002
Developer
November 25, 2014, 10:32:07 AM
Hi im interested in buying this system.
How do we arange this. All i have is a domain and hosting on godady :-P

Website hosting is not enought, you need VPS. One of the best VPS providers is DigitalOcean.com

1) you send us 1.1 BTC and provide us your email
2) we send you script package
3) you give us access to your VPS (optional)
4) if we've got access to your VPS, we install everything so it's online and ready to profit

We can also use escrow of course

Please send me PM to proceed.

Johny
full member
Activity: 285
Merit: 100
November 24, 2014, 01:48:28 PM
Hi im interested in buying this system.
How do we arange this. All i have is a domain and hosting on godady :-P
legendary
Activity: 1135
Merit: 1002
Developer
November 20, 2014, 07:38:18 AM
Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo

Then it would work only for Bitcoin. You have to host your own wallet, but it can be any coin wallet you want.

As I can see, u r using PHP-MySQL and probably AJAX for real time updates. Does not it experience hiccup for real time update at high volume bet in small time window ?

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.

Thank you for your tip. However most VPS servers are configured for PHP only by default and we must to make do with what our possibilities are.

It's not the best solution to use AJAX requests to get bets history, but at this time we can say this is the easiest way for us to make it all work together and give our customers profitable casino that actually works and doesn't require loads of non-standard technologies.

Thanks for your response. I think u r indicating Node.js+socket.io is a non-standard technology (please correct me if I'm wrong). A lot of gambling site owners have shared their backend technology in this thread. Would u like to share your development details in that thread which r successfully used by your clients ?


Yes, those technologies might be widely used by casinos operators, but not with scripts which are sold to customers because of standard VPS configurations... We may consider building new engine for our future scripts to easier work with the new technologies.
legendary
Activity: 2394
Merit: 1216
The revolution will be digital
November 17, 2014, 11:40:02 AM
Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo

Then it would work only for Bitcoin. You have to host your own wallet, but it can be any coin wallet you want.

As I can see, u r using PHP-MySQL and probably AJAX for real time updates. Does not it experience hiccup for real time update at high volume bet in small time window ?

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.

Thank you for your tip. However most VPS servers are configured for PHP only by default and we must to make do with what our possibilities are.

It's not the best solution to use AJAX requests to get bets history, but at this time we can say this is the easiest way for us to make it all work together and give our customers profitable casino that actually works and doesn't require loads of non-standard technologies.

Thanks for your response. I think u r indicating Node.js+socket.io is a non-standard technology (please correct me if I'm wrong). A lot of gambling site owners have shared their backend technology in this thread. Would u like to share your development details in that thread which r successfully used by your clients ?
legendary
Activity: 1135
Merit: 1002
Developer
November 17, 2014, 09:53:37 AM
Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo

Then it would work only for Bitcoin. You have to host your own wallet, but it can be any coin wallet you want.

As I can see, u r using PHP-MySQL and probably AJAX for real time updates. Does not it experience hiccup for real time update at high volume bet in small time window ?

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.

Thank you for your tip. However most VPS servers are configured for PHP only by default and we must to make do with what our possibilities are.

It's not the best solution to use AJAX requests to get bets history, but at this time we can say this is the easiest way for us to make it all work together and give our customers profitable casino that actually works and doesn't require loads of non-standard technologies.
legendary
Activity: 2394
Merit: 1216
The revolution will be digital
November 17, 2014, 09:25:57 AM
Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo

Then it would work only for Bitcoin. You have to host your own wallet, but it can be any coin wallet you want.

As I can see, u r using PHP-MySQL and probably AJAX for real time updates. Does not it experience hiccup for real time update at high volume bet in small time window ?

Well, for example pocketdice.io sends a PHPSESSID cookie, so it's safe to say they use PHP ( https://pocketdice.io/index.php works too Wink). Besides that, you can easily see the socket.io socket.


A socket is an open connection between the client (browser) and server with bidirectional communication. If you make a bet, you send the info through the socket (and you get the result) and if others bet you get the bets from there. So it's all real-time, you only connect once. There are different libraries/servers for this, Socket.io is a popular one made in node.js. Perfect for a dice site.

An alternative is indeed getting new data with AJAX requests. With that, the browser would make a connection/request every x seconds to see if there are new bets. Obviously for a dice site this would be pretty terrible and give big lag and other problems. However AJAX is useful for other purposes.
legendary
Activity: 1135
Merit: 1002
Developer
November 17, 2014, 09:19:46 AM
Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo

Then it would work only for Bitcoin. You have to host your own wallet, but it can be any coin wallet you want.
newbie
Activity: 22
Merit: 0
Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo
member
Activity: 98
Merit: 10
Have a question I don't have a bitcoinqt wallet only have a block chain wallet so it is possible to run this using block chain wallet
full member
Activity: 156
Merit: 100
Coinjack is good.

But, I have problem on coindice deposit. I make test deposit BTC0.05
Wait 1-2 minutes
I try to click pending deposit and I'm not see my deposit till 30 MINUTES.

Please fix that thx
legendary
Activity: 1135
Merit: 1002
Developer

 Yeah having your dice game for this cheap at ready to go level is a great thing but not being sure that you might get hacked and you might wake up one day to find all of your bankroll emptied is a horrible tought , if people believed this thing actually worked and secure these guys would have 100x the sales Cheesy

I agree with you and this is why are we releasing new updates everytime the bug is found. We also give a 100% refund of all your losted coins when your bankroll is emptied by someone else. It's kind of guarantee that we do believe in our product.

Thanks for you question!

So just to re-iterate, you're guaranteeing that if for some reason coins are lost from vulnerabilities, exploits, or hacks on your software, that you will reimburse the lost coins to the purchaser of your script?

Yes, to the max of the script price.
legendary
Activity: 1330
Merit: 1000
October 11, 2014, 04:25:20 PM
#99

 Yeah having your dice game for this cheap at ready to go level is a great thing but not being sure that you might get hacked and you might wake up one day to find all of your bankroll emptied is a horrible tought , if people believed this thing actually worked and secure these guys would have 100x the sales Cheesy

I agree with you and this is why are we releasing new updates everytime the bug is found. We also give a 100% refund of all your losted coins when your bankroll is emptied by someone else. It's kind of guarantee that we do believe in our product.

Thanks for you question!

So just to re-iterate, you're guaranteeing that if for some reason coins are lost from vulnerabilities, exploits, or hacks on your software, that you will reimburse the lost coins to the purchaser of your script?
legendary
Activity: 1135
Merit: 1002
Developer
October 11, 2014, 05:45:44 AM
#98
Sorry for delay guys, PMs sent.
newbie
Activity: 22
Merit: 0
October 10, 2014, 02:43:10 PM
#97
Info ? PM ?
newbie
Activity: 14
Merit: 0
October 10, 2014, 12:11:32 PM
#96
Any news?
newbie
Activity: 22
Merit: 0
October 09, 2014, 09:11:46 AM
#95
Hello,

Im very interested, would like to know what type of security it has to avoid getting hacked since coins are stored locally.
Is there a way to connect it to a Blockchain wallet for example ?

PM is fine.

Thanks in advanced.
BTCloft
newbie
Activity: 42
Merit: 0
October 08, 2014, 03:15:27 AM
#94
Anyone have this? How about some bugs? Was any API hacks?
Pages:
Jump to: