Bitcoin Forum
June 25, 2024, 06:23:02 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 »  All
  Print  
Author Topic: CoinDice - Start your own dice site today.  (Read 49595 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
kulme
Full Member
***
Offline Offline

Activity: 156
Merit: 100


View Profile
October 14, 2014, 03:30:09 PM
 #101

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

Kulme
rohanpandit1992
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile WWW
October 22, 2014, 01:31:05 PM
 #102

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

(BTC          CRYPTOMINE          BTC)  √ High Energy Efficiency         √ Innovative Technical Architecture    ☞ SIGN UP NOW!
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
PROFITABLE CLOUD MINING   √ Libertarian Business Model  √ Mine BITCOIN or ALTCOIN              ☞ VISIT OUR THREAD!
BTCloft.com
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile WWW
October 27, 2014, 06:18:08 PM
 #103

Should try to implement this, instead of a local bitcoin wallet.

https://github.com/blockchain/receive_payment_php_demo
johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 17, 2014, 02:19:46 PM
 #104

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

Activity: 2338
Merit: 1204

The revolution will be digital


View Profile
November 17, 2014, 02:25:57 PM
 #105

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.

johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 17, 2014, 02:53:37 PM
 #106

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

Activity: 2338
Merit: 1204

The revolution will be digital


View Profile
November 17, 2014, 04:40:02 PM
 #107

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 ?

johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 20, 2014, 12:38:18 PM
 #108

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.
nskendrovic
Full Member
***
Offline Offline

Activity: 285
Merit: 100



View Profile
November 24, 2014, 06:48:28 PM
 #109

Hi im interested in buying this system.
How do we arange this. All i have is a domain and hosting on godady :-P
johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 25, 2014, 03:32:07 PM
 #110

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
TradeSmart
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 25, 2014, 09:34:05 PM
 #111

Can I get my answers in email faster? For 1+ month I received 5 emails from you, but I sent you like 30  Cool
moreia
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
November 29, 2014, 12:18:05 AM
 #112

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?
johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
November 29, 2014, 07:42:53 PM
 #113

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

Activity: 394
Merit: 250


For the watch


View Profile
November 30, 2014, 08:26:59 PM
 #114

I would like to purchase this. Sent you a PM about it, waiting on reply.

moreia
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
November 30, 2014, 08:57:54 PM
 #115

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
is there a resale rights copy? Does the script take investments?
Thanks
TradeSmart
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
December 01, 2014, 01:39:20 PM
 #116


Hello,

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

Johny

Lifetime support, but no answers for weeks?
johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
December 01, 2014, 05:57:55 PM
 #117


Hello,

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

Johny

Lifetime support, but no answers for weeks?

Support doesn't mean custom modifications. Your offer has the lowest importance so far because customers with support questions, not cooperation offers, are more important. Will answer to your email in few days.
johny1976 (OP)
Legendary
*
Offline Offline

Activity: 1135
Merit: 1002

Developer


View Profile
January 11, 2015, 07:20:29 PM
 #118

UPDATE | CoinDice 3.6

v3.6 changelog:
  - CRON dependency completely removed!
  - minor performance and syntax improvements
TradeSmart
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
January 13, 2015, 02:42:31 PM
 #119

What files do we need to update? I have received Full install. I hope design part wasn't changed there, since Integrator worked at custom design for 1 month now. Ask please Imrer to check email.
bitzland
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
January 13, 2015, 10:23:52 PM
 #120

Hi
is it opensource, and can i change the coce ? for example integrate it into other game ?
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 12 13 »  All
  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!