Search content
Sort by

Showing 20 of 44 results by thenerdyone314
Post
Topic
Board Gambling
Re: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐
by
thenerdyone314
on 30/08/2020, 23:18:04 UTC
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
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 22/08/2020, 21:30:17 UTC

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!
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 22/08/2020, 13:23:15 UTC
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;}
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 22/08/2020, 12:57:17 UTC
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

Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 22/08/2020, 02:57:47 UTC
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
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 22/08/2020, 02:54:05 UTC
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.
Post
Topic
Board Gambling
Re: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐
by
thenerdyone314
on 21/08/2020, 23:43:09 UTC
Can you look at adding a feature for minesweeper where I can increase on loss by amounts other than a whole number?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 21/08/2020, 22:54:34 UTC
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.

[string "chunk"]:1: invalid arguments to method call
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 21/08/2020, 21:10:38 UTC
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?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
thenerdyone314
on 21/08/2020, 20:08:20 UTC
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.
Post
Topic
Board Games and rounds
Re: ★ Crypto.Games ★ Minesweeper Challenge ★ 0.021 BTC prize pool ($230+)
by
thenerdyone314
on 13/08/2020, 17:37:47 UTC
I guess I'll start this party off with a nice, easy to beat, minimum bet.

Crypto.Games Nickname: thenerd314
BetID: 34,291,098
Post
Topic
Board Gambling
Merits 6 from 2 users
Re: ⭐ Crypto.Games ⭐ 0.8% House Edge on Dice ⭐ Largest wagering contest...ever ⭐
by
thenerdyone314
on 29/06/2020, 15:34:26 UTC
⭐ Merited by DogecoinMachine (5) ,s0lidus (1)
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
Post
Topic
Board Gambling
Re: [Overview of all bitcoin casinos] Latest update: 14-03-19 VISIT NEW WEBSITE
by
thenerdyone314
on 15/02/2020, 14:36:49 UTC
Another update that will need to be made is that crypto games is shutting down their investments
Post
Topic
Board Gambling
Re: 🔶 YOLOdice.com 🔶 Play BTC LTC ETH DOGE, rakeback, bonuses
by
thenerdyone314
on 25/12/2019, 23:57:45 UTC
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.
Post
Topic
Board Gambling
Re: ⭐ Crypto-Games.net ⭐ 4 Years Old ⭐ Coinswitch added, 35 new coins! ⭐
by
thenerdyone314
on 25/07/2019, 13:45:21 UTC
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
Post
Topic
Board Gambling
Re: ⭐ Crypto-Games.net ⭐ 4 Years Old ⭐ Coinswitch added, 35 new coins! ⭐
by
thenerdyone314
on 21/07/2019, 01:46:20 UTC
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
Post
Topic
Board Gambling
Re: ⭐ Crypto-Games.net ⭐ 4 Years Old ⭐ Coinswitch added, 35 new coins! ⭐
by
thenerdyone314
on 20/07/2019, 16:01:38 UTC
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
Post
Topic
Board Gambling discussion
Re: Randall's Gambling Techniques/Strategy List
by
thenerdyone314
on 16/09/2018, 16:28:19 UTC
Definitely a nice list of strategies there. I personally use either a "increase on loss" method, or my own personal variation of it, depending on how lazy I'm feeling. If I just feel like running on auto, I'll do something like 1.2x payout with a 675% increase on loss and plan for 6 losses (I've had a streak of 8 losses before). My personal variation of it is for manual betting where I multiply my base bet by 8 on loss and divide by 8 on win anytime my bet is larger than my basebet. I also play with what I call potential losses which is where I would have lost it if I rolled the opposite direction. I had made a youtube video to show it better, but I didn't want to post it here because I wasn't sure if that's a thing that is frowned upon or not.
Post
Topic
Board Games and rounds
Re: 🔶 YOLOdice's 14th Wagering Competition with 50+ LTC in prizes! 🔶
by
thenerdyone314
on 08/09/2018, 05:28:40 UTC
Welcome to YOLOdice's 14th Wagering Competition!



Want to test your luck and try to win big?  Right now is an excellent time to try YOLOdice, since you could win some extra prizes!  YOLOdice features a whole slew of great things like three coins to play (Bitcoin, Litecoin, and Ethereum), an instant on-site exchange, three Progressive Jackpots, Seuntjie's DiceBot support, Night Mode, super security and privacy settings, fast bets, rakeback on your wagered, and loads more with just a 1% House Edge!  Here are some helpful links to get you started:

YOLOdice Website: https://YOLOdice.com
Our BitcoinTalk Thread: https://bitcointalk.org/index.php?topic=1674772.0
Our Twitter: https://twitter.com/yolodicegame






How does this wagering competition work?




This competition will start on Friday, September 7th at exactly 9:00am CT / 2:00pm UTC (right now!), and the competition will conclude in exactly 7 days; next Friday, September 14th at 90:00am CT / 2:00pm UTC.  During this time, any and all LTC wagers made by players will count towards the contest (Please Note: BTC and ETH wagers do NOT count for this contest - only LTC!). We have a public competition leaderboard that will track the competitors until the last day.  We'll be posting daily leaderboard updates here in this thread as well, so stay tuned!

The competition leaderboard can be found here (with live updates, too!): https://yolodice.com/#bonus


After exactly 7 days have passed, we will screenshot the YOLOdice Wagering Contest leaderboard and announce the winners.



Competition Prizes:


The total prize pool for this competition works a lot like the last one we did; it's a total of 50.0 LTC + 50% of LTC site profit during the competition.  For example, if the site generates 100 LTC in profit, then 50 of that would be added to the pool, resulting in a pool total of 100.

1st Place: 12.5 LTC
2nd Place: 7.5 LTC
3rd Place: 5.0 LTC

4th Place: 2.5 LTC
5th Place: 2.5 LTC

6th Place: 2.0 LTC
7th Place: 2.0 LTC
8th Place: 2.0 LTC
9th Place: 2.0 LTC
10th Place: 2.0 LTC

11th Place: 1.25 LTC
12th Place: 1.25 LTC
13th Place: 1.25 LTC
14th Place: 1.25 LTC
15th Place: 1.25 LTC

16th Place: 0.75 LTC
17th Place: 0.75 LTC
18th Place: 0.75 LTC
19th Place: 0.75 LTC
20th Place: 0.75 LTC










Please Note:  At the end of the contest, if you're one of the top 20, you must claim your prize by PMing ethan_nx on YOLOdice  by typing /pm 1 and then just let him know you're a winner.
Prizes are already more than double the minimum, and its not even 24 hours in yet!
Post
Topic
Board Gambling
Re: ★ Crypto-Games.net ★ Player just won 1.3 million $ ★ 58.000$ wagering contest ★
by
thenerdyone314
on 29/08/2018, 05:33:19 UTC
Honestly telling, the wagering competitions do little good for medium and small players( who later on attract whales).
I strongly disagree, there's wagering contest on all coins offered at CG. Yes, the BTC and ETH contests are dominated by players with a big bankroll and if you're on a budget, competing might get hard.
But if you go away from the two (maybe three) big coins and playerbases, the contests become interesting even to small regular players.
Across the site and coins, imho there's options for everyone to compete on a leaderboard they have realistic chances on

Hmm, I don't know about that though. Even 5th (or last) place in the wagering contests of some of the less popular coins is pretty much unattainable for regular players.
Some examples:

5th place for Stratis: 10,447 STRAT = 15879 USD
5th place for Peercoin: 2,859 PPC = 3202 USD
5th place for Ethereum Classic: 872 ETC = 10812 USD
5th place for NEOGas: 243 GAS = 1372 USD
5th place for Dash: 9.04 DASH = 1292 USD
7th place for Dogecoin: 5,509,476 DOGE = 13184 USD
5th place for Monero: 12.75 XMR = 1199 USD
7th place for Litecoin: 205.08 LTC = 11638 USD

If you're just gambling a couple of hundred USD worth of crypto every month or so, you'll never get any prize.
I'd call someone like that a small regular player.

Edit:
I do have to add that I think there are still enough promotions for occasional gamblers. I mean everybody always has an equal chance at the CG birthday and holiday events.
So I don't mind too much that the wagering competitions are pretty much reserved for the high rollers. That's the whole point of having a wagering competition IMO.

I play from faucet only (since I can't deposit) and am in position to take a reward from the contest. Just started playing the coin last week too. You don't need a huge bankroll to be competitive.