Bitcoin Forum
May 10, 2024, 01:57:27 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 86 »
261  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: January 22, 2018, 07:16:18 PM
What could be happening here is the "optimizer" is killing processes that use the internet frequently and a lot of it, like windows updater or other applications that perform automatic updates/update checks. If the bot has access to a larger part of your total network throughput, it will run more stable, faster and use more CPU,ram and disk resources because it has to process more bets.

Giving the bot more CPU power won't make it more stable or let it run faster (unless you're on like a single core 1ghz machine), because 99% of the time the bottleneck is your network and the sites bet throttling.

If you want to find out what the maximum betting speed of the bot is on your PC, run a simulation of 1000 bets and time it, then take the total seconds it took the simulation to run and divide it by 1000. (even on a very crappy PC, this should be at least 25) If you're betting at a site and the betting is slower than that, it's your network, the throttling or the site.
262  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: January 20, 2018, 04:20:47 PM
Guys,


Could you please help me to put here a piece of code, which will bet every X bets Y amount of BTC with Z% of probability? X, Y, Z will be variables I will control:

Code:
chance=49.5 
multiplier=2
base=0.00000100
preroll=5
prebet=0.00000001
stretch=3
function dobet()
 tmp = currentstreak+preroll
 if win then
  nextbet=prebet
 else
  if tmp == 0 then
   nextbet=base
  end
  if tmp < 0 then
   if tmp %stretch == 0 then
    nextbet=previousbet*multiplier
   end
  end
 end
end

Thank you!

Have you looked at the programmer mode tutorials and tried to do it yourself?

https://bot.seuntjie.com/programmermode.aspx
263  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: January 20, 2018, 10:35:12 AM
Hey Seuntjies, I see you have BetKing as a dice option.  BetKing has a jackpot in play were "All you have to do to win is roll the dice twice in a row, containing five 5’s in the roll results" The only problem is that it looks like you have to keep track of this yourself and email them "If you win, please contact support@betking.io or our Bitcointalk, Facebook or Twitter pages with your account details and the IDs of the two bets."

Anyway you can put this in your bot for BetKing where it stops after twice in a row after rolling five 5's and alerts us to the win???
No, you can use the programmer mode for that: https://bot.seuntjie.com/programmermode.aspx
264  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: January 18, 2018, 11:36:15 PM
quick question, does the simulator use its own "dummy" server seed and client seed, with the same type of algorithm the sites use? or else wouldn't the data be pointless?

copy/paste my similar question and Seuntjie answer in other topic.


Quote from: houseworx on December 29, 2017, 12:05:22 AM
Seuntjie, can you please tell me, how dicebot simulation are worked?!

in simulations, are taked effect like in allmoust all dice site, and taken out that 1% house edge from numbers?!

its like 100% same, and there is no difference, like i was playing in default dice game site with fixed 1% house edge?!

Quote
The simulations use the same provably fair methods as the site that is selected and are usually pretty accurate. It uses the same edge as the site. But since everything is random, a simulation might show you winning after a million bets but when you actually run it, it might bust after 100 bets.

if it make sense for your question...

As for the unanswered part of your question, it uses a dummy seed yes.
265  Economy / Gambling / Re: CAT system on: January 12, 2018, 12:16:20 PM


Quote
Some time in the future.

its "wide concept" you are none interest to do it asap?! (idk how this things work, owners pay for every currency or overall)

It's difficult for me to give an exact time or date when I will release the bot, because it's not always in my hands, for example I need to wait for a site (usually more than one at a time) to finish changes to their API/Site. I am also sometimes given information by sites in confidence. Sometimes by specifying a date I could hint to information that is not intended to be public yet.

Do not confuse my deliberate vagueness with unwillingness to do the work or disinterest in the update. I have to be vague because I do not want to state a release date that I am not 100% sure I can achieve.
266  Economy / Gambling / Re: CAT system on: January 12, 2018, 11:38:36 AM


I would love to build a CAT system, BUT, i know nothing of economics. if you are willing to give and explain algorithms of when to buy and when to sell, I will gladly build a CAT system when I get the time. I'm sure there are lots of people looking for one. Hopefully they will donate better than these gamblers do, hehe.


Still thinking about this, by chance? I would love to try it if you get something released. Great bot btw.


It's a very distant possibility. If it does happen, it likely won't be this year.

on 15 january YOLOdice will add LTC on platform, when we can wait to LTC be playable from dicebot? or Ethan need to contact you about that things privately?!

Some time in the future.
267  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: January 05, 2018, 10:18:14 AM
no it doesn't reset to 1 sat high always.Instead it follows the bet direction(high or low) of the previous bet if it was a win .And if that was a loss it keeps on switching direction and doubling the bet amount.

Ok... I edited the code... it will now ONLY switch High/Low on a loss... if it wins, it will continue High or Low (the same as the previous winning bet).

Code:
basebet = 0.00000001
chance = 47.5 -- Freebitcoin has 2.5% HouseEdge!!?!
bethigh = true

nextbet = basebet

function dobet()

  if win then
    nextbet = basebet
  else
    nextbet = previousbet * 2
    bethigh = !bethigh
  end

end



thankyou HCP

You could do this in the advanced mode by setting the multiplier on loss to 2 and just setting the "switch high/low" setting after 1 loss in the advanced bet settings tab.
Also, freebitcoin has a 5% edge, but a huge faucet.

edge = 100-(chance*payout)
268  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: January 02, 2018, 05:22:15 PM
Seuntjie, can you please tell me, how dicebot simulation are worked?!

in simulations, are taked effect like in allmoust all dice site, and taken out that 1% house edge from numbers?!

its like 100% same, and there is no difference, like i was playing in default dice game site with fixed 1% house edge?!

The simulations use the same provably fair methods as the site that is selected and are usually pretty accurate. It uses the same edge as the site. But since everything is random, a simulation might show you winning after a million bets but when you actually run it, it might bust after 100 bets.


are there any known issues by logging in with at bitvest? It wasn't a problem yesterday but today it doesn't work and i have no newyear-hangover and I've tripplechecked everything

Not that I know of. I was able to log in fine a few minutes ago. It's possible that there was an issue at the time you posted this, but if so, it has been resolved since.
269  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 19, 2017, 07:28:43 PM
i wanted to ask what's the status with your app? will it come back someday? and hopefully NOT with mp?


I am waiting for MP to finish their API and to honor their promises (withdrawals etc) before I bring my app online again. I doubt I will launch the same app without MP.

As I already suggested to you via PM, the most likely cause is that the site is reporting the balance incorrectly. The bot does not calculate your balance, it simply reports the balance given to it by the gambling site API.

If there is a problem with the figures being reported by the API, there isn't a lot the boy can do about it... Garbage in, garbage out Undecided

I would theorise that running multiple bots on the same site (same account?) Could be causing issues with the site reporting incorrect balance figures...

If you run one bot does and slow the betting down, does this problem continue to happen? If it doesn't then the problem is definitely the site and not the bot.


PS. On an unrelated note, You should be careful running multiple accounts on gambling sites, most sites disapprove of this behaviour and may ban your accounts and possibly freeze your fund! Shocked

even with one runned bot, still has this issue, I'm specially tested it, because thinked same way.

I'm playing in YOLO, there is allowed multi accounts Wink

it's seuntjie dicebot fault, because bot was representing all bugbets in graph and in stats "window", bot are representing all fake profit&losses like it was real!

to avoid that issue, don't use any formulas for basebets/nextbets what are calculating it from balance or profit(idk who was buggy, maybe only one from both, but maybe both)
correct me, if you think that its not dicebot fault!?

Not all sites report the balance and the bot has to calculate the new balance after each bet. If your script is submitting invalid bets and the bot is able to parse the response as a bet, the bot will calculate the new balance accordingly.

Since you are so unwilling to help us help you buy(privately) sharing your script with one of us, do me a favour. Try doing a basic martingale  using the script below and see if you can reproduce the error (invalid/negative bets, bets with an ID of 0)

Code:
base = 0.00000001
chance= 49.5
nextbet=base
function dobet()
if win then
nextbet=base
else
nextbet=previousbet*2
end
 
270  Economy / Gambling / Re: Moneypot on: December 15, 2017, 06:56:09 AM
I have a withdrawal that has been in progress for nearly 2 weeks now. I have notified MP about it several times now but it is still pending. Can anyone give me an ETA for when it will be processed?

Still not processed
271  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 12, 2017, 06:01:05 PM
Code:
base = (((balance) - (profit * 2400)) / 250000)
base = (((balance) - (profit * 400)) / 300000)


These lines are causing the negative bets. The negative bets DO come from your script because the bot does touch the bet value that is received from the script.


I don't officially support running more than one bot at a time, I am rather against it but since people ask me this often about it, I give out pointers on how to do it safely. It was not built to run multiple instances at a time either, as such, your issue is kind of a non-issue to me. My advice on how to reduce your CPU and disk usage? Run fewer bots at a time.
272  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 12, 2017, 04:45:13 PM
i guarantee that is not script, its in YOLOdice, its happens every maybe 1million bets only.


yes from one foler, i need to better make for each run another one? if I will make 10 diferent folders, and run one by one, it can help with high cpu usage?! (i will try)

after reach 100% cpu usage from bots all my pc are freezing and "laggy" bots are stoped, nothing are written and they are not closed, simple stoped, but there is no possible to relaunch it but typing stop/start, and cpu usage are not "fall down" till normal even if now is stopped, if you will wait... you only can close it and that all.

but cpu usage are comes with "time" after you run bots in first minutes all was fine, if longer bots are runned, then higher cpu usage will be(100% need to restart all bots every 24h)

*ofc bots are closed graphs, all bets are rolled down, and closed console, and small minimized.

edit update:
iv made 7 different folders, yes now how much i see will be fixed cpu usage problem, but NOW my disk usage are 99% all time, what wrong with that now... Sad every bot takes 0.1 - 0.5MB/sec im using SDD


https://imgur.com/O6J7o4y task manager screenshot, when it runned from 7 different folders

https://imgur.com/mCbQIFL resource monitor

https://imgur.com/UCCUHbi

https://imgur.com/3vkGazG

i dont understand reading @ 2mb/sec but 100% usage, if i will run it in this way with disk usage 99% 24/7 my SDD will be damaged?!

please help now with this kind of problem...

and btw here is bog with negative bet, another one today - https://imgur.com/Q60tVcg


I have not experienced this myself. Would you mind sending (emailing) me your script to I can try to reproduce the problem?



Hello,
Would it be possible to implement a customizable stats window when in programmer mode? This way I could display information I find relevant, including variables I have set.
Thanks

It is not, but you can print the variables to the console. If you do a bit of text formatting you can probably make it look rather nice.
273  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 11, 2017, 11:10:33 AM
any clue what is that?

Betting 0.00000029287178 at 0.99% chance to win, high
Betting -0.00007602773776 at 0.99% chance to win, high

why bot are betting byself some kind of negative amounts time after time?!

and when it happens is like winning bet, bot graph are going up in the high sky, like you hit super mega jackpot! and shows profit and balance like you win that MEGA AMOUNT, but after start bot again(by write start()), then balance are back to normal like was been till that thing.


it happens rare but happens, it's some kind of bot bug?! because there is not sense from my script. both versions 3.3.9 and newest 3.3.10 both had this thing.

another thing is, why bot is "Eating" so much CPU, with even with very short script, when is many bots runned, like sample, if i run one bot i they eat 0-2% of cpu, if i run 7 bots, each will eat 5-12% of cpu, and my cpu usage will be 100%

I have i5-6600 3.30GHz , any guess what i can do in this case to not get overload by cpu, and all bots stops?! when cpu usage reaching 100% all bots are cracked and stopped...


it simple very unstable, it will jumping from 2% usage till 30% usage for every one bot runned, there is solution?!



The negative bets happen because of your script. The bot does not manipulate the bet that your script gives it in any way. On which site is this?

Are you running the bots from the same folder? In which case, they will all compete for access to the dicebot.db file, which could cause higher CPU usage. It could be your script as well (I can write a 2 line script that will pull 100% of your CPU, script length is irrelevant), especially if the script accesses the bet history or has any kind of loop.

If your CPU reaches 100% usage and the bots stop, do they crash? Does it show an error message in a popup box? Does it show anything in the status bar at the bottom of the screen?
274  Economy / Gambling / Re: BetKing.io -50BTC Jackpot-30BTC max bet! faucet- 25% rakeback. BTC,ETH,LTC DICE on: December 09, 2017, 08:45:15 PM
A new version of DiceBot that supportsd BetKing is now available! Get it from https://bot.seuntjie.com!
275  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 09, 2017, 08:28:01 PM
New DiceBot version 3.3.10 is available to download from https://bot.seuntjie.com

Change Log

New Features
added detection for multiple bet loops
re-added betking


Changes

change to lower limit
duckdice nonce fix, added verifier
re-added betking


