Bitcoin Forum
June 16, 2024, 11:37:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Economy / Gambling / Re: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐ on: August 30, 2020, 11:18:04 PM
great site! if you added sound to the dice game it would be cool

Can you look at adding a feature for minesweeper where I can increase on loss by amounts other than a whole number?

Please contact support@crypto.games with suggestions/requests regarding our games.. Wink





Too much effort
2  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 22, 2020, 09:30:17 PM
Quote

Looking at your code... the only time it will end up as chance=49 is when the lastBet.Roll was <3.3 or > 96.7 AND it was a loss...

The "if !win then... else..." block you have means that if it was a win... it sets nextbet = balance /1024 and then chance is set to 97.2549.

So currently, will only work if it is < 3.3... as you're betting "high" to start by default, if the roll is over 96.7 you'll win and the chance won't change.


I appreciate all the help! I will try to implement that and see how it runs. Much appreciated!


EDIT:

Seems to do exactly what I wanted it to do, but I'm still not rich :/   (that's a joke)

Thanks again for all the help HCP.
3  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 22, 2020, 01:23:15 PM
You'll have to show your full script... there is obviously something elsewhere in your script which is overriding your chance setting that is done in the if (< 3 or > 97) block...

There is no way it should have reset to 97% unless there is another code branch setting the chance somwhere.

Maybe it would be easier to state my end goals for this. I figured I would try to solve each problem as I try to implement it, but we'll see if this clears things up.

I want to run high on 97.2% chance until it rolls under 3 or over 97. If it rolls under 3, it should change to 49% chance and do a basic martingale until a win, which would reset it. If it rolls over 97 I want it to do the same thing, but switch it to rolling low instead. Here's thejumbled c++/lua logic I could come up with for that but am still trying to implement. i can't seem to figure out how to do branches in the if statement like this in LUA:

Code:
dobet

if lastBet < 3.3
   { chance = 49.5;
        while (!win)
            {nextbet = previousbet*2;}
     }
elseif lastBet > 97.6
   {switch low;
     chance = 49.5;
        while (!win)
            {nextbet = previousbet*2;}
     }
else
{ nextBet = balance / 512;}
4  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 22, 2020, 12:57:17 PM
You'll have to show your full script... there is obviously something elsewhere in your script which is overriding your chance setting that is done in the if (< 3 or > 97) block...

There is no way it should have reset to 97% unless there is another code branch setting the chance somwhere.

Everything else seemed to run fine, other than right there. But here's my full thing:

Code:

basebet = balance / 1024
nextbet = basebet
chance  = 97.2549

function dobet()
    if (lastBet.Roll < 3.3 or lastBet.Roll > 96.7) then
        chance = 49.1089
    end
    
        if !win then
            nextbet = previousbet*2
        else
            nextbet = balance / 1024
            chance  = 97.2549
        end

end


I know it's a super complex code, but I just don't see where else it would be going wrong.
5  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 22, 2020, 02:57:47 AM
Yeah... I'm an idiot... but, in my defense, I've been doing mostly Python programming lately!! Tongue The correct the syntax for "combining" multiple outputs for a print() statement in LUA is ".." not "," Roll Eyes Roll Eyes

Try:
Code:
function dobet()
    print("Roll: " .. lastBet.Roll)
    if (lastBet.Roll < 3.3 or lastBet.Roll > 96.7) then
        chance = 49.1089
    end
...


Lol, i probably could have just looked up how to do a print function, but it all looked good to me so I didn't. Lemme try that one.

So I was fortunate to hit both sides withing a few bets of each other and all within a couple bets of starting. Here's what I got:

Betting 0.00046871885 at 97.2549% chance to win, high
Roll: 0.775
Betting 0.0009374377 at 49.1089% chance to win, high
Roll: 91.807
Betting 0.000469670937109375 at 97.2549% chance to win, high
Betting Stopped!
Roll: 96.689
Betting 0.00046970763046875 at 97.2549% chance to win, high


You can see that on the low end (first roll there), it works fine and the payout changes. But the last shown roll is 96.689 and should have made the next bet go to the 49%, but it didn't
6  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 22, 2020, 02:54:05 AM
Yeah... I'm an idiot... but, in my defense, I've been doing mostly Python programming lately!! Tongue The correct the syntax for "combining" multiple outputs for a print() statement in LUA is ".." not "," Roll Eyes Roll Eyes

Try:
Code:
function dobet()
    print("Roll: " .. lastBet.Roll)
    if (lastBet.Roll < 3.3 or lastBet.Roll > 96.7) then
        chance = 49.1089
    end
...


Lol, i probably could have just looked up how to do a print function, but it all looked good to me so I didn't. Lemme try that one.
7  Economy / Gambling / Re: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐ on: August 21, 2020, 11:43:09 PM
Can you look at adding a feature for minesweeper where I can increase on loss by amounts other than a whole number?
8  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 21, 2020, 10:54:34 PM
Tried that and it wouldn't read the print fuction, even after fixing the "lasbetBet" mis-type
As in, it created a syntax error and the script didn't run or it just didn't print anything out into the console window? Huh


Also, my bad with the typo! Tongue Roll Eyes

It created some sort of error. And it's all good on the typo. I just wanted to point out that I fixed it so nobody would comment that that was my problem.

Here's the error:

[string "chunk"]:1: invalid arguments to method call
9  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 21, 2020, 09:10:38 PM
I don't see anything obviously wrong with the code. Undecided

The only thing I can think of is that the site you're using the bot with is setting the roll value to some bizarre value? Huh

Maybe add a "print" statement in to debug what the value of lastBet.Roll actually is. It should output to the Bot's console window.

Code:
function dobet()
    print("Roll: ", lastBet.Roll)
    if (lasbetBet.Roll < 3.3 or lastBet.Roll > 96.7) then
        chance = 49.1089
    end
...


I'll look into it. Will that print an output different than the bet output that is being shown in the display?

Edit:
Tried that and it wouldn't read the print fuction, even after fixing the "lasbetBet" mis-type
10  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 21, 2020, 08:08:20 PM
I don't know LUA, but I have a bit of c++ experience. I have a problem where I'm trying to get it to switch payouts if lastbet was below a certain number or above another, but it only reads the below portion. Please help.

Code:

function dobet()
    if lastBet.Roll < 3.3 or lastBet.Roll > 96.7 then
        chance = 49.1089
    end

I also tried the following and it didn't work either.

Code:

function dobet()
    if lastBet.Roll < 3.3 then
        chance = 49.1089
    elseif lastBet.Roll > 96.7 then
        chance = 49.1089
    end

Again, regardless of which on I try, nothing changes unless a number under 3.3 is rolled.
11  Economy / Games and rounds / Re: ★ Crypto.Games ★ Minesweeper Challenge ★ 0.021 BTC prize pool ($230+) on: August 13, 2020, 05:37:47 PM
I guess I'll start this party off with a nice, easy to beat, minimum bet.

Crypto.Games Nickname: thenerd314
BetID: 34,291,098
12  Economy / Gambling / Re: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐ on: June 29, 2020, 03:34:26 PM
This is for everyone that thinks CG is a scam and that they cheat. Well allow me to brag a little bit.

I made an account here 4 an a half years ago, logging just shy of 4 consecutive years of days played on the site. Over that time, I've placed almost 3 million bets across every game on the site. If this was a "fair" site, with that many bets over that long of a period of time, my profit should have been at best -0.8%, since most of my bets have been made in dice. At an unfair casino, I would be much worse than that, because they would likely manipulate my larger bets to lose and my lower bets to win. As you'll see from the screenshot of my profile stats, that is not the case. As of early this morning, I have made profit in every single coin offered here. Including Play, which i was negative 1.5 BILLION play at one point, and the maximum i could bet was 250 million to try to chip away at it.

So for all of you losers who can't handle the fact that you lost a big bet or can't seem to win, don't blame it on the site. They are legit.

I'm not a high enough level to post a picture here, but here is a link:

https://snipboard.io/i4v56y.jpg
13  Economy / Gambling / Re: ⭐ Crypto-Games.net ⭐ 0.8% House Edge on Dice ⭐Largest Wagering contest...ever ⭐ on: March 07, 2020, 01:54:22 AM
You should add profit/loss counter to minesweeper (And roulette if not there) autobet to the list of improvements
14  Economy / Gambling / Re: ⭐Crypto-Games.net ⭐4 Years Old ⭐LARGEST wagering contest⭐New Game - Minesweeper on: March 04, 2020, 01:54:51 PM
I was unable to get the calculations to line up with the payouts I was actually getting, even when trying to factor in the house edge, so I'm pry missing something. That being said, here are the payouts I've collected from playing. Each number is the consecutive payouts for each correct square clicked.

1 Mine: 1.031, 1.076, 1.125, 1.179, 1.238, 1.303, 1.375, 1.456, 1.547, 1.65, 1.768, 1.904, 2.063, 2.25, 2.475, 2.75, 3.094, 3.536, 4.125, 4.95, 6.118, 8.25, 12.375, 24.75
3 Mines: 1.125, 1.286, 1.479, 1.712. 1.997, 2.35, 2.79, 3.349, 4.066, 5.004, 6.255, 7.962, 10.35, 13.8, 18.975, 27.107, 40.661, 65.057, 113.85, 227.7, 569.25, 2277
6 Mines: 1.303, 1.737, 2.35, 3.231, 4.523, 6.462, 9.445, 14.167, 21.894, 35.031, 58.385, 102.173, 189.75, 379.5, 834.9, (Last 4 guessed) 2087.25, 6261.75, 25047, 175329
24 Mines: 24.75
Let's take some exemplary looks at the calculations:

24 mines and one field is the same as 1 mine and 24 fields due to the symmetrical aspect of the payout structure (if you flip uncovered fields and number of mines, you always land at the same payout).
I've also color coded all other cases of this that are included in your list (3-1 + 1-3 as well as 1-6 + 6-1, and 3-6 + 6-3).

Since the first case is trivial, let us calculate the second one (1 mine, 24 uncovered fields).
(25/24)*(24/23)*...*(2/1) = 25, factor in the 1% house edge (same as *0.99) and you get 24.75

Now 6 mines and the last payout you could confirm (834.9), at 15 uncovered fields.
(25/19)*(24/18)*...*(11/5) = 843.33, factor in the 1% house edge -> 834.9

Calculations seem to fit the payouts you confirmed. Although I think you skipped one in your lineup for 1 mine, as that only lists 23 numbers.

If we want to save some time doing the calculations, we can always flip to the case with less steps involved.
Eg let's confirm the 2.75 number for one mine and 16 uncovered fields, flipping it to 16 mines and 1 uncovered field.
(25/9) = 2.77 (* 0.99) => 2.75

The basic logic of the calculations is quite simple.
You start at (# unknown fields / # non-mine fields) and you reduce both numbers by one with each non-mine field you uncover.
In other words, you always start at (25 / 25-#mines).
Continue that for as many steps as you want to calculate, or until you hit a base case (your number of non-mine fields hits one).
Then, and only then, apply the factor of 0.99 for the house edge (as it is a house edge per game, not per step) and you got your final payout.

Yeah, I found my error. I had a wrong number in my first calculation that I based the rest off of. And i added the number missing from the 1 mine list. Also updated the last 4 on 6 mines from Betwrong's calculations.
15  Economy / Gambling / Re: ⭐Crypto-Games.net ⭐4 Years Old ⭐LARGEST wagering contest⭐New Game - Minesweeper on: March 04, 2020, 03:42:10 AM
At last you guys put new games here, I just wondering om how much multiplier that you can give out?
The technical limits for a minesweeper game with 25 fields are multipliers just over 5 million, which can happen with 12 or 13 mines (full field uncovered).
But I saw there is 24 mines button which is only one left to hit, how about that multiplier goes if in case someone hit it? Because you said that with 12 or 13 mines there is already a big payout like 5mill. I wondering about this payout as well. And how about this uncover payout do you mean if somehow I manage to hit it then the max payout should be only 4 btc as the ToS said?
Minesweeper works in a way where the maximum multiplier goes down again if you add more mines after 13.

For a game with 24 mines, you can only play one round, thus the multiplier would be (25/1) = 25x before the house edge.
Compare this to 13 mines, where you have (25/12)*(24/11)*(23/10)*(22/9)*(21/8)*(20/7)*(19/6)*(18/5)*(17/4)*(16/3)*(15/2)*(14/1) = 5,200,300x before the house edge,
and you see, that the maximum multiplier relies on both you having many mines and you having the ability to play many rounds.

This sweet-spot is hit with 12 mines / 13 rounds and 13 mines / 12 rounds, where the maximum technically possible multiplier is achieved. Adding more mines after that only decreases this limit.



If you closely read the How to Play information for minesweeper, you will find that the 4BTC limit is enforced by a stop requirement.
"We only accept bets that have a profit smaller than 4 BTC (maximum win per bet), this means your game will not be allowed to uncover additional fields, if your pending win would go over this threshold."
You won't be able to play until the technically possible max multiplier, as the game reaches a win state before that, once you cross the 4BTC limit.

I was unable to get the calculations to line up with the payouts I was actually getting, even when trying to factor in the house edge, so I'm pry missing something. That being said, here are the payouts I've collected from playing. Each number is the consecutive payouts for each correct square clicked.

1 Mine: 1.031, 1.076, 1.125, 1.179, 1.238, 1.303, 1.375, 1.456, 1.547, 1.65, 1.768, 1.904, 2.063, 2.25, 2.475, 2.75, 3.094, 3.536, 4.125, 4.95, 6.118, 8.25, 12.375, 24.75
3 Mines: 1.125, 1.286, 1.479, 1.712. 1.997, 2.35, 2.79, 3.349, 4.066, 5.004, 6.255, 7.962, 10.35, 13.8, 18.975, 27.107, 40.661, 65.057, 113.85, 227.7, 569.25, 2277
6 Mines: 1.303, 1.737, 2.35, 3.231, 4.523, 6.462, 9.445, 14.167, 21.894, 35.031, 58.385, 102.173, 189.75, 379.5, 834.9, (Last 4 from Betwrong) 2087.25, 6261.75, 25047, 175329
24 Mines: 24.75

I will fix the last 4 on 6 Mines if and when I find them, or if anyone else has the info, feel free to comment and I'll update
16  Economy / Gambling / Re: [Overview of all bitcoin casinos] Latest update: 14-03-19 VISIT NEW WEBSITE on: February 15, 2020, 02:36:49 PM
Another update that will need to be made is that crypto games is shutting down their investments
17  Economy / Gambling / Re: 🔶 YOLOdice.com 🔶 Play BTC LTC ETH DOGE, rakeback, bonuses on: December 25, 2019, 11:57:45 PM
Is there any way for me to access the bet history (overall, not just my own) other than one bet at a time through the bet lookup? I'd like to do some stats and stuff but I get tired of typing bet numbers in one at a time to get the information.
18  Economy / Gambling / Re: ⭐ Crypto-Games.net ⭐ 4 Years Old ⭐ Coinswitch added, 35 new coins! ⭐ on: July 25, 2019, 01:45:21 PM
If you look at the total bankroll over that time period, other than one initial spike a day or two after the investment start date, it is almost a flat line for the whole time period. You make it sound like it wildly fluctuates like some pump and dump coin value lol

We discussed this topic here some weeks ago, you can see my messages. Basically their graphs show "profits" before expenses, which I find misleading, they should indicate their that those are not real profits. You should expect to make more of less 70% of what the graphs shows (you must consider that bankroll keeps fluctuating as you were told, you can see the calculations I made in some previous messages in this thread).

Not really. Graph shows actual profit paid to investors (100%). But total bankroll size is shown wrong on graphs, need to fix that one.

That's not true, you even confirmed it when we talked about that here:

https://bitcointalk.org/index.php?topic=750760.msg51678418#msg51678418
https://bitcointalk.org/index.php?topic=750760.msg51678694#msg51678694


Then you understood me wrong. Once again, and I hope for the last time: profit on graph is actual profit paid out to investors. It is amount that investors got.

EDIT: I found one issue with graph... minesweeper data was not visible, have added that one to graph.

So logic is simple:
Profit in investment graph is: SUM(amount_dice+amount_slot+amount_blackjack+amount_videopoker+amount_roulette+amount_plinko+amount_mines-expenses) as profit

Data is taken from investments_details table, that has data of every single invesment profit paid to investors since the start of investment option on site. Data is grouped by dates, so each calculation that happens between 00:00:00 and 23:59:59 is grouped together.

Profit column is actual data that was paid to investors. So if all investors would sum their daily earnings on all of their invesments it would match with graph.

Expenses column is sum of referrer and faucet rewards, investors pay 70% and site pays 30% of those expenses (its has already 30% share cut as that happens in investments calculation).

amount_dice+amount_slot+amount_blackjack+amount_videopoker+amount_roulette+amount_plinko+amount_mines is profit or loss per game.

All data is visible on page:
https://www.crypto-games.net/details.aspx?type=investment&id=LONGID

Replace LONGID with your personal longid.

Either way I need to optimize this graph as investments_details table has grow big and calculations of graph takes a lot of computing power, and bankroll data is not calculated properly...


EDIT2: Ok found one more issue with graph Smiley

As you can see on investments_details page expenses are always in negative values, so there is a issue with upper formula. It should be:
SUM(amount_dice+amount_slot+amount_blackjack+amount_videopoker+amount_roulette+amount_plinko+amount_mines+expenses) as profit

Not

SUM(amount_dice+amount_slot+amount_blackjack+amount_videopoker+amount_roulette+amount_plinko+amount_mines-expenses) as profit

Sorry for that, my bad. But after all investments are calculated correctly, just there were two graph issues that are fixed now. Bankroll size issue on graph will get fixed soon as it requires more changes.

EDIT3: Bankroll size issue is resolved too. Now bankroll size won't change for old investments.



The graphs definitely look better now. I appreciate you fixing them
19  Economy / Gambling / Re: ⭐ Crypto-Games.net ⭐ 4 Years Old ⭐ Coinswitch added, 35 new coins! ⭐ on: July 21, 2019, 01:46:20 AM
Let's talk about how much this site misrepresents their investments and misleads potential investors:



My investment stats:

Start amount: 54.8 strat
Today Total: 54.88 strat
Return: 0.15%



Site Profit Chart (Same time period):

Start amount: 35133 strat
Today Total: 44178 strat
Return: 25.75% return



I know some of you will comment on the fact that the total amount invested will influence my personal returns, but the total bankroll remains pretty much the same over the majority of that time period. I just think it is a misleading representation and potential investors should be aware of the large difference in reported site returns and actual personal returns.

I'm not necessarily saying that they are cheating us, because it was explained to me once and seemed to add up correctly, I'm just saying the representation of potential personal profit is not even close to the actual earned returns.


(Pictures included below)

My investment: https://snag.gy/o72qOX.jpg
Site profit chart: https://snag.gy/gHeSlp.jpg
Return Calculations: https://snag.gy/duw1hr.jpg
It's not misleading. you would get the same result as on graph if you would own 100% of bankroll all the time. But bankroll is changing literally every minute.


If you look at the total bankroll over that time period, other than one initial spike a day or two after the investment start date, it is almost a flat line for the whole time period. You make it sound like it wildly fluctuates like some pump and dump coin value lol
20  Economy / Gambling / Re: ⭐ Crypto-Games.net ⭐ 4 Years Old ⭐ Coinswitch added, 35 new coins! ⭐ on: July 20, 2019, 04:01:38 PM
Let's talk about how much this site misrepresents their investments and misleads potential investors:



My investment stats:

Start amount: 54.8 strat
Today Total: 54.88 strat
Return: 0.15%



Site Profit Chart (Same time period):

Start amount: 35133 strat
Today Total: 44178 strat
Return: 25.75% return



I know some of you will comment on the fact that the total amount invested will influence my personal returns, but the total bankroll remains pretty much the same over the majority of that time period. I just think it is a misleading representation and potential investors should be aware of the large difference in reported site returns and actual personal returns.

I'm not necessarily saying that they are cheating us, because it was explained to me once and seemed to add up correctly, I'm just saying the representation of potential personal profit is not even close to the actual earned returns.


(Pictures included below)

My investment: https://snag.gy/o72qOX.jpg
Site profit chart: https://snag.gy/gHeSlp.jpg
Return Calculations: https://snag.gy/duw1hr.jpg
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!