Bitcoin Forum
June 20, 2024, 10:58:00 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 30, 2017, 01:32:40 AM
yes sorry and i left some things, like base bet ok i will change some numbers that are wrong and put only the information if you understant better that i want

Base bet:0.00000001
on every L-L-L-W multiply the last bet and the losses count from the LAST WIN only (the last reset i think)
BUT if W-W return to base bet (0.00000001) and reset the streak count
in W-L-W-L-W return to base bet and reset the streak count too

shorter and i think is the same that i want, more logic thank you so much, if you can or you have a guide with every variable and their function could help me the next time, the website is a litle confussing an excel table could be great, thanks












This is that I have for now


chance=33.0 --sets your chance for placing a bet
nextbet=0.0000001 --sets your first bet.
switchcount=0
bethigh=true --bet high when true, bet low when false

enablezz=false --set to true to use high/low switching
--settings from advanced mode

enablesrc=false --set to true to use stop/reset conditions
--settings from advanced mode

function dobet()
if win then
nextbet=previousbet*losses
switchcount=0
end
end


its all for now i get LUA error if i set some "=" or "currentstreak" or "then"
on every losses i can multiply lasbet for losses but if WW the ressult will be 0, 0 losses * 0.00000001 will be 0 right?
and on WLWLW ?

thank you guys


http://prnt.sc/f2en6e it might help, i'm going forward but now i dont know why him cant do the multiply previousbet*losses always he bet 10 why is not taking effect? thank you
2  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 29, 2017, 09:40:53 PM
yes sorry and i left some things, like base bet ok i will change some numbers that are wrong and put only the information if you understant better that i want

Base bet:0.00000001
on every L-L-L-W multiply the last bet and the losses count from the LAST WIN only (the last reset i think)
BUT if W-W return to base bet (0.00000001) and reset the streak count
in W-L-W-L-W return to base bet and reset the streak count too

shorter and i think is the same that i want, more logic thank you so much, if you can or you have a guide with every variable and their function could help me the next time, the website is a litle confussing an excel table could be great, thanks










This is that I have for now


chance=33.0 --sets your chance for placing a bet
nextbet=0.0000001 --sets your first bet.
switchcount=0
bethigh=true --bet high when true, bet low when false

enablezz=false --set to true to use high/low switching
--settings from advanced mode

enablesrc=false --set to true to use stop/reset conditions
--settings from advanced mode

function dobet()
if win then
nextbet=previousbet*losses
switchcount=0
end
end


its all for now i get LUA error if i set some "=" or "currentstreak" or "then"
on every losses i can multiply lasbet for losses but if WW the ressult will be 0, 0 losses * 0.00000001 will be 0 right?
and on WLWLW ?

thank you guys
3  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 28, 2017, 11:39:46 PM
Hello, im new on programmingmode and I need some help

what means resetstats()? reset the losses and winning events?

see this is more or less the thing that i wish configure

If I lose 1 to 4 times do nothing

If i lost 5 times and after i won 1 time change the bet  by multiply losses*lastbet and still the same on the losses and winning events

and if i lost 1 time and won 1 time twice (lost,win,lost,win) return to base bet and reset the winning and lossed statics (to the losses*lastbet multiply dont take effects all the losses)

and if i won 2 times on line reset to and return to base


thank you guys
  resetstats() resets all of your stats that the bot displays. 

  you can use the currentstreak variable and each time it is equal to 1 or -1 you know the bet switched from a lose to a win or the other way around.  if it goes to 2 or -2 you had 2 wins or 2 loses.  so we reset the switch count.  if switch count is 4 or more when you win, it's your LWLW situation. the reason we check for greater then is because it might actually be a WLWLW in which case the count will be 5 before you see it on the winning side.   


