Bitcoin Forum
May 19, 2024, 10:20:03 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 »  All
  Print  
Author Topic: [FREE] BitcoinDice 1.0 - Free Open Source Dice Script - Run Your Own Casino  (Read 13871 times)
rday3
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile WWW
October 10, 2014, 11:44:06 AM
 #21

The best idea would just be to buy it. If you're planning on making money from it then you might as well support who ever made and and make the investment to actually buy it.
CrackedLogic
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
October 10, 2014, 11:48:36 AM
 #22

Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!
The theme design is very, very, very similar to PrimeDice's theme. Wink

To be fair, they ripped it off from another guy who ripped it off of PD. Some guy called johnny sells scripts of a site similar to PD for 1btc and this guy appears to have that script and is simply offering it for free (perhaps with a backdoor?)

There most likely is to be a backdoor with the script, I wouldn't recommend you using a free dice script if you aren't able to pay for one.

Shocked BUY GAMESWITHBTCITCOINFORDISCOUNTEDPRICES Shocked
BitCoinDream
Legendary
*
Offline Offline

Activity: 2324
Merit: 1204

The revolution will be digital


View Profile
October 10, 2014, 12:14:42 PM
 #23

Any good bitcoin enthusiast,remove its backdoor and make it open source stuff voluntarily,

So that U can make money at the cost of other's sweat ?

rday3
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile WWW
October 10, 2014, 12:26:14 PM
 #24

Just support the developer who made it. Someone already pointed out that this was taken from someone else.

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
October 10, 2014, 01:47:06 PM
 #25

Working on cleaning it.

RocketSingh
Legendary
*
Offline Offline

Activity: 1662
Merit: 1050


View Profile
October 10, 2014, 01:58:31 PM
 #26

Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?

williamj2543
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500

Get ready for PrimeDice Sig Campaign!


View Profile WWW
October 10, 2014, 03:13:04 PM
 #27

Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
▓▓▓▓▓  BIT-X.comvvvvvvvvvvvvvvi
→ CREATE ACCOUNT 
▓▓▓▓▓
█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
RocketSingh
Legendary
*
Offline Offline

Activity: 1662
Merit: 1050


View Profile
October 10, 2014, 04:07:29 PM
 #28

Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

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.

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
October 10, 2014, 11:43:37 PM
 #29

Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

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.
Haven't gotten to bet-making.

Chat uses ajax though.


RocketSingh
Legendary
*
Offline Offline

Activity: 1662
Merit: 1050


View Profile
October 11, 2014, 06:57:22 AM
 #30

Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

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.
Haven't gotten to bet-making.

Chat uses ajax though.



Is chat using a conventional DB or a flat file for conversation storage ?

Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
October 11, 2014, 07:00:52 AM
 #31

Working on cleaning it.

Is there any implementation of web socket in this project ? Otherwise how come real time bet updates are taking place ?
Using ajax caling from a mysql database, its not hard for realtime bets. when the bet is placed it instantly goes into the mysql database and ever second or so the bet table is updated. Thats how my website goes anyways, I don't know about this one.

But, I read here that using Ajax for a dice site may make things terrible.

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.
Haven't gotten to bet-making.

Chat uses ajax though.



Is chat using a conventional DB or a flat file for conversation storage ?
MySQL.

Edit:

Proud that I answered in 3 minutes. Hell yea. Roll Eyes

mistercoin
Legendary
*
Offline Offline

Activity: 1044
Merit: 1000


https://r.honeygain.me/XEDDM2B07C


View Profile WWW
October 11, 2014, 02:52:36 PM
 #32

Working on cleaning it.

When you rip through it, pm me with it and ill scan it again to make sure it is clean. A second set of eyes can save a lot of problems in the future.

elm
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000


View Profile
October 12, 2014, 06:59:33 AM
 #33

Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!

who is we? and why are you giving it for free? sorry but that stinks
Vortex20000
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500

sucker got hacked and screwed --Toad


View Profile WWW
October 12, 2014, 08:48:22 AM
 #34

Working on cleaning it.

When you rip through it, pm me with it and ill scan it again to make sure it is clean. A second set of eyes can save a lot of problems in the future.
I will.

steve98210
Member
**
Offline Offline

Activity: 85
Merit: 10


View Profile
October 12, 2014, 09:31:05 AM
 #35

Anyone has the clean version? Please share it.
BrannigansLaw
Hero Member
*****
Offline Offline

Activity: 603
Merit: 500



View Profile
October 12, 2014, 11:49:00 AM
 #36

So I went through and saw this entered as

INSERT INTO `admins` (`id`, `username`, `passwd`) VALUES
(1,   'admin',   '21232f297a57a5a743894a0e4a801fc3');

For part of the SQL when installing

I guess that is indeed for the admin and that you just change the password and username. It would make sense to have this when installing.

abramovich
Sr. Member
****
Offline Offline

Activity: 700
Merit: 250



View Profile
October 22, 2014, 02:01:50 PM
 #37

have any questions!
1 Which hosting is better to run the project?
2 How to install bitcoin wallet hosting and connect it to the site?
abramovich
Sr. Member
****
Offline Offline

Activity: 700
Merit: 250



View Profile
October 22, 2014, 07:01:12 PM
 #38

anyone know where I can give the link to read
abramovich
Sr. Member
****
Offline Offline

Activity: 700
Merit: 250



View Profile
October 23, 2014, 04:59:10 PM
 #39

nobody can help me?
abramovich
Sr. Member
****
Offline Offline

Activity: 700
Merit: 250



View Profile
October 23, 2014, 05:00:14 PM
 #40

Hello Everyone,

We have released BitcoinDice 1.0 - Free to use and free to distribute, You can download it from github, Please read the readme.md for instructions on how to install (This is very important)

https://github.com/felinegambler/BitcoinDice

The Script has many features, including chat, statistics, admin panel, adjustable house edge and is provably fair.

Please see the four images here - http://imgur.com/3FZqrdt,b5dUwEc,LoifRxZ,rrT5kU1#0


Good Luck and have fun running your own casino!

how to install Bitcoin Wallet on a server?
Pages: « 1 [2] 3 »  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!