Pages:
Author

Topic: Seuntjie' Dice bot programmers mode discussion. - page 33. (Read 125394 times)

newbie
Activity: 51
Merit: 0
I have tried the code like this:

basebet = 0.00000001
math.randomseed( os.time() )
magicNum = math.random(2,8)
count =0
nextbet = basebet

chance = XX -- You need to set this!
bethigh = true -- or false depending if you want high or low

function dobet()

  count = count + 1

  if count == magicNum then
    -- Time for MAX bet
    nextbet = balance
  elseif count > magicNum then
    -- Time to reset
    nextbet = basebet
    count = 0
  end

end







but it places the initial max bet after 7 bets.Then it always places a maxbet after 8 bets.
HCP
legendary
Activity: 2086
Merit: 4361
Is there a way to choose the magicNum randomly between a set range.

Anyway THANKS FOR HELPING ME with the code .

Apparently "math.random(lower, upper)" generates 'random' integer in the range between 'lower' and 'upper' INCLUSIVE

so something like:

math.randomseed( os.time() )
magicNum = math.random(10,15)

should randomly generate a number from (10,11,12,13,14,15)

... you're welcome
newbie
Activity: 51
Merit: 0
Can you please help .I want to write a program performing the following functions in dicebot.

There is an initial bet.After 'N' number of bets the bet amount must be equal to balance.And the nextbet reverses to initial bet .And again after N bets the bet gets equal to balance.and so on.....

for example: Suppose I have a base bet =0.00000001. Let N=13.Then the 14th bet is equal to balance.And the 15th bet is again 0.00000001.And again after 13 bets the process continues.

That seems pretty easy...

Code:
basebet = 0.00000001
magicNum = 13
count = 0
nextbet = basebet

chance = ????? -- You need to set this!
bethigh = true -- or false depending if you want high or low

function dobet()

  count = count + 1

  if count == magicNum then
    -- Time for MAX bet
    nextbet = balance
  elseif count > magicNum then
    -- Time to reset
    nextbet = basebet
    count = 0
  end

end

It also seems like an easy way to lose all your balance... buy hey... your coins Tongue


Is there a way to choose the magicNum randomly between a set range.

Anyway THANKS FOR HELPING ME with the code .
HCP
legendary
Activity: 2086
Merit: 4361
Can you please help .I want to write a program performing the following functions in dicebot.

There is an initial bet.After 'N' number of bets the bet amount must be equal to balance.And the nextbet reverses to initial bet .And again after N bets the bet gets equal to balance.and so on.....

for example: Suppose I have a base bet =0.00000001. Let N=13.Then the 14th bet is equal to balance.And the 15th bet is again 0.00000001.And again after 13 bets the process continues.

That seems pretty easy...

Code:
basebet = 0.00000001
magicNum = 13
count = 0
nextbet = basebet

chance = ????? -- You need to set this!
bethigh = true -- or false depending if you want high or low

function dobet()

  count = count + 1

  if count == magicNum then
    -- Time for MAX bet
    nextbet = balance
  elseif count > magicNum then
    -- Time to reset
    nextbet = basebet
    count = 0
  end

end

It also seems like an easy way to lose all your balance... buy hey... your coins Tongue
member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
Right... so you want a guaranteed 10% return per day with no risk? Roll Eyes

That just isn't going to happen. With a bankroll of 0.01BTC, at 2x payout (~49.x chance) and 1 satoshi basebet, you can only survive maybe 18 losses... as crazy as it sounds, losses of 20+ aren't unheard of at that chance of winning.

Have you looked for any of the scripts that have been promoted around this subforum? or on Seuntjie's site?
hello bro pls can u create a script for me?
useing this gambling strategy below

1324 system

The 1-3-2-4 system is a gambling strategy devised by Fortune Palace in 2006, which works well on bets which are close to evens chance (i.e. 50/50, like a coin toss) - particularly in Baccarat and Roulette.

It's based on the popular 1-3-2-6 system, but is designed to reduce the win/loss variance by only betting 4 units on the fourth bet, thereby preserving an overall win, even if the last bet loses. In the 1-3-2-6, you could accrue a profit of six units by winning the first three bets (1, 3 and 2) and then gamble all of that on the last bet. In the 1-3-2-4, you keep back two units from the six already won.

In Baccarat, this is important as the vigorish (commission) makes the Banker bet a less than even chance (see below for a full discussion of the 1-3-2-4 in Baccarat)

In the 1-3-2-4 gambling system, the sequence of winning bets is simply

1, 3, 2, 4.

If a bet wins, you progress to the next bet in the sequence.
If a bet loses, you go back to the start.
If you win all four bets and complete the sequence, you go back to the start, having made 10 units profit!


thankx in advanced
member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
Right... so you want a guaranteed 10% return per day with no risk? Roll Eyes

That just isn't going to happen. With a bankroll of 0.01BTC, at 2x payout (~49.x chance) and 1 satoshi basebet, you can only survive maybe 18 losses... as crazy as it sounds, losses of 20+ aren't unheard of at that chance of winning.