Bug Fixes
chart after increasing number of bets/resetting chart goes over the top or below the bottom of the chart fixed
bitvest alt coins balance display issues
coinpro.fit and provably.io
login and betting issues
pd betting speed slowed down to prevent "slow down" error
bit-exo login issues
using built in limits from programmer fixed
donate bug at 999 dice where user would donate <1 sats/05, their whole balance is donated
cloudflare fix - affects all CF sites, fixes nitrogen sports login
freebitcoin crash fix
stake  betting issues fix
276  Economy / Gambling / Re: Moneypot on: December 08, 2017, 04:19:33 PM
I have a withdrawal that has been in progress for nearly 2 weeks now. I have notified MP about it several times now but it is still pending. Can anyone give me an ETA for when it will be processed?
277  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 05, 2017, 07:16:52 AM
Sorry didn't know you had that list. I guess yolodice doesn't have the tip feature in their API, am I correct?


You are correct yes
278  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: December 04, 2017, 09:53:11 PM
I just tried to use the bot to send a tip from one account to another connected to yolodice.com. I don't get an error message but the tip is never executed. Is there a known bug or am I doing something wrong? I tried the username and the user id.

Here is the code I am executing:

Code:
tip("crashbit", 0.00010000)
Tipping 0.0001 to crashbit

See https://bot.seuntjie.com/features.aspx for a list of features enabled for each site.
279  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: December 04, 2017, 12:14:23 PM
For those that are not aware (Which I guess is most of you, I haven't posted any documentation about it), a few versions ago I added a site object to the programmer mode that contains details of the site you're currently logged in to in the bot. The "site" object is of type SiteDetails:

Code:
public class SiteDetails
        {
            public string name { get; set; }
            public decimal edge { get; set; }
            public decimal maxroll { get; set; }
            public bool cantip { get; set; }
            public bool tipusingname { get; set; }
            public bool canwithdraw { get; set; }
            public bool canresetseed { get; set; }
            public bool caninvest { get; set; }
            public string siteurl { get; set; }
        }

You can use the details to determine whether or not you should try to tip/withdraw, what calculate chance/payout accurately etc. I will at some point implement functions for calculating chance/payout and similar functions to the object as well, but I have no ETA for that.


An example of using the object:
Code:
print('You\'re betting on ' + site.name)
payout = (100.0-site.edge)/chance
if bethigh then
 betwin = lastBet.Roll>(site.maxroll-chance)
else
 betwin = lastBet.Roll<(chance)
end
if site.cantip then
 if site.tipusingname then
  tip('seuntjie',1)
 else
  tip('91380',1)
 end
else if site.canwithdraw then
 withdraw('address',1)
end
280  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: November 28, 2017, 05:52:27 PM
**EDIT**
I solved it myself, for anyone interested you will need 2 variables. I called mine "luck" and "lucky"

Here is the method i used:
-------------------------------------------
if win then
   luck += ((99/chance)*100)
else
   luck += 0
end

lucky = luck/betcount
-------------------------------------------

basically every bet it will either add the "luck chance" when winning, or adding 0 when losing a bet, you can get "luck chance" by dividing the max chance by the current bet chance, and multiplying it by 100.

*Note that the site i use has a house advantage of 1%, so my max chance is 99% not 100%.*

Once that rounds chance has been added to the rest (known as "luck" in my case) you can then divide the total by the number of bets made("betcount" in my case) and store that to a variable that will update every round.

afterwards i can add "lucky" to a print command to show it in console:
-------------------------------------
print("Luck"..lucky.."% /100%")
-------------------------------------


Hope this helps everyone.

**EDIT**

Would you be able to show a line of code that will do what you are trying to explain?

I would like to use the luck aspect in a script i'm working on but cannot get my head around what you are trying to explain.

The use i want to use it for, the chance does not change, if i set the chance to 30% is stays 30%, so should be simpler than what you have explained.

So you basically did what I explained in my first post. Glad you got it sorted though.

Luck is a useless stat though. It doesn't mean anything, it's just fun to look at. Even if you have a luck of 0% after millions of bets, your next bet still has the same chance of winning. Or if you have a luck of 1000% after millions of bets, your bet still has the same chance of winning. It's really not something you should use to base decisions on.

Luck will tend to 100% over an infinite amount of bets, within a finite amount of bets, it can be anything.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 [14] 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 ... 86 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!