Bitcoin Forum
May 27, 2024, 05:43:45 AM *
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 »
921  Economy / Gambling / Re: DaDice.com - Next Generation Social Gambling Dice Experience on: April 01, 2015, 12:51:37 PM
This site takes so many traffic .
Change name of the site to Traffic-eater.com Or Traffic-enemy.com

Lol pay them to do that. Its their site they can do what they want.

I think they should optimize site more It is using so much resources

Yes , they really must do something i'm out for a while .
922  Economy / Gambling / Re: DaDice.com - Next Generation Social Gambling Dice Experience on: March 31, 2015, 10:17:27 PM
This site takes so many traffic .
Change name of the site to Traffic-eater.com Or Traffic-enemy.com
923  Other / MultiBit / How to import Multibit.wallet into bitcoin-QT ? on: March 31, 2015, 09:08:02 PM
How to import Multibit.wallet into bitcoin-QT ?
924  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Just-Dice.com : now with added CLAMs : Play or Invest on: March 30, 2015, 12:21:29 AM
I imported my bitcoin wallet.dat to clam client-qt and gave some addresses but these are not valid as a btc [ or ltc or doge ] for getting free clam bonus
925  Economy / Games and rounds / Re: 7BitCasino welcomes | Provably fair | Instant | 300+ games on: March 29, 2015, 04:20:44 PM
Username : Monopoly
926  Economy / Games and rounds / Re: Satoshi Dice update & 0.01337 bonus for everyone who played for more than dust on: March 29, 2015, 03:16:49 PM
Thanks i got the bonus .
927  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 29, 2015, 02:13:48 PM


It works now But there is a problem .
I want to use multiplier on loss and multiplier on won options on martingale system , and beside them use this function . But it just multiple 1.1 and ignore those options .


Simply i don't want back to base bet after winning at martingale system , i looking for a function eliminate it but use other options .
See below picture :




Thanks for your help .



The martingale option will ALWAYS reset to base after the first win. That's the way it works and I'm not intending to change it.

Figure out how to write the lua code you want then. I can't give you the code if you keep leaving out pieces of the strategy. If you use programmer mode, All other settings are disabled and only the code is executed.


I saw that people started using bots over at satoshidice.com too now, maybe you should consider adding support for their API.

Sure, If someone pays me the 0.5Btc to add the site to the bot.


I sent you a message about the strategy ,
928  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 29, 2015, 10:41:48 AM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .


You'll need to write a lua script for this.

something like:

Code:
function dobet()
if not win then
nextbet=previousbet * 1.1
end

end


If I understand you correctly, that should do it.

How do that ?



Sir , seuntjie
I want to combine some systems together and really need this function in your bot at martingale system ,  Please do something .

I did something like that but it didn't work .




A series of betting that i want :

Base bet 10 doge
After loss multiplie by 1.1
After wiining again multiplie by 1.1

So :

10 Doge
11 Doge
12.1 Doge

It probably didn't work because you missed the second end.

So if you want it to just multiply by 1.1 after every bet, the code for lua will just be:

Code:
function dobet()
nextbet=previousbet*1.1
end

Make sure you copy the whole thing this time, and after you've copied it, type start() in the console to start betting, and stop() to stop betting.

It works now But there is a problem .
I want to use multiplier on loss and multiplier on won options on martingale system , and beside them use this function . But it just multiple 1.1 and ignore those options .


Simply i don't want back to base bet after winning at martingale system , i looking for a function eliminate it but use other options .
See below picture :




Thanks for your help .
929  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 28, 2015, 10:55:14 PM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .


You'll need to write a lua script for this.

something like:

Code:
function dobet()
if not win then
nextbet=previousbet * 1.1
end

end


If I understand you correctly, that should do it.

How do that ?



Sir , seuntjie
I want to combine some systems together and really need this function in your bot at martingale system ,  Please do something .

I did something like that but it didn't work .




A series of betting that i want :

Base bet 10 doge
After loss multiplie by 1.1
After wiining again multiplie by 1.1

So :

10 Doge
11 Doge
12.1 Doge
930  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 28, 2015, 09:26:50 PM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .


You'll need to write a lua script for this.

something like:

Code:
function dobet()
if not win then
nextbet=previousbet * 1.1
end

end


If I understand you correctly, that should do it.

How do that ?
931  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 25, 2015, 12:20:44 PM
Hello seuntjie

How i do something that  , after wining follow a loss don't back to base bet ?


Example :

My base bet is 10 Doge ,
After loss multiple by 1.1 so bet is 11
After winning bot reset back to 10 doge but i want continue by 11 doge on next bet , Not 10 doge ( in martingale system ) .
932  Economy / Gambling / Re: Primedice.com | Most Popular & Trusted Bitcoin Game | Huge Community | Free BTC on: March 24, 2015, 03:13:06 PM
Beautiful day !
I got 5 loss in row at 73% more than 18 times on 3200 bets today ! ( maybe more than 18 times )
Is that normal guys ?

Got 2 times again !
Stop betting guys something is wrong in this site at the moment .
933  Economy / Gambling / Re: Primedice.com | Most Popular & Trusted Bitcoin Game | Huge Community | Free BTC on: March 24, 2015, 03:05:26 PM
Beautiful day !
I got 5 loss in row at 73% more than 18 times on 3200 bets today ! ( maybe more than 18 times )
Is that normal guys ?
934  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 24, 2015, 10:16:18 AM
999dice is a scam, why promote it with this bot?

Prove it .

Are you really trying to tell me 999dice isn't rigged?

LOL


I heard something like that many times but unfortunately There isn't any proof for it !
935  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 23, 2015, 11:20:43 PM
999dice is a scam, why promote it with this bot?

Prove it .
936  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 23, 2015, 08:07:21 PM
Nope I never busted.  I did try runnin 8 bots, 2 busted but I think its cuz I turned on autowithdraw and my basebet was set too high.    The original bot I still havent busted..

http://prntscr.com/6kf2o6   - all from 40k doge bank about ~ .02

It is the one with the big drop cuz I reset the stats, I wish I hadn't just so you can see it continually climb.

I'll give my strat for .01 which is more than fair seeing as how you will make that back within a day, which I will give a portion to suent.  Donate to the programmer ya cheap bastards!

Report your states every day .
937  Economy / Gambling / Re: DaDice.com - Next Generation Social Gambling Dice Experience on: March 23, 2015, 07:58:33 PM
Is it just me or does the site feel completely unresponsive right now ? Feels really slow.

Change tap all bets to My bets .
938  Economy / Gambling / Re: DaDice.com - Next Generation Social Gambling Dice Experience on: March 23, 2015, 04:46:46 PM
I'm in level 6 but get 600 satoshi faucet and sometimes 900 Satoshi and another time 300 satoshi !
Why ?
939  Economy / Games and rounds / Re: DaDice 0.1 btc givaway on: March 23, 2015, 03:02:59 PM
29 march

1KGqXxchhQS2Eqm3ANu6Kmb2BdV6YMsQdY
940  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: March 23, 2015, 02:03:07 PM

Thank you for the detailed screenshots, I'll take a look asap. Where are you from? I'm pretty sure this is a regional problem.


http://prntscr.com/6jetcs

from 40k doge ^^ UP UP UP


do you think this will bust suent? if you tell me before it does ill tip you 10k doge lolz

All strategies bust eventually. Just give it enough time and it will bust. So I suggest you set a profit target and stop if you reach it.


http://prntscr.com/6jhb4r

NO THERE hasw to be a way lol i took a few hits just took a 10k hit :/ but ill sned u 10k since technically it didnt bust
I started with 40k so still doubled up.........  my goal is infinity! lol

Seuntjie is right !
Because of House of edge any strategy failed in long term .  Anyway , Could you share your setting ?


Its been goign 24+ hour snow! gonna withdraw about 100k, send 10k to suent Cheesy,   If you tip me or suent ill share haha Tongue  I want ot run for another day and see if I'm still going... if I can get another 100k+ doge in 24 hours, i think it will be a solids strat!


http://prntscr.com/6jnzbe






almost busted to ojust after i posted that haha


http://prntscr.com/6jo1mb



Look if that spike happened before that crazy spike that went down and jumped up fast i would have busted... I was one bet away from busting there. 

http://prntscr.com/6jo9w8


Think i'm going to cut my base bet by 4 or 5, and start over with a 40k bankroll again.

24 hours is usually when I bust, that was prob my bust mode but I survived with only a ~6k doge hit Cheesy

can i have your strategy too??

its look you decrease bet when you win? right? but bet stay when you loss..gonna try it..

Probably he get busted and leave .
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!