Pages:
Author

Topic: [Free Script] Untitled Dice - Run your own bitcoin dice site (no server needed) - page 3. (Read 64517 times)

hero member
Activity: 854
Merit: 658
rgbkey.github.io/pgp.txt
will there be any more update or is that it how much ca you make by justing hosting the script to running the all think.  What is the best option  thanks
Well if you looked on the GitHub repo you would see that the last commit was about a year and a half ago, so no, there will probably not be any more updates.
full member
Activity: 137
Merit: 100
Free Just Ask
will there be any more update or is that it how much ca you make by justing hosting the script to running the all think.  What is the best option  thanks
newbie
Activity: 5
Merit: 0
hero member
Activity: 854
Merit: 658
rgbkey.github.io/pgp.txt
Is it possible to create an offline dice service?
What do you mean by offline? As in not a website? You couldn't just run a program on an offline computer and expect the house to know that you won or lost bets.
newbie
Activity: 7
Merit: 0
How can I disable the redirect to https? changing sth in app.js does not work
newbie
Activity: 47
Merit: 0
hello dan --

are there any updates past untitled dice v008 you mentioned autobet and vew all tab any updates ?

I think someone told earlier that Dan took long time ago time out of BTC stuff 

So do not expect anything..
newbie
Activity: 1
Merit: 0
hello dan --

are there any updates past untitled dice v008 you mentioned autobet and vew all tab any updates ?
newbie
Activity: 47
Merit: 0
Im using this now and i love it, i need to learn how to change things up different games etc, You should do more of these with different games. I just updated my app etc. Ill invite my users see how they like it :-)

https://satoshinet.com/dice
newbie
Activity: 47
Merit: 0
Wow i was just searching from long time to create a dice site for myself, and now i checked your script and it is very good, I will surely check this script with my site and give you the feedback,

If i need any thing more technical changes can you help me.

Sure!!  Please let me know.
legendary
Activity: 1302
Merit: 1027
Wow i was just searching from long time to create a dice site for myself, and now i checked your script and it is very good, I will surely check this script with my site and give you the feedback,

If i need any thing more technical changes can you help me.
newbie
Activity: 47
Merit: 0
Have modified the script and made it the most flexible dice game.  Check it yourself!!

URL: https://www.moneypot.com/apps/1470-flexi-dice 

OR

https://xchangeanything.com/flexidice/
 

May I request you all to test my new Flexi Dice app? 