Have you looked for any of the scripts that have been promoted around this subforum? or on Seuntjie's site?
thankx for replying ,,,,,,, yes but lost all always
member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
jezzz!
bro i wasnt yaling at any one i swear i was just asking
how come u think i was yaling at hime (oh i get it , is it because of the capital letters i used? wow bro its my keypad thats faulty am so sorry
legendary
Activity: 1717
Merit: 1125
okay @HCP let say i KNOW I will LOSS BUT I KNOW THERE SHOULD BE A SCRIPT THAT CAN STILL WITHSTAND LONG SOING TRECK FOR SOME TIME, JUST FOR ME TO GAIN LITTILE WITH me deposite of 0.01btc i dont mind if gain 0.001btc a day
pls help me for that (thankx in advance)BTC

DON'T YELL AT THE PEOPLE YOU'RE ASKING HELP FROM. It's rude and drives away anyone that was willing to help you.

There's no such thing as a safe script. That's why I didn't respond to your PM or the message you left here. There's no script that'll safely gain you 0.001Btc a day even if you have a 20btc balance. Don't try to gamble for profit, gamble for fun.

If you need money, stop gambling and put your btc in a cold wallet.

HCP
legendary
Activity: 2086
Merit: 4361
Right... so you want a guaranteed 10% return per day with no risk? Roll Eyes

That just isn't going to happen. With a bankroll of 0.01BTC, at 2x payout (~49.x chance) and 1 satoshi basebet, you can only survive maybe 18 losses... as crazy as it sounds, losses of 20+ aren't unheard of at that chance of winning.

Have you looked for any of the scripts that have been promoted around this subforum? or on Seuntjie's site?
member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
okay @HCP let say i KNOW I will LOSS BUT I KNOW THERE SHOULD BE A SCRIPT THAT CAN STILL WITHSTAND LONG SOING TRECK FOR SOME TIME, JUST FOR ME TO GAIN LITTILE WITH me deposite of 0.01btc i dont mind if gain 0.001btc a day
pls help me for that (thankx in advance)BTC
HCP
legendary
Activity: 2086
Merit: 4361
i mean a script that can withstand a long lossing treck even with 0.01btc deposit
Ohhhh you meant a "safe" script... no such thing... it's called gambling for a reason. Tongue

There are plenty of example scripts floating around these forums and even some on bot.seuntjie.com site...

But if you want a truly safe script:

Code:
nextbet = 0
chance = 100
function dobet()
  stop()
end

Guaranteed not to lose! Wink
member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
i mean a script that can withstand a long lossing treck even with 0.01btc deposit
HCP
legendary
Activity: 2086
Merit: 4361
What exactly do you mean by a "save script"? Huh
member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
pls can any one here at least help me?
i really need a save script to use on bitsler on dicebot with a bankroll of 0.01btc
thankx in advance
full member
Activity: 148
Merit: 100
Ok... that sort of clears things up a little bit Smiley

This should give you an idea of how to do it... if at any time you want to reset all the way back... just set count = 1

Code:
chances = {11,12,13}
bets = {1000,2000,3000}
increase = {1.16,1.17,1.18} -- 16%, 17% and 18%

count = 1

... do all your other stuff ...

chance = chances[count]
nextbet = bets[count]

function dobet()

  if (win) then
    ... win stuff ...
    count = count + 1
    if count > #chances then
      count = #chances  -- Don't go over max array size
    chance = chances[count]
    nextbet = bets[count]

  else
    ... loss stuff ...
    chance = chances[count]
    nextbet = previousbet * increase[count]   

  end

  ... whatever else you want ...

end


great! i try this. tnx a lot!
legendary
Activity: 1717
Merit: 1125
Ok... that sort of clears things up a little bit Smiley

Really? Because I still have no idea what he's talking about...
HCP
legendary
Activity: 2086
Merit: 4361
Ok... that sort of clears things up a little bit Smiley

This should give you an idea of how to do it... if at any time you want to reset all the way back... just set count = 1

Code:
chances = {11,12,13}
bets = {1000,2000,3000}
increase = {1.16,1.17,1.18} -- 16%, 17% and 18%

count = 1

... do all your other stuff ...

chance = chances[count]
nextbet = bets[count]

function dobet()

  if (win) then
    ... win stuff ...
    count = count + 1
    if count > #chances then
      count = #chances  -- Don't go over max array size
    chance = chances[count]
    nextbet = bets[count]

  else
    ... loss stuff ...
    chance = chances[count]
    nextbet = previousbet * increase[count]   

  end

  ... whatever else you want ...

end
full member
Activity: 148
Merit: 100
Sorry, I don't understand what it is that you're asking for...

what exactly do you mean by nextbet 16%?  Do you mean that the nextbet should be the previousbet increased by 16%? or that it should be 16% of the previous bet?

And you haven't specified if it should occur on win or loss or both?

Also, what are the conditions that it moves from "1 bet" values to "2 bet" values?

Huh



i have 3 arrays...one for chance, one for bet and one for on loose nexbet + %
if win i want change this arrays block like this:

first win :   chance 11.00 - bet 1000 - on loose nextbet + 16%
second win : chance 12.00 - bet 2000 - on loose nextbet + 17%
and more :   chance 13.00 - bet 3000 - on loose nextbet + 18%

but in block because if i use normal arrays all are random so ...chance 11:00 start with bet 2000 and on loose 18%



member
Activity: 90
Merit: 10
Visit www.btcscriptbot.wordpress.com to get latest
@seuntjie pls could u help me with a save script for me to play with 0.01btc on dicebot using bitsler or primedice thank you
HCP
legendary
Activity: 2086
Merit: 4361
Sorry, I don't understand what it is that you're asking for...

what exactly do you mean by nextbet 16%?  Do you mean that the nextbet should be the previousbet increased by 16%? or that it should be 16% of the previous bet?

And you haven't specified if it should occur on win or loss or both?

Also, what are the conditions that it moves from "1 bet" values to "2 bet" values?

Huh

Pages:
Jump to: