The fact use you a .tk domain does not inspire confidence.
I simply use this domain because it is nearly impossible to find a top level domain with dice or script in it which is easy to remember. Nobody wants to spent hours just to search for a domain to host a demo
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
May be worth adapting the script to MoneyPot as well. Might get more buyers that way, since MP gives the owners profit whether players win or lose and comes with a 1.1k+ BTC bankroll so owners don't have to worry about self-funding it.
Since Moneypot is offering a free script to there customers I am currently not interested in adapting my script. Also Moneypot only supports Bitcoin. My script supports a lot of coins out of the box.
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
I paid and it got currently >5 confirmations. No script (auto buy says 'Not paid'). Seller doesnt react to PM even though he's online. Be careful!
Sorry was sleeping and my bump bot was online. There was a bug in my webstore which didn't recognised the lowered price. You should have received the script now.
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
Thanks for your reply but the problem is the price of custom or even not a custom script is very high.. i saw some seller before they are selling those script for 0.02 usd.. and dice game is common game here.
Not trying to sound rude but if you can't afford the 0.75BTC for the script, I don't think you can finance the bankroll of a Dicesite. Although I have invested much time into programming it and provide support after purchase I think my price is fair.
I know these sellers they sale older or stolen versions of a script they are not allowed to resell, which is sold here for even more than my script (1.1BTC).
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
I would like to ask if this dice is working in crypto currency or other altcoin.. and also i just want to ask too if it needs a vps server where your main wallet location connected with json-RPC
Yes the basice script works with every altcoin which has an Bitcoin like RPC Api. If you want the script for a non supported coin purchase the custom version, than i will fit the script to your coin.
Yes it needs a vps server were the main wallet is running. The script itself needs a vps server too. You can run the script and the wallet on the same server. If you have problems setting it up i will support you.
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
Does the script have cms included so if you don't understand html and php it will be easier for someone to change the title and fonts on the site
The title can be changed over a config file and you can choose between 5 different layouts in the config file. To create a new layout you must know html and css. So to answer your question: It has no cms, but you can choose between 5 different colours for your script if you don't know html and css.
Post
Topic
BoardDigital goods
Re: Bitcointalk Bot | Keep your Topic on Top with automatic bumps!
by
Alesfatalis
on 11/06/2016, 21:25:18 UTC
You guys are right. I am going to have a look at it. My bot seems to have a bug
Post
Topic
BoardDigital goods
Re: Bitcointalk Bot | Keep your Topic on Top with automatic bumps!
You realize a guy has been selling a bot exactly like this since beginning of march...makes you look like a ripper.
Well if you would read a topic before posting you would realise that my bot and his bot are completely different in terms of programming language and technology used. So this doesn't makes me look like a ripper
Post
Topic
BoardDigital goods
Re: [WTS] Bitcoin Website Scripts Earn Unlimited income with $5 Investment
by
Alesfatalis
on 03/06/2016, 13:35:14 UTC
Selling stolen and nulled scripts you are not allowed to resell is bad and than you advertise an website in your profile were you get these scripts for free you are trying to sell is really fucked up:
You are even selling them on the same forum as the original developer. Proof: https://bitcointalk.org/index.php?topic=507515.0 I don't think johny1976 would allow you to sell his 1 BTC script for 5$
Post
Topic
BoardDigital goods
Re: Bitcointalk Bot | Keep your Topic on Top with automatic bumps!
Bumps your topic after a chosen timeframe (min. 24h)
Written in Javascript
Uses selenium and Nodejs
Runs with firefox or phantomjs
Price for the bot: 0.019BTC
You are not allowed to resell this script or open source it!
FAQ: Do i have to provide my credentials?
Code:
Yes you enter the credentials into the script. The script runs on your machine and your credentials are safe and stay on your machine. You can check this in the source code you get access to when you pourchase.
How is the bot working?
Code:
The bot opens a browser window than it logs itself into your account. After that he is going to visit your topic and checks when the last post was made. Is the last post older than 24h the bot is posting a Bump Post. Is the last post a Bump Post he is going to delete it bevore writing a new Bump.
Is this allowed?
Code:
Yes the bot follows the forum rules by bumping a topic only once in 24h and by deleting its previous Bump post.
How do i buy the script?
Code:
Send me a pm with your mail with the subject: BitcointalkBot. I will answer with a bitcoin address to send your payment to. After payment i will send you a mail with the bot and the installation instructions.
Note: this thread is bumped by the bot Bot currently has a bug. Sale is stopped until fixed
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
Yes the basic version of my script is going to work with Rbies. The Rbies wallet has the same RPC-API as Bitcoin
Post
Topic
BoardDigital goods
Re: DiceScript | Start your own dice casino site! Supports every coin!
by
Alesfatalis
on 01/06/2016, 02:25:05 UTC
Bump
Post
Topic
BoardProject Development
Re: Provably Fair Script
by
Alesfatalis
on 31/05/2016, 17:05:36 UTC
Here you have an implemention of a provably fair system:
Code:
//the seed pair itself var clientSeed = "your client seed"; //dont forget to exclude the dash and the nonce! var serverSeed = "your server seed";
//bet made with seed pair (excluding current bet) var nonce = 0;
//crypto lib for hmac function var crypto = require('crypto');
var roll = function(key, text) {
//create HMAC using server seed as key and client seed as message var hash = crypto.createHmac('sha512', key).update(text).digest('hex');
var index = 0;
var lucky = parseInt(hash.substring(index * 5, index * 5 + 5), 16);
//keep grabbing characters from the hash while greater than while (lucky >= Math.pow(10, 6)) { index++; lucky = parseInt(hash.substring(index * 5, index * 5 + 5), 16);
//if we reach the end of the hash, just default to highest number if (index * 5 + 5 > 128) { lucky = 99.99; break; } }
You can run this script with node.js. This shows how you calculate the outcome of a dice roll. You just have to make sure that as long as your user is playing with a serverSeed you don't reveal it to him only the hash of the seed is revealed. Make sure to use for each user another serverSeed. The clientSeed is chosen by the user.