Bitcoin Forum
June 17, 2024, 12:22:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: July 29, 2016, 08:28:17 PM
Seuntjie, change seed doesnt seem to work on advance and programming mode on bitsler. Tried with 1000 bets to change seed on advance mode but still no change same with programming mode. And i think this is important, settings on advance mode affects on programming mode for some reason. Overall, awesome work on the update Smiley thank you for being around and helping us lazy bastards gambling Smiley
2  Economy / Micro Earnings / Re: Lucas, bitcoin expert on: June 16, 2016, 10:58:08 AM
Can you process my payments please. Both in coincity and forexsimple..18beqqn5VT9x9Wf2kYaGstK2BF1JdC38b7

Thanks
3  Economy / Micro Earnings / Re: [ANN] Brand New Online Game, CoinCity.net on: June 16, 2016, 10:55:58 AM
Hi can you process my payment pls. Both coincity and that forexsimple.net/..heres my add 18beqqn5VT9x9Wf2kYaGstK2BF1JdC38b7. Thanks
4  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: June 15, 2016, 02:10:18 PM
Goes down quiet often..wonder whats up? Thanks though.
5  Economy / Gambling / Re: SafeDICE.com ★ Bitcoin Dice ★ Monero ★ 0.5% Edge ★ Fast Cashout ★ Since 2014 on: June 15, 2016, 02:01:05 PM
Is safedice down or what??  Huh
6  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 01, 2016, 11:46:40 PM
no Seuntjie...i think this is correct...

1 lose
2 lose
3 win (double bet)
6 win(double bet)
12 lose (and increase of 1)
13 lose
14 lose
15 win (double bet)
30 lose ( and increase of 1)
31 lose
32 lose
33 lose
34 lose
35 win (double bet)
70 win  (double bet)
140 win ( after 3 win reset to base  )
1...
Ermmm i think you should read the description again...
7  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: May 01, 2016, 11:32:16 AM
Hi all guys...i have see this theread:

https://bitcointalk.org/index.php?topic=1430193.0

Think is very interesting, but think i can't use this method with bot...
anyone can write a script for this?

Thanks in advance


Seems like someones done this: https://bot.seuntjie.com/scripts.aspx?id=37

thanks, i go to try it

sorry but there is some problem...It does not work well...
Only problem with that script is after completing a series and it bets base, if that losses it bet base again. But after that it follows the whole idea. That really is only the problem.
8  Economy / Games and rounds / Re: Interesting Strategy for Dice Sites on: May 01, 2016, 11:29:43 AM
Yeah forgot to address that..After completing a series, it resets to base and if that base bet losses it bets base again and thats it. It only appears after completing a series though but other than that it follows the idea.
9  Economy / Games and rounds / Re: Interesting Strategy for Dice Sites on: April 30, 2016, 12:27:46 PM
I made a script based on this idea. U can check it out here https://bot.seuntjie.com/Scripts.aspx
10  Economy / Games and rounds / Re: Interesting Strategy for Dice Sites on: April 28, 2016, 03:12:11 PM
Ermm so tried this with a script based on the method..and so far its not profitable..Care to show us a video of you profiting using this method?
11  Economy / Micro Earnings / Re: [ANN] Brand New Online Game, CoinCity.net on: April 25, 2016, 08:13:29 AM
Hi im not getting my payments. And its over 3.5k already.
Heres my address: 18beqqn5VT9x9Wf2kYaGstK2BF1JdC38b7

Thanks Lucas.
12  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 21, 2016, 10:54:28 PM
Thanks man, good work..

   I ran that just like above.  Personally, decrementing the win till it's zero seemed like a waste of a lot of winning bets.  Also I changed the win/lose multipliers.  At 77.7% you should be winning about 3 out of 4 bets.  With the multipliers I've set it take 2.5 wins to recover from 1 lose. Also by setting the lose multiplier down to 1.5 it doesn't get too out of hand.  I also added a stop on win function, and invest function.  Since there is no check to keep from busting I wanted to strip off some winnings before it busts.    

    This is on JD, so you might have to comment out the invest function if your using on a site that doesn't invest.  

Code:
chance=77.7
multiplier=1.5
multiplier2=0.92
base=0.0000150
nextbet = base  
bethigh = false
target = .00005
investtarget = .001
tmpprofit = 0
investprofit = 0
wincount = 10
stopnow = false

function dobet()

tmpprofit += currentprofit
investprofit += currentprofit

   if win then
      if (tmpprofit > target) then
         tmpprofit = 0
         nextbet = base
         if(stopnow) then stop() end
         if(investprofit  > investtarget ) then
             investprofit = 0
             invest(investtarget)
         end      
      else
         nextbet=previousbet*multiplier2
         if(nextbet < base) then nextbet = base end
      end
   else
      nextbet=previousbet*multiplier
      if(nextbet < base) then nextbet = base end
   end
end

to comment out a line just put -- in the first spaces of the line.  

  so to comment this out.

             investprofit = 0

 put

--             investprofit = 0



The worse case lose I had to cover so far was .005 , So far I seems to work well...  

edit: forgot to mention.  When your in a lose streak, it keeps increasing your bets.  Once it starts winning then back, it will reset to the base bet before it actually reaches that.  So even thought you seem to be down quite a bit, it only take a few wins (8-10) at the higher bet, to get back in the green.   

Okey so i tried this script just to experiment and see how investing works in a dice site that has invest. Tried it on safedice but when i reach the target where it'll invest it didnt invest? Although in the console it did say 'Investing 0.001' but when i checked safedice under Invest tab it was zero? Or am i missing something about how investing works in a dicesite?

I haven't tested the investing at safedice via the API in ages. It's possible (likely
) that it doesn't work.
Yeap its not working. Tried it with a few small investing targets just to confirm :/
13  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 21, 2016, 10:04:25 PM
Can anyone give me a code to increase bet speed? Seems like 999dice is betting waaay slower than other dice sites. Would appreciate it thanks Smiley
Will you exercising and running 10km a day make me run any faster?
Lol guess not..Just wanted to ask since other sites seems to bet alot faster xD
Maybe you should then consider betting on another site (if speed is of such an essence to you) rather than searching for 'a code to increase bet speed' on the limited site.
Ermm im not exactly saying its an issue or anything xD Just wondering is all since other site bets faster..If the site itself was made to bet at that speed then so be it XD
I was just asking. Apologies if anyone got offended xD
14  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 21, 2016, 09:55:42 PM
Can anyone give me a code to increase bet speed? Seems like 999dice is betting waaay slower than other dice sites. Would appreciate it thanks Smiley

Will you exercising and running 10km a day make me run any faster?

Lol guess not..Just wanted to ask since other sites seems to bet alot faster xD
15  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 21, 2016, 09:46:10 PM
Thanks man, good work..

   I ran that just like above.  Personally, decrementing the win till it's zero seemed like a waste of a lot of winning bets.  Also I changed the win/lose multipliers.  At 77.7% you should be winning about 3 out of 4 bets.  With the multipliers I've set it take 2.5 wins to recover from 1 lose. Also by setting the lose multiplier down to 1.5 it doesn't get too out of hand.  I also added a stop on win function, and invest function.  Since there is no check to keep from busting I wanted to strip off some winnings before it busts.    

    This is on JD, so you might have to comment out the invest function if your using on a site that doesn't invest.  

Code:
chance=77.7
multiplier=1.5
multiplier2=0.92
base=0.0000150
nextbet = base  
bethigh = false
target = .00005
investtarget = .001
tmpprofit = 0
investprofit = 0
wincount = 10
stopnow = false

function dobet()

tmpprofit += currentprofit
investprofit += currentprofit

   if win then
      if (tmpprofit > target) then
         tmpprofit = 0
         nextbet = base
         if(stopnow) then stop() end
         if(investprofit  > investtarget ) then
             investprofit = 0
             invest(investtarget)
         end      
      else
         nextbet=previousbet*multiplier2
         if(nextbet < base) then nextbet = base end
      end
   else
      nextbet=previousbet*multiplier
      if(nextbet < base) then nextbet = base end
   end
end

to comment out a line just put -- in the first spaces of the line.  

  so to comment this out.

             investprofit = 0

 put

--             investprofit = 0



The worse case lose I had to cover so far was .005 , So far I seems to work well...  

edit: forgot to mention.  When your in a lose streak, it keeps increasing your bets.  Once it starts winning then back, it will reset to the base bet before it actually reaches that.  So even thought you seem to be down quite a bit, it only take a few wins (8-10) at the higher bet, to get back in the green.   

Okey so i tried this script just to experiment and see how investing works in a dice site that has invest. Tried it on safedice but when i reach the target where it'll invest it didnt invest? Although in the console it did say 'Investing 0.001' but when i checked safedice under Invest tab it was zero? Or am i missing something about how investing works in a dicesite?
16  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 21, 2016, 07:16:54 PM
Can anyone give me a code to increase bet speed? Seems like 999dice is betting waaay slower than other dice sites. Would appreciate it thanks Smiley
17  Economy / Gambling / Re: Cant verify bet on SafeDice.. on: April 13, 2016, 07:27:15 AM
Ohh didnt know that. Awesome thank you Smiley
18  Economy / Gambling / Cant verify bet on SafeDice.. on: April 13, 2016, 06:25:47 AM
Hi guys. I have a question that needs some verification.
http://s9.postimg.org/vd1pua31b/bet1.jpg







All 7 bets i cant verify. The server seed is missing.  And no (3rd party verifier).

http://s28.postimg.org/5536fx3j1/withservereed.jpg This bet with a server seed can be verified. Even has that (3rd party verifier) But after this bet thats when i got 7 losing streak without server seed and no (3rd party verifier) to check my bets. Someone help clarify please thank you.
19  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 10, 2016, 03:41:50 PM
Ohhh thats a nice script grendel :O care to post it in seuntjies script page so we can try it? Cheesy
20  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 08, 2016, 01:29:11 PM
Another request if you guys dont mind :O What would be the code for changing seed every after a number of losing streaks? Like let say i want it to change seed after 3 losing streaks. A zig zag function after a number of bets and a reset to base after a losing streak?  I hope im not asking alot. Greatly appreciate you folks help! Cheesy Thank you.

Here is a VERY basic template of what your looking for.  You should be able to modify it to do exactly what you want.  Here are some question you should think about and then fill in the code.

What is your base bet? (Change the basebet variable)

what are you doing with the bet after a win and or loss? (add code to modify nextbet according to what you want.  You can use the previousbet variable to help.  maybe something like nextbet = previousebet + 2.  )

Are you resetting the bet after the same 3 bet losing streak, or do you want to reset the bet at a different point ?   (Already coded to reset to base after the same number of losses that reset the seed, if you wanted to use a different lose count, add another IF / else/ end statement for a different count)

Changing the seed is very easy,  Just type resetseed() in the code.  You can't actually select a client seed, it just generates a random one.  Also some sites have a limit on how often you can change the seed.  I know just dice only allows it once per 15 bets.  

Code:

numbets = 5        -- number of bets to zigzag
resetcount = -3    -- need to make this minus to work with the current streak function
betcount = 0
basebet = 1
nextbet = basebet

function dobet()

betcount +=1

if (betcount == numbets) then
   bethigh = !bethigh
   betcount = 0
end

if(win) then

   print ("Yay")

else
   if (currentstreak == resetcount) then
      resetseed()
      nextbet = basebet
   end
end

end


Alright ima give it a go. Gonna try integrate those codes into Jossy's script. Thanks chilly Cheesy


EDIT: I got all of them to work Cheesy Thanks again chilly Cheesy
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!