Pages:
Author

Topic: [FREE] BitcoinDice 1.0 - Free Open Source Dice Script - Run Your Own Casino (Read 13874 times)

copper member
Activity: 70
Merit: 1
Is this safe? I would like to use it.

How can I use it? do i install it on my host? help!  Roll Eyes
member
Activity: 98
Merit: 10
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?)

stunna but your prime dice site code is free???

maybee the basic function?Huh

thanks
member
Activity: 98
Merit: 10
Working on cleaning it.

waiting for your release vortex!!!

just a question:

did you found something like backdoor???

member
Activity: 112
Merit: 10
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 ?

this
elm
legendary
Activity: 1050
Merit: 1000
Not only OP's version may contain additional backdoors but the original coindice script contains many bugs and I would suggest to stay away.

from Johnny?
hero member
Activity: 560
Merit: 500
Not only OP's version may contain additional backdoors but the original coindice script contains many bugs and I would suggest to stay away.

Yeah but you can modify it and check for vulnerabilitys so that it should be clean.
sr. member
Activity: 322
Merit: 250
We at MultiDice Treat You Like a Winner
Not only OP's version may contain additional backdoors but the original coindice script contains many bugs and I would suggest to stay away.
legendary
Activity: 1044
Merit: 1000
https://r.honeygain.me/XEDDM2B07C
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?

If you don't even know how to install a wallet on to a server....you should not even be looking at hosting anything even remotely related to this... Roll Eyes
member
Activity: 102
Merit: 250
Anyone using this? It looks good!
Maybe, but it is still stolen code..
newbie
Activity: 4
Merit: 0
Anyone using this? It looks good!
sr. member
Activity: 700
Merit: 250
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?
sr. member
Activity: 700
Merit: 250
sr. member
Activity: 700
Merit: 250
anyone know where I can give the link to read
sr. member
Activity: 700
Merit: 250
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?
hero member
Activity: 603
Merit: 500
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.

member
Activity: 85
Merit: 10
Anyone has the clean version? Please share it.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
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.
elm
legendary
Activity: 1050
Merit: 1000
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
legendary
Activity: 1044
Merit: 1000
https://r.honeygain.me/XEDDM2B07C
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.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
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
Pages:
Jump to: