Bitcoin Forum
May 28, 2024, 08:23:04 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 14 »  All
  Print  
Author Topic: [Free Script] Untitled Dice - Run your own bitcoin dice site (no server needed)  (Read 64324 times)
KnightTrader
Sr. Member
****
Offline Offline

Activity: 288
Merit: 250


View Profile
October 29, 2015, 06:43:37 PM
 #141

Thanks for great free script Smiley

Does anyone know what is minimum house edge what can be used without changing calculating formula?

I tried 0.02%, but ended up players reporting that it rounds to neutral EV at some multipliers resulting moneypot to reject bet.
uwichii
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
October 30, 2015, 05:30:00 AM
 #142

Added an FAQ section to the first post that answers this question.

I will soon update the script so that it makes it more clear *why* the Faucet is failing.

Let me know if you still have trouble after setting up ReCaptcha, joclixal.
dan (OP)
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
November 01, 2015, 08:58:43 AM
 #143

Thanks for great free script Smiley

Does anyone know what is minimum house edge what can be used without changing calculating formula?

I tried 0.02%, but ended up players reporting that it rounds to neutral EV at some multipliers resulting moneypot to reject bet.

MoneyPot aka its investors accept bets according to the kelly criterion, so by minimizing the house edge (minimizing the investors' odds) you're minimizing the amount of the bankroll that the investors are willing to stake. Obviously, with every bet, the investors are staking wager*multiplier while the player is staking only the wager.

In other words, if you minimize the house edge, then you're guaranteeing that nobody will ever be able to make bets with large wagers or high multipliers because you're directly limiting the max profit per bet.

So the "minimum house edge" is the one that lets your players make the bets that they want to make. This includes whales and, for example, players that don't want their bet to be rejected when they're trying to double their wager on their 5th consecutive martingale loss.

I hope that illuminates why there's no real answer to your question. Players want a low house edge, but they also need a house edge high enough to attract a counterparty to their bets (the investors).

You can get an idea of how house edge impacts max profit by playing with the "Payout Editor" I made on plinkopot.com.

https://i.imgur.com/hSUoibY.png
KnightTrader
Sr. Member
****
Offline Offline

Activity: 288
Merit: 250


View Profile
November 01, 2015, 03:18:49 PM
 #144

Thank you for well detailed answer!
Sir_lagsalot
Sr. Member
****
Offline Offline

Activity: 392
Merit: 251



View Profile
November 19, 2015, 07:10:12 AM
Last edit: November 20, 2015, 12:09:17 PM by Sir_lagsalot
 #145

I'm currently having a little trouble with moneypot. I've set up the dice site, but after you log in, everything stays at loading.

Screenshot: http://imgur.com/rjxkDXg


You can see it here: http://www.dice.fastcoins.cf

Has anyone had this problem, and know a fix? Or have I done something wrong? I've even tried deleting all the files on my ftp server, reuploading and reconfiguring, but to no avail.


EDIT - I've fixed this problem already!
Sir_lagsalot
Sr. Member
****
Offline Offline

Activity: 392
Merit: 251



View Profile
November 20, 2015, 12:09:26 PM
Last edit: November 20, 2015, 12:31:52 PM by Sir_lagsalot
 #146

Hey guys, i'm looking to enhance my dice site. It is based on your API. I want to add a loyalty program, but I'm unsure of how to do this.

What I want: A loyalty program that measures how many consecutive days you wager x+ bits, and stores that info. Depending on how many consecutive days, the house edge reduces. Maybe on your first ever day with the site, there is a 1.5% house edge, but after that the base edge is 5%. And each y consecutive days that gamble for, the house edge decreases by z. Is this possible, or would I have to contact moneypot and get them to push this into an update, or get them to help me personally?

If anyone can help me do this, PM me and I am willing to pay them.


P.S. Can you guys update the script so it automatically refreshes the balance every time you claim from the faucet?
doV
Member
**
Offline Offline

Activity: 109
Merit: 10


View Profile
November 25, 2015, 06:38:00 PM
 #147

Is there a way or tool to edit the HTML code easier?

Something like this:

Code:
<div class="panel panel-default">
</div>

Rather than this:

Code:
var ChatUserList = React.createClass({
  displayName: 'ChatUserList',
  render: function() {
    return (
      el.div(
        {className: 'panel panel-default'},
        el.div(
          {className: 'panel-heading'},
          'UserList'
        ),
        el.div(
          {className: 'panel-body'},
          el.ul(
            {},
            _.values(chatStore.state.userList).map(function(u) {
              return el.li(
                {
                  key: u.uname
                },
                helpers.roleToLabelElement(u.role),
                ' ' + u.uname
              );
            })
          )
        )
      )
    );
  }
});
Emerge
Legendary
*
Offline Offline

Activity: 854
Merit: 1000



View Profile
November 25, 2015, 08:33:45 PM
 #148

Is there a way or tool to edit the HTML code easier?

Something like this:

Code:
<div class="panel panel-default">
</div>

Rather than this:

Code:
var ChatUserList = React.createClass({
  displayName: 'ChatUserList',
  render: function() {
    return (
      el.div(
        {className: 'panel panel-default'},
        el.div(
          {className: 'panel-heading'},
          'UserList'
        ),
        el.div(
          {className: 'panel-body'},
          el.ul(
            {},
            _.values(chatStore.state.userList).map(function(u) {
              return el.li(
                {
                  key: u.uname
                },
                helpers.roleToLabelElement(u.role),
                ' ' + u.uname
              );
            })
          )
        )
      )
    );
  }
});

The code is in React, so it might be better if you learned
that before delving into this project.
freedoge.co
Hero Member
*****
Offline Offline

Activity: 909
Merit: 506



View Profile
December 08, 2015, 09:15:42 PM
 #149

any possibility to add auto betting (robot)?

Straux
Sr. Member
****
Offline Offline

Activity: 412
Merit: 251



View Profile
December 09, 2015, 12:03:07 AM
 #150

good work. Is it possible to use just the API? I don't really like the UI... is there somewhere I can d find the whole list of api commands?
elm
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000


View Profile
December 09, 2015, 06:40:14 AM
 #151

good work. Is it possible to use just the API? I don't really like the UI... is there somewhere I can d find the whole list of api commands?

you should find the API at moneypot.com
marbleregional
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
December 09, 2015, 06:56:52 AM
 #152

What does this mean when trying to log in with moneypot?

The app that directed you here did not supply a valid request.
Reason: redirect_uri does not match any of the URIs configured by the app operator
Until the operator of the app complies with the MoneyPot API, you cannot authorize this app.

wdnj
Hero Member
*****
Offline Offline

Activity: 762
Merit: 500



View Profile
January 06, 2016, 12:31:17 PM
 #153

Installed the script and setup config after I read OP post guide but at moneypot site Domain Not Verified  
BTW OAuth Response Type: is token.where's the error?
dk8218
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
January 06, 2016, 01:40:16 PM
 #154

Looks pretty confusing...
Because..
As you said no server needed...
And no investment..
Then it will be only a game...
Or it will pay also.. ??
I mean to say by this can we get btc in our wallet or it will be only for game..not more than that..
JackpotRacer
Legendary
*
Offline Offline

Activity: 1946
Merit: 1014


All Games incl Racer and Lottery game are Closed


View Profile
January 06, 2016, 01:46:29 PM
 #155

Looks pretty confusing...
Because..
As you said no server needed...
And no investment..
Then it will be only a game...
Or it will pay also.. ??
I mean to say by this can we get btc in our wallet or it will be only for game..not more than that..

just go to moneypoit.com and read a bit. we have 3 moneypot game apps as you can see in my signature.
you are doing a dice app with moneypot API and moneypot will take care of bank roll and provably fair. you need client side only. actually very easy but the question is if another dice site is worth your time and work. but if it is only for you to play a bit thats perfect

Please check my Scam accusation against 👉 Blackjack.fun 👈 to be always up to date
                       👇🏿👇👇👇👇👇👇👇🏿
https://bitcointalk.org/index.php?topic=5474047.0
Maru2
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
January 22, 2016, 01:40:52 AM
Last edit: January 22, 2016, 05:01:00 AM by Maru2
 #156

Is this still active? Just entered Moneypot and saw an Ad informing that is under new administration...

https://i.imgur.com/bf3996q.png
Also, didn't find a reply to this one:
just to be sure that I understood you right. lets say I will have 1k users so they all need to register with moneypot instead with my website?
thanks
JackpotRacer
Legendary
*
Offline Offline

Activity: 1946
Merit: 1014


All Games incl Racer and Lottery game are Closed


View Profile
January 22, 2016, 07:19:29 AM
 #157

Is this still active? Just entered Moneypot and saw an Ad informing that is under new administration...


Also, didn't find a reply to this one:
just to be sure that I understood you right. lets say I will have 1k users so they all need to register with moneypot instead with my website?
thanks

what do you mean with "is this still active?"


yes you are right all your users will need to register with moneypot to play on your game app.
but it is actually very easy to register with moneypot because user does not need an email just user name and password.

good luck

Please check my Scam accusation against 👉 Blackjack.fun 👈 to be always up to date
                       👇🏿👇👇👇👇👇👇👇🏿
https://bitcointalk.org/index.php?topic=5474047.0
Maru2
Newbie
*
Offline Offline

Activity: 45
Merit: 0


View Profile
January 22, 2016, 01:23:48 PM
Last edit: January 22, 2016, 01:39:56 PM by Maru2
 #158


yes you are right all your users will need to register with moneypot to play on your game app.
but it is actually very easy to register with moneypot because user does not need an email just user name and password.

good luck
Great, I was testing some stuffs and noticed some things that could be improved...
-It is okay to send suggestions? If yes, I just can send by the 'Support' area?
-I was looking for the text files(probably in html or php?) Or its not released?
 Found some text in app.js trough Smiley

JackpotRacer
Legendary
*
Offline Offline

Activity: 1946
Merit: 1014


All Games incl Racer and Lottery game are Closed


View Profile
January 22, 2016, 01:28:58 PM
 #159


yes you are right all your users will need to register with moneypot to play on your game app.
but it is actually very easy to register with moneypot because user does not need an email just user name and password.

good luck
Great, I was testing some stuffs and noticed some things that could be improved...
-It is okay to send suggestions? If yes, I just can send by the 'Support' area?
-I was looking for the text files(probably in html or php?) Or its not released?

a lot of things need to be improved Smiley but they know that and working on it though a bit slow

I am not sure that the support page is working because not long ago users complained that it does not work. I would propose that you contact @ranlo or @dogedigital so they can invite you to the slack group where the app owners and devs have their meeting point.

Please check my Scam accusation against 👉 Blackjack.fun 👈 to be always up to date
                       👇🏿👇👇👇👇👇👇👇🏿
https://bitcointalk.org/index.php?topic=5474047.0
jmintuck02
Full Member
***
Offline Offline

Activity: 182
Merit: 100

★Bitvest.io★ Play Plinko or Invest!


View Profile
January 23, 2016, 06:08:37 AM
 #160

WOAH! My wet dream. Wanted to run a dice site, but usually the script cost a lot and I had to supply the bankroll. Both sucked dik. Now you provide a real

solution.

Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 »  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!