Bitcoin Forum
May 29, 2024, 04:13:01 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 »
541  Economy / Gambling / Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! on: August 06, 2015, 10:15:45 PM
I gave you a link to a screenshot,I'll give it again at this image presents in my opinion strategy is described in detail with all conditions of discharge and the rate increase,I urge you to read through this screen
the main condition of the reset base rate of profit is>0 in a series of three bets,if in a series of three rates, the first rate is positive then resets to the base rate,if in a series of three bets 2 positive then resets to basic,but if in a series of three bets, two or three negative rate is multiplying 2 times two

Is it a series of 3 bets, starting at x

  if no bets win multiply by 4
     go for up to 3 series like this.  IE (1 4 16) then reset
  if one bet wins multiply by 2
     what happens here?  In your example if the first bet wins, you reset to base, what happens if it loses?  And for how many loses? 
  if 2-3 bets win reset to base

 
  Am I close? 
542  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Magic Money is now live (Gorilla TEETH Spin off) on: August 06, 2015, 06:30:11 PM
...just reposting that here to let you all remember what kind of guy this vegas is.
a smart one.



If you think that, you are extremely stupid and showing how clueless this entire group of idiots is


   Do you really expect us idiots to actually read all of that.  

On with the new coin....  

543  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 11:02:51 PM
below I have left a link to a screenshot,tell me what to click or what to register in the console that the script started to work and the bot started to bet
http://imgur.com/5EwPBlF

please help me,I'm very confused and don't know what to do Angry Angry Angry Huh

I suggest clicking the Help! button that is visible on that screen shot. It will explain how the programming mode works and how to use it.

To start and stop a script, go to the console tab (look at the top of the screenshot), then in the bottom there is an input box. in there, type "nextbet = xx.xxxx" (without the quotation marks, replace xx.xxxx with what you want your first bet to be) and press enter.

Then, to start betting, type "start()" (without the quotation marks, but with the brackets) and press enter. To stop the bot, type "stop()" and press enter.

   You also need to first log into which ever site you want to bet on.

That kinda goes without saying though....


LOL...  You would be surprised.   Roll Eyes  First question in most diagnostic manuals..  Is the cord plugged into a working power receptacle.. 
544  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 09:26:54 PM
dear seuntjie and chilly2k,thank you very much guys,your advice helped me,I've dealt with the problem.once again thank you very much Smiley

Your welcome..


dear seuntjie I already wrote and asked to implement a strategy 505 in your super bot,I understand that this is a very time consuming process and it takes a long time,I want to ask you,is it possible to implement a strategy 505 by means of a script,this strategy is based on the martingale and I want to know whether it is possible to write in the script

    If you can explain it, you can create a script for it.  I've never heard of a strategy 505.
545  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: August 05, 2015, 07:19:58 PM
below I have left a link to a screenshot,tell me what to click or what to register in the console that the script started to work and the bot started to bet
http://imgur.com/5EwPBlF

please help me,I'm very confused and don't know what to do Angry Angry Angry Huh

I suggest clicking the Help! button that is visible on that screen shot. It will explain how the programming mode works and how to use it.

To start and stop a script, go to the console tab (look at the top of the screenshot), then in the bottom there is an input box. in there, type "nextbet = xx.xxxx" (without the quotation marks, replace xx.xxxx with what you want your first bet to be) and press enter.

Then, to start betting, type "start()" (without the quotation marks, but with the brackets) and press enter. To stop the bot, type "stop()" and press enter.

   You also need to first log into which ever site you want to bet on.
546  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 05, 2015, 06:18:50 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.   
547  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 05, 2015, 02:36:55 PM
Quote
Add a check at the beginning of the dobet function.   

Code:
chance=77.7
multiplier=2
multiplier2=0.70
base=0.0000150
nextbet = base 
bethigh = false
target = .00005
savebalance = balance
wincount = 10


function dobet()

   if(previousbet == 0) then nextbet = base end

   if win then
      if ((balance - savebalance) > target) then
         savebalance = balance
         nextbet = base
      else
         nextbet=previousbet*multiplier2
      end
   else
      nextbet=previousbet*multiplier
   end
end


   You could also check each place that you set nextbet, and if the result is less then X reset to the base bet.  That would prevent placing a 0 bet.  The above code will place a bet for 0 but the next one would be back at the base. 

   if(nextbet < .00000001) then nextbet = base end

I did not want..
bet=0 Although continuing


I want , next bet<=0.00000001 script restart continuous
Exsample Session :
Quote
6172161015   8/5/2015 2:04:23 PM   0.00000002   False   77   12.28   0.0000000057142   25774
6172160891   8/5/2015 2:04:22 PM   0.00000003   False   77   17.42   0.0000000085713   25773
6172160764   8/5/2015 2:04:21 PM   0.00000004   False   77   14.72   0.0000000114284   25772
6172160629   8/5/2015 2:04:21 PM   0.00000006   False   77   5.05   0.0000000171426   25771
6172160511   8/5/2015 2:04:20 PM   0.00000008   False   77   45.45   0.0000000228568   25770
6172160385   8/5/2015 2:04:19 PM   0.00000012   False   77   49.17   0.0000000342852   25769
6172160263   8/5/2015 2:04:19 PM   0.00000017   False   77   19.62   0.0000000485707   25768
6172161154   8/5/2015 2:04:24 PM   0.00000001   False   77   0.42   0.0000000028571   25775 Restart
6172161015   8/5/2015 2:04:23 PM   0.00000002   False   77   12.28   0.0000000057142   25774
6172160891   8/5/2015 2:04:22 PM   0.00000003   False   77   17.42   0.0000000085713   25773
6172160764   8/5/2015 2:04:21 PM   0.00000004   False   77   14.72   0.0000000114284   25772
6172160629   8/5/2015 2:04:21 PM   0.00000006   False   77   5.05   0.0000000171426   25771
6172160511   8/5/2015 2:04:20 PM   0.00000008   False   77   45.45   0.0000000228568   25770
6172160385   8/5/2015 2:04:19 PM   0.00000012   False   77   49.17   0.0000000342852   25769
6172160263   8/5/2015 2:04:19 PM   0.00000017   False   77   19.62   0.0000000485707   25768

    Then you need to check the nextbet after you set it. 

   if(nextbet < .00000001) then nextbet = base end

    added after you calculate a new nextbet. 

Code:
Code:
chance=77.7
multiplier=2
multiplier2=0.70
base=0.0000150
nextbet = base 
bethigh = false
target = .00005
savebalance = balance
wincount = 10


function dobet()

   if win then
      if ((balance - savebalance) > target) then
         savebalance = balance
         nextbet = base
      else
         nextbet=previousbet*multiplier2
         if(nextbet < .00000001) then nextbet = base end
      end
   else
      nextbet=previousbet*multiplier
      if(nextbet < .00000001) then nextbet = base end
   end
end



548  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 05, 2015, 01:50:31 PM
hi, use this code, running good.

Code Settings : IF WIN decrease - IF LOSE increase
When working for a while BET 0.00000000  Grin

I want to Bet is 0.00000000 script RESTART and continuous loop..
Is it possible ? how can I do ?

Quote
chance=77.7
multiplier=2
multiplier2=0.70
base=0.0000150
nextbet = base  
bethigh = false
target = .00005
savebalance = balance
wincount = 10


function dobet()

   if win then
      if ((balance - savebalance) > target) then
         savebalance = balance
         nextbet = base
      else
         nextbet=previousbet*multiplier2
      end
   else
      nextbet=previousbet*multiplier
   end
end

   Add a check at the beginning of the dobet function.  

Code:
chance=77.7
multiplier=2
multiplier2=0.70
base=0.0000150
nextbet = base  
bethigh = false
target = .00005
savebalance = balance
wincount = 10


function dobet()

   if(previousbet == 0) then nextbet = base end

   if win then
      if ((balance - savebalance) > target) then
         savebalance = balance
         nextbet = base
      else
         nextbet=previousbet*multiplier2
      end
   else
      nextbet=previousbet*multiplier
   end
end


   You could also check each place that you set nextbet, and if the result is less then X reset to the base bet.  That would prevent placing a 0 bet.  The above code will place a bet for 0 but the next one would be back at the base.  

   if(nextbet < .00000001) then nextbet = base end
549  Alternate cryptocurrencies / Announcements (Altcoins) / Re: MaryJanecoin LLC Digital Secured Currency Backed By Cannabis MARYJ -Trademarked on: August 04, 2015, 04:47:05 PM

Adam,
There is only 1 of you.  Its too much to ask for you to focus on xx items for everybody.  You don't need an upgraded wallet folks, you need a MJC that is being used routinely OUTSIDE of Bittrex, and for a valued commodity.

I have 2 decades of experience in markets.  A map pinned with the location of dispensaries that accept MJC, updated weekly, adding a modest 1 or 2 dispensaries weekly, is all that is needed to make this a $5 coin in a year.  You can put 10,000 hours of work into wallets and everything else, and it will be a waste of time compared to a growing dispensary map. 

Appreciative of the time you have devoted.  Don't become discouraged, this really will be a BTC challenger, a true international powerhouse, with a growing map.

-J Archru



Adam, forget about wallets and social media for a bit an listen to Archru he knows how to market. This is a great suggestion and should be easy to implement.

true I think its a great idea.


Adam,
I'll back my words with this: 

1. 1000 MJC transferred by me to anyone who shows proof of a new dispensary accepting 1 MJC for 1 gram that is located 20+ miles from any other dispensary offering the same.
2. 5000 MJD transferred by me to anyone who shows proof of a new dispensary accepting 1 MJC for 1 gram, that is the first to offer such an exchange in any new state in the USA, or the first in any another country outside of the USA.
3. Geocommons.com makes excellent maps like this for free.  I would rather another volunteered to maintain the map, but I will if need be. 

This is the direct path to exponential MJC success, close driving range to every county in every legal state, it really is.  It will be frightening how this could take off, serving an underbanked growing industry, if that map grows steadily.  Otherwise, this will bleed to zero, nothing in between. 

Obviously, someone will have to continue the hard work of supplying new grams to the new locations routinely, but the payoff will be swift and absolutely stunning. 

Yes, the above will cost me a lot of money, and it will make all of us substantially more...try it. 

High regards,
J. Archru



I think its a great idea. Need to try

   I think this is a great idea too, but.....   I think you have to have an end to end process developed for the dispensary's.  99% of them have no idea what crypto is, let alone how to use it and accept it.  As of now, we're just expecting them to go learn how it's done.  

   If we developed a process, ie install wallet, then create an account with XYZ.  Then do this to accept MaryJ, then for hash oil purchases do this.....  all others do this......     blah blah blah.....   Smiley

   Create a video showing how this is all done, and explaining the benefit of doing it.  

Then we could mobilize the army and take this to the streets.  
550  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 04, 2015, 03:10:33 PM
How do we use it?

1-programmer mode open
2-code copy - paste
3- ?? How do I start ??

Please help me ?



    First make sure you understand what the script is going to do.  Then make sure your balance is not larger then your willing to lose. 

If your still ok, then at the top of that programmer mode panel, there are 2 tabs code/console.  Your on the code tab now.  Switch (click on) the console tab.

The top part is the output, the bottom is for your input. 

Click on the bottom section, and type in start(). 

   The script should start running. 

You can also test the script by using the runsim() command. 

runsim(double startingBalance, int NumberOfBets)

runsim( x,y)

x can handle decimals.  So you could say 1 or 1.00000010   Thats the starting balance
y must be a whole number                                               This is the number of rolls to simulate. 
551  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 04, 2015, 01:53:29 PM
Hi chilly.
I have this (it's working):

chance=49.5
multiplier=1.05
multiplier2=0.95
base=0.00001000
nextbet = base 
bethigh = false
target = .0001


function dobet()

   if win then
      nextbet=previousbet*multiplier2
   else
      nextbet=previousbet*multiplier
   end
end

Now i want to add reset bets function, same like you have in your strategy (reset when target balance is met)
In other words i want to start with 1 btc, startbet(0.00001000) target(0.00000100) when i make my target i want to automatically reset bets and start over with new balance.
Can you help me with that?
     

An alternative and maybe a better way to do this is to have a temp profit value, instead of saving and using the balance. When using such a temp profit value, it's independent of actions other than bets placed by the bot. For instance, if you're chatting on the site and send someone a tip while betting, or receive a tip or a deposit, it will not affect the betting.

Code:
chance=49.5
multiplier=1.05
multiplier2=0.95
base=0.00001000
nextbet = base 
bethigh = false
target = .0001
tmpProfit = 0


function dobet()
   tmpProfit += currentProfit
   if win then
      if (tmpProfit  > target) then
         tmpProfit = 0
         nextbet = base
      else
         nextbet=previousbet*multiplier2
      end
   else
      nextbet=previousbet*multiplier
   end
end

Note: I didn't actually test this code, But it should work.
Note 2: This can be done with the advanced settings

   Yes, for resetting the bet, your right using the profit vs balance is much better.  I tested your code and it works fine. 

To understand the difference.  I was trying to play through that bad streak I was having.  I hit a few faucets , to get my balance back up, then resumed the script.  As soon as I hit a winner it reset the bet, even though I was still quite a bit in the hole. 
552  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 04, 2015, 04:23:08 AM

Thanks a lot.That's exactly what i was asking for.Now time to find right chance and multipilers, btw please add your btc or clam address to this topic to receive tip

    Glad it helped.  I played with it as is.  It worked great for several thousand bets then I got on a real bad streak and tanked.  I think I lost about .03 USD worth of clams...   Smiley 

    Figuring out a way/timing/sequence to switch high/low would help.  Maybe resetting the seed if you get x far in the hole.   

I have to keep reminding myself, no matter what you try, you will eventually lose. 

    I might try tightening up the target/base bet a little and see how that works. 

Any way I fixed my Sig file, so now the donation addresses show...     Have fun and good luck....     
553  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: August 04, 2015, 03:31:14 AM
Hi chilly.
I have this (it's working):

chance=49.5
multiplier=1.05
multiplier2=0.95
base=0.00001000
nextbet = base 
bethigh = false
target = .0001


function dobet()

   if win then
      nextbet=previousbet*multiplier2
   else
      nextbet=previousbet*multiplier
   end
end

Now i want to add reset bets function, same like you have in your strategy (reset when target balance is met)
In other words i want to start with 1 btc, startbet(0.00001000) target(0.00000100) when i make my target i want to automatically reset bets and start over with new balance.
Can you help me with that?
     

   I think I understand what your asking.  But I think you have your startbet and target reversed in the comment above.  (not the code).  first you need to save your balance.  I created savebalance in the init section (before the dobet function).  I'm setting it equal to balance, which is a special variable that the bot fills in.  So in theory we should now have the balance before any bets are placed.  In reality you should issue one bet from the bot before starting your script.  Then balance will be correct.  But even if you forget it will correct itself pretty quick. 

   now that you have your initial balance, you only need to check for the target in the win path.  IE you can't reach your target on a lose.  so we can add another if statement before you set nextbet.  This checks and if the current balance minus the saved balance is greater then your target, save the new balance and reset the bet to the base.  if you didn't reach the target, increase your bet. 

   here is the code. 

Code:
chance=49.5
multiplier=1.05
multiplier2=0.95
base=0.00001000
nextbet = base 
bethigh = false
target = .0001
savebalance = balance


function dobet()

   if win then
      if ((balance - savebalance) > target) then
         savebalance = balance
         nextbet = base
      else
         nextbet=previousbet*multiplier2
      end
   else
      nextbet=previousbet*multiplier
   end
end
554  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 02, 2015, 05:47:35 PM
Ok thanks ill try it. By the way, how are the addresses rewarded? First time seen on the network?, # of transactions?

  Non-dust balance on May (14?) 2014.  All rewarded 4.6 clams. 
555  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: August 02, 2015, 02:47:35 AM
So does mean that it is showing me other coins that have already been dug up or are this new coins being produced (dug up).
Just curious ass to why it says "DIG" in the debug file.   Thinking it was answered I just didn't pick up on it.  I know that coins are dug up and all from the previous transactions in the block chain.  Is it that when it says "DIG" I'm producing new coins?
Just want to make sure I have all this correct.

There is no way to precisely define, let alone identify, when a key has been imported into the client.

That said, the "DIG" you are referring references a distribution output which has moved or staked for the first time.

Plus, Your (Lenore) looking at your debug file.  You should know if you imported a private key, or wallet.dat.  If not, then the "dig" your seeing are other people digging clams.  
556  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Magic Money is now live (Gorilla TEETH Spin off) on: August 01, 2015, 11:36:27 AM


   This has really got me confused..

From IGS's post we know.

a) His code is perfect, it has never had a bug.
b) He can dump on the block chain at will.


   The only thing I can conclude is he has a back door coded into the coin to be able to manipulate it at will. 

   Sounds shady as hell to me.   
557  Economy / Gambling / Re: DiceBot (Martingale, Labouchere) for Just-Dice, PRC, 999dice and safedice on: July 29, 2015, 04:03:40 AM

   Hi Seuntjie,

   I was looking at using the io routines in LUA.  I would like to be able to read from the console, as a last resort in a script.  IE if my script is setup to cover 20 loses, I'd like to prompt the user after 15 loses to reply with high or low for the next bet. 

   It looks like the table for io is there.  But I get an index out of bounds when I try to do an io.read().  That should be just reading from STDIN.  I tried looking through the code,  Found some interesting stuff (resetstats), but nothing to help on this. 

   If I'm understanding the code at all, it looks like your code gets the keystrokes from windows and passes them along to LUA.  except for the up and down arrows which you handle. 

   I tried to track down some documents that might give me a clue about including Lua in an application, but just ended up chasing my tail. 

Just wondering if you had any pointer that I could check into.  Any doc you used that seemed to make sense? 

              Thanks
558  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake on: July 28, 2015, 08:47:21 PM
my wallet is stuck 51 weeks left. any working node?

 http://blocktree.io/peers/CLAM/
  
   Shows currently active nodes.  Also the op lists some nodes.  Also there is a bootstrap file mentioned a page back by Dooglus.  That will get you up to speed quicker. 
559  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DOGED][POD] DogeCoinDark [POW][Scrypt][privacy/security - hides users ip] on: July 27, 2015, 07:41:16 PM

Dev knows his community well. Here are some criticisms:

1. POS is not proven technology (debatable)
2. POS does not provide an equitable distribution for newcomers
3. POS is difficult to compare value against other blockchains
4. POS is more common among scamcoins because it doesn't cost scammer devs electricity
5. POS was originally an acronym for a very different thing that just stinks in general

1) I would debate this.  This is a common statement but never backed up.  Personally neither POS or POW are "proven" tech.  POW has been around longer. 
2) Why?  newcomers are going to have to buy coins.  Whether they are POS or POW.  It's just a matter of whom your buying from.
3) Why?  Whats the difference between the block chains? 
4) For the smart scammers, maybe... Cheesy
5) I can't agree more.  That's always the first thing to come to mind when I read POS. 

ps, I'm not for or against POW/POS.  And would vote to leave it as is, for now. 
560  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: July 26, 2015, 02:22:16 PM
Legion of BOOM.....

   New version of the 39.6% script.  Several changes.  Same warnings apply, this can and will bust.  Your just hoping not to bust till you've made back your bankroll plus some profit.  

   This one is setup to bet based on your balance.  It's a martingale/reverse martingale.  The starting bet is set up to cover a 20 lose streak. (20 bets).  Randomly it will bet based on a 10 lose streak.  That's the BOOM part.  It's currently setup to try this about 5% of the time.  

       R = math.random(1,20)  

  This statement assigns R a random value between 1 and 20.        

       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end

17 is my lucky number so it R equals 17 try the higher bet.  This is only done in the section of code where we calculate a new base bet.  

This does all of the same investments as the other bots.  

  It also randomly switches hi/lo 10% of the times on loses.  

I started out trying the Boom at 1% (random number 1-100).  But it didn't hit enough for my liking.  I changed it to 5%.  The first run ended with a 10 lose streak  on the BOOM cycle.  This was after about 60% win back.  So I lost about 40% of my initial bankroll (2 Clams) (ended with 1.2).  

   Next run is still going, Same setup, started with 2 clams.  Current profit is 2.1 clams.  Current balance is 2.05  So this run I'm now playing with the houses clams.  
I'll update once this run finishes.  EDIT: Run busted on a Boom cycle.  profit was 1.1 clams. 


Code:
chance = 39.6
martimulti = 1.85
streak = 20
risk = (martimulti ^ streak) * (streak/(streak *(martimulti - 1)))
print(risk)
boomstreak = 10
boomrisk = (martimulti ^ boomstreak) * (boomstreak/(boomstreak *(martimulti - 1)))


startbalance = balance
nextbet = balance / risk
basebet = balance / risk

savefactor = 1.25
target = .01
targetbalance = balance + target
bethigh = true
low = 0
high = 0
losecount = 0
stopnow = false
totallose = 0
wincount = 0
nextwinbet = basebet * martimulti


function dobet()


if (win) then
   wincount += 1
   totallose = 0
   newbalance = balance
   nextbet = balance / risk
    base = true
      if (stopnow) then stop() end
   if (wincount > 2 ) then
     nextbet = previousbet + (lastBet.profit /2)
     base = false
   else
       R = math.random(1,20)  
       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end
     end
       losecount = 0
      if (balance > targetbalance) then
         invest((balance - targetbalance)+target)
         targetbalance = targetbalance + target
         newbalance = targetbalance
      end
      if (newbalance > startbalance * savefactor) then
          invest(balance-startbalance)
          targetbalance = startbalance + target
          startbalance = startbalance * savefactor
      end
  else
      if (losecount == 0 and !base) then
          nextbet = balance / risk
          base = true
      else
          nextbet = previousbet * martimulti
          base = false
       end
      losecount += 1
      print(losecount)
 if (math.random() < .1) then bethigh = !bethigh end  
   wincount = 0
 end
  
end



    

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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!