so
fivelosses = false
switchcount = 0
function dobet()
if (win) then
  if currentstreak == 1 then
    switchcount += 1
  else   // you won more then 1 time in a row so you could reset and return to base here. 
    switchcount = 0
  end
  if fivelosses then
     fivelosses = false
     change the bet  by multiply losses*lastbet and still the same on the losses and winning events
  end
  if switchcount > 3 then
    return to base bet and reset the winning and lossed statics (to the losses*lastbet multiply dont take effects all the losses)
    switchcount = 0      //reset switchcount or not depending on what you want. 
  end
     
     
else
  if currentstreak == -1 then
     switchcount +=1
  else
     switchcount = 0
  end
  if currentstreak < -4 then      I assumed you ment 5 times in a row. 
     fivelosses = true
  end
end
end



thank you sir, im trying to run the script but i got some LUA ERROR on fivelosses variable i think

Try cut/pasting the message, or do a screen print. 

That script as written won't actually run.  I just stuck text in there where I didn't quite understand what you wanted to do.  Also there is some text that should be commented out.  I assumed you ment 5 times in a row.   should have been a comment. 

yes sorry and i left some things, like base bet ok i will change some numbers that are wrong and put only the information if you understant better that i want

Base bet:0.00000001
on every L-L-L-W multiply the last bet and the losses count from the LAST WIN only (the last reset i think)
BUT if W-W return to base bet (0.00000001) and reset the streak count
in W-L-W-L-W return to base bet and reset the streak count too

shorter and i think is the same that i want, more logic thank you so much, if you can or you have a guide with every variable and their function could help me the next time, the website is a litle confussing an excel table could be great, thanks







4  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 28, 2017, 07:09:00 PM
Hello, im new on programmingmode and I need some help

what means resetstats()? reset the losses and winning events?

see this is more or less the thing that i wish configure

If I lose 1 to 4 times do nothing

If i lost 5 times and after i won 1 time change the bet  by multiply losses*lastbet and still the same on the losses and winning events

and if i lost 1 time and won 1 time twice (lost,win,lost,win) return to base bet and reset the winning and lossed statics (to the losses*lastbet multiply dont take effects all the losses)

and if i won 2 times on line reset to and return to base


thank you guys
  resetstats() resets all of your stats that the bot displays. 

  you can use the currentstreak variable and each time it is equal to 1 or -1 you know the bet switched from a lose to a win or the other way around.  if it goes to 2 or -2 you had 2 wins or 2 loses.  so we reset the switch count.  if switch count is 4 or more when you win, it's your LWLW situation. the reason we check for greater then is because it might actually be a WLWLW in which case the count will be 5 before you see it on the winning side.   


so
fivelosses = false
switchcount = 0
function dobet()
if (win) then
  if currentstreak == 1 then
    switchcount += 1
  else   // you won more then 1 time in a row so you could reset and return to base here. 
    switchcount = 0
  end
  if fivelosses then
     fivelosses = false
     change the bet  by multiply losses*lastbet and still the same on the losses and winning events
  end
  if switchcount > 3 then
    return to base bet and reset the winning and lossed statics (to the losses*lastbet multiply dont take effects all the losses)
    switchcount = 0      //reset switchcount or not depending on what you want. 
  end
     
     
else
  if currentstreak == -1 then
     switchcount +=1
  else
     switchcount = 0
  end
  if currentstreak < -4 then      I assumed you ment 5 times in a row. 
     fivelosses = true
  end
end
end



thank you sir, im trying to run the script but i got some LUA ERROR on fivelosses variable i think
5  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: April 28, 2017, 12:12:03 AM
Hello, im new on programmingmode and I need some help

what means resetstats()? reset the losses and winning events?

see this is more or less the thing that i wish configure

If I lose 1 to 4 times do nothing

If i lost 5 times and after i won 1 time change the bet  by multiply losses*lastbet and still the same on the losses and winning events

and if i lost 1 time and won 1 time twice (lost,win,lost,win) return to base bet and reset the winning and lossed statics (to the losses*lastbet multiply dont take effects all the losses)

and if i won 2 times on line reset to and return to base


thank you guys
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!