It is the most flexible Dice game available on moneypot. You can bet on anyway you can imagine.  House Edge is 1%.  At present, only Admin can change Maximum number of Outcomes.   In next version of the game, you as user will be able to select your own Maximum number of outcomes (i.e. you want to play dice for 00-99 (simple-dice) or 00-100 (dust-dice) or 00-35 or 00-37 (roulette).  You can bet not only over or under but, you can bet for individual numbers, multiple ranges, same wager on all the number or different wager on all the number.  Betting is limited only by your imagination.

BetRolls string can be comma delimited Numbers or range. 
For ex:   "2-5, 8, 20, 30, 35 - 40" 
will bet on Rolls
2,3,4,5,8,20,30,35,36,37,38,39,40   

I hope you got the picture. 

Let me know if you have any query or suggestion for improvement. 

Thank you in advance
hero member
Activity: 896
Merit: 1000
Just feeling great by knowing that internet is full of good guys who shared their source code. I m extremely glad to get this in bitcointalk i was researching on this to build my own lottery system so this will make my life super easier..... big salute to you man

Shil account reposting the same thing much
hero member
Activity: 966
Merit: 515
One of the world's leading Bitcoin-powered casinos
Just feeling great by knowing that internet is full of good guys who shared their source code. I m extremely glad to get this in bitcointalk i was researching on this to build my own lottery system so this will make my life super easier..... big salute to you man
newbie
Activity: 47
Merit: 0
I just installed this on my webserver in a sub-folder in document root.

https://xchangeanything.com/xdice

When I access this app, immediately location/address bar changes to my main domain.  What am I missing?  I like to keep full URL in location/address bar.

Any help is greatly appreciated.

thanks



Just in case, if anyone else faces the same issue and is looking for solution, this is how I solved it.

I changed app.js as follow:
app.js:
Code:
var config = {
 ...
 redirect_uri: 'https://xchangeanything.com/xdice/',
 // added variable to keep folder path in location/address bar
 redirect_path: '/xdice/',   
...

also line 382 to 389:   changed line 384 & 388.
Code:
// Scrub fragment params from url.
if (window.history && window.history.replaceState) {
  window.history.replaceState({}, document.title, config.redirect_path);
} else {
  // For browsers that don't support html5 history api, just do it the old
  // fashioned way that leaves a trailing '#' in the url
  window.location.hash = config.redirect_path + '#';
}
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
I just installed this on my webserver in a sub-folder in document root.

https://xchangeanything.com/xdice

When I access this app, immediately location/address bar changes to my main domain.  What am I missing?  I like to keep full URL in location/address bar.

app.js:
Code:
var config = {
  app_id: ***,
  app_name: 'XchangeAnything DICE',
  recaptcha_sitekey: '*************',
  redirect_uri: 'https://xchangeanything.com/xdice/',
  mp_browser_uri: 'https://www.moneypot.com',
  mp_api_uri: 'https://api.moneypot.com',
  chat_uri: '//socket.moneypot.com',
  debug: isRunningLocally(),
  force_https_redirect: true,

Any help is greatly appreciated.

thanks



hi

you wrote somewhere you are communicating with MP owners. why don't you ask them to invite you into their slack channel? there you can get help imo

Thank you JackpotRacer!!  I have no idea what is MP's slack channel.  MP owner/support has communicated  that they are unable to help in any coding related queries.   But, asking for invitation to slack channel will not hurt/harm in anyway..  so I will send their support email address a formal request for invitation.

I believe my current question/challenge is not related to MP API.  I think it is part of this dice script and hence I posted it here.  I am waiting for Dan, if he has any suggestion..

thanks

ask Dogedigital for an invitation to their slack channel. there are a few very nice app devs who are willing and trying to help.

regarding Dan I am not sure if he will answer because he took long time ago time out of BTC stuff

if you are an app owner and dev you should join the slack Smiley

we are non coders but we have also Dan' script running

good luck
newbie
Activity: 47
Merit: 0
I just installed this on my webserver in a sub-folder in document root.

https://xchangeanything.com/xdice

When I access this app, immediately location/address bar changes to my main domain.  What am I missing?  I like to keep full URL in location/address bar.

app.js:
Code:
var config = {
  app_id: ***,
  app_name: 'XchangeAnything DICE',
  recaptcha_sitekey: '*************',
  redirect_uri: 'https://xchangeanything.com/xdice/',
  mp_browser_uri: 'https://www.moneypot.com',
  mp_api_uri: 'https://api.moneypot.com',
  chat_uri: '//socket.moneypot.com',
  debug: isRunningLocally(),
  force_https_redirect: true,

Any help is greatly appreciated.

thanks



hi

you wrote somewhere you are communicating with MP owners. why don't you ask them to invite you into their slack channel? there you can get help imo

Thank you JackpotRacer!!  I have no idea what is MP's slack channel.  MP owner/support has communicated  that they are unable to help in any coding related queries.   But, asking for invitation to slack channel will not hurt/harm in anyway..  so I will send their support email address a formal request for invitation.

I believe my current question/challenge is not related to MP API.  I think it is part of this dice script and hence I posted it here.  I am waiting for Dan, if he has any suggestion..

thanks
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
I just installed this on my webserver in a sub-folder in document root.

https://xchangeanything.com/xdice

When I access this app, immediately location/address bar changes to my main domain.  What am I missing?  I like to keep full URL in location/address bar.

app.js:
Code:
var config = {
  app_id: ***,
  app_name: 'XchangeAnything DICE',
  recaptcha_sitekey: '*************',
  redirect_uri: 'https://xchangeanything.com/xdice/',
  mp_browser_uri: 'https://www.moneypot.com',
  mp_api_uri: 'https://api.moneypot.com',
  chat_uri: '//socket.moneypot.com',
  debug: isRunningLocally(),
  force_https_redirect: true,

Any help is greatly appreciated.

thanks



hi

you wrote somewhere you are communicating with MP owners. why don't you ask them to invite you into their slack channel? there you can get help imo
newbie
Activity: 47
Merit: 0
I just installed this on my webserver in a sub-folder in document root.

https://xchangeanything.com/xdice

When I access this app, immediately location/address bar changes to my main domain.  What am I missing?  I like to keep full URL in location/address bar.

app.js:
Code:
var config = {
  app_id: ***,
  app_name: 'XchangeAnything DICE',
  recaptcha_sitekey: '*************',
  redirect_uri: 'https://xchangeanything.com/xdice/',
  mp_browser_uri: 'https://www.moneypot.com',
  mp_api_uri: 'https://api.moneypot.com',
  chat_uri: '//socket.moneypot.com',
  debug: isRunningLocally(),
  force_https_redirect: true,

Any help is greatly appreciated.

thanks

newbie
Activity: 13
Merit: 0
I managed to get my website up and running very smoothly. Now looking forward to digging into the code and making some design changes!

Gabber.us - Political News Feed


Best,
Jamyye
legendary
Activity: 1974
Merit: 1014
All Games incl Racer and Lottery game are Closed
who can help us with our next task

to change the dice game from 2 decimals after dot to 4 decimals?

please PM us

thx
Pages:
Jump to: