Pages:
Author

Topic: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts! - page 78. (Read 274841 times)

sr. member
Activity: 434
Merit: 250

I've been getting a ton of complaints about that the last two days. I've contacted the bitsler admins to find out what's going on.

Please take a look at the same problem with nitrogen sports ... it´s almost impossible to use the bot with that site, it stops all the time

NitrogenSports doesn't allow being connected using a browser and the bot at the same time (you don't need to log out of your browser as far as  Ican recall, but you need to close the tab). Are you opening NS in your browser to chat or play other games/bets while the bot is betting? Other than that, I haven't had NS stop yet.

Same thing with bitsler. If you log in to the site while the bot is betting, it's going to disconnect the bot.

Alternatively, are you on a stable internet connection?

I have had issues with both bitsler and nitrogen as well.
I changed the rolls on bitsler to 0.5 per second and that helped a lot.

Nitrogen has been hit and miss for me. Many times it says to close the page in the browser and I did not even have a browser open at that time. Plus multiple disconnects
Not to worry though. I'm out of nitrogen now.
Up 40k units -- down 131k units -- up 40k units -- rekt on a 5% chance at 205 straight losses...that same seed also gave 109 and 107 streaks all within 1551 spins.
The previous seed ran for ~25k spins and topped out at ~95 loss streak. Guess I shouldn't have reset it...haha
On a side note...is there anyway to reset the seed for ns? I was having to do it manually.

My internet is fine. PrimeDice has been running for ~118,000 spins straight; quickly and flawlessly.

P.S. Anyone know how to contact IIO ? ... he has some nice results
legendary
Activity: 1717
Merit: 1125
how to disable text output (roll status) at console tab ?

You can't
newbie
Activity: 24
Merit: 0
how to disable text output (roll status) at console tab ?
legendary
Activity: 1717
Merit: 1125

I've been getting a ton of complaints about that the last two days. I've contacted the bitsler admins to find out what's going on.

Please take a look at the same problem with nitrogen sports ... it´s almost impossible to use the bot with that site, it stops all the time

NitrogenSports doesn't allow being connected using a browser and the bot at the same time (you don't need to log out of your browser as far as  Ican recall, but you need to close the tab). Are you opening NS in your browser to chat or play other games/bets while the bot is betting? Other than that, I haven't had NS stop yet.

Same thing with bitsler. If you log in to the site while the bot is betting, it's going to disconnect the bot.

Alternatively, are you on a stable internet connection?
legendary
Activity: 1526
Merit: 1000
the grandpa of cryptos
nitrogen works fien for me but bitsler is very sloppy, i can bet faster with my hands than with the bot
newbie
Activity: 50
Merit: 0

[/quote]

I've been getting a ton of complaints about that the last two days. I've contacted the bitsler admins to find out what's going on.
[/quote]

Please take a look at the same problem with nitrogen sports ... it´s almost impossible to use the bot with that site, it stops all the time
legendary
Activity: 1717
Merit: 1125
*snip*
On a side note, @Seuntjie , I think the runsim() function is broken at the moment. I attempted to use it to test some code and it would crash the program regardless of the code in the box. You don't need to login to a site to use the runsim() function, correct?

No you don't need to log in to the site to use runsim. Can you give me the error for the crashes please? It might just be the site you're running on that I have not implemented the roll verifier for yet. Have you tried switching sites and running then sim then?

i´ve noticed today that the bot is very slow using bitsler... also, it stops working and then starts again... i´ve tried with other dice sites and bottler is the only one with this problem ..

i think they are a little bit cautious because of the high prices of bitcoin



I've been getting a ton of complaints about that the last two days. I've contacted the bitsler admins to find out what's going on.
newbie
Activity: 50
Merit: 0
i´ve noticed today that the bot is very slow using bitsler... also, it stops working and then starts again... i´ve tried with other dice sites and bottler is the only one with this problem ..

i think they are a little bit cautious because of the high prices of bitcoin

newbie
Activity: 24
Merit: 0
You can do something like this I think.
Code:
--init variable
test=0
nextbet=0.0000001 -- set the base bet

-- this my function
function rnd1(param)   -- this should be enough to declare the function
    if param==1 then
        bethigh=true
    else
        bethigh=false
    end      
end

function dobet()
    if !win then
        test=test+1
        print("test = " .. test)  -- use .. to concatenate
        rnd1(1)           -- just type the function name like so
    else
        for i=1,5 do
            print(test)
        end
    end
end

On a side note, @Seuntjie , I think the runsim() function is broken at the moment. I attempted to use it to test some code and it would crash the program regardless of the code in the box. You don't need to login to a site to use the runsim() function, correct?




problem solved
print
for next
create function

 Grin

Thank you a lot
legendary
Activity: 1736
Merit: 1023
You can do something like this I think.
Code:
--init variable
test=0
nextbet=0.0000001 -- set the base bet

-- this my function
function rnd1(param)   -- this should be enough to declare the function
    if param==1 then
        bethigh=true
    else
        bethigh=false
    end      
end

function dobet()
    if !win then
        test=test+1
        print("test = " .. test)  -- use .. to concatenate
        rnd1(1)           -- just type the function name like so
    else
        for i=1,5 do
            print(test)
        end
    end
end

On a side note, @Seuntjie , I think the runsim() function is broken at the moment. I attempted to use it to test some code and it would crash the program regardless of the code in the box. You don't need to login to a site to use the runsim() function, correct?
newbie
Activity: 24
Merit: 0
Hi,

In Programmer Mode

please provide examples of looping code:
eg for next

how the conversion code like this :
test = 1
print ("test =",test)

how to create a new function

Thank


I recommend you check out the tutorials at https://bot.seuntjie.com/ProgrammerMode.aspx

This describes how to create functions and provides many examples. Check it out and if you still have a question on how to do something specifically, let us know.

I have been to these links ( https://bot.seuntjie.com/ProgrammerMode.aspx ), but could not find the above

Can you please describe in more detail what you are attempting to code?

Programmer Mode uses the function dobet() by default and this function is executed each time the next bet is required. Its where the looping occurs.

For example, simple martingale script looks like this:
Code:
function dobet()
    if win then
        nextbet=0.00000001
    else
        nextbet=previousbet*2
    end
end

Provide a more detailed explanation of what you are trying to accomplish if you need more help.


--init variable
test=0

-- this my function
function rnd1(param)   -- i don't know how to declare this function

  if param==1 then
      bethigh=true
  else
      bethigh=false
  end      
end

function dobet()
  if !win then
    test=test+1
    print("test = ",test)  -- error
   call rnd1(1)           -- how to run rnd1
 
 else
     for i=1 to 5    -- i dont know for next in this bot
        print(test)
    next
  
 end
end
legendary
Activity: 1736
Merit: 1023
Hi,

In Programmer Mode

please provide examples of looping code:
eg for next

how the conversion code like this :
test = 1
print ("test =",test)

how to create a new function

Thank


I recommend you check out the tutorials at https://bot.seuntjie.com/ProgrammerMode.aspx

This describes how to create functions and provides many examples. Check it out and if you still have a question on how to do something specifically, let us know.

I have been to these links ( https://bot.seuntjie.com/ProgrammerMode.aspx ), but could not find the above

Can you please describe in more detail what you are attempting to code?

Programmer Mode uses the function dobet() by default and this function is executed each time the next bet is required. Its where the looping occurs.

For example, simple martingale script looks like this:
Code:
function dobet()
    if win then
        nextbet=0.00000001
    else
        nextbet=previousbet*2
    end
end

Provide a more detailed explanation of what you are trying to accomplish if you need more help.
newbie
Activity: 24
Merit: 0
Hi,

In Programmer Mode

please provide examples of looping code:
eg for next

how the conversion code like this :
test = 1
print ("test =",test)

how to create a new function

Thank


I recommend you check out the tutorials at https://bot.seuntjie.com/ProgrammerMode.aspx

This describes how to create functions and provides many examples. Check it out and if you still have a question on how to do something specifically, let us know.

I have been to these links ( https://bot.seuntjie.com/ProgrammerMode.aspx ), but could not find the above
legendary
Activity: 1736
Merit: 1023
Hi,

In Programmer Mode

please provide examples of looping code:
eg for next

how the conversion code like this :
test = 1
print ("test =",test)

how to create a new function

Thank


I recommend you check out the tutorials at https://bot.seuntjie.com/ProgrammerMode.aspx

This describes how to create functions and provides many examples. Check it out and if you still have a question on how to do something specifically, let us know.
newbie
Activity: 24
Merit: 0
Hi,

In Programmer Mode

please provide examples of looping code:
eg for next

how the conversion code like this :
test = 1
print ("test =",test)

how to create a new function

Thank
legendary
Activity: 1526
Merit: 1000
the grandpa of cryptos
strategy works only vs base bet and amount u have

till u drain one day Smiley
legendary
Activity: 2016
Merit: 1107
Here are your ideal betting strategies:

Chance to win: 30%
Increase on loss:50%
Reset to base bet on win
No of bets:50
Alternate hi-lo per 3 bets.

Chance to win:40%
Increase on loss:75%
Reset to base bet on win
No of bets:64
Alternate hi-lo after 3 bets

Chance to win 48%
Increase on loss: 100%
Reset to base bet on win
No of bets:100
Alternate hi-lo after 3 bets

Chance to win: 69% (I like it)
Increase on loss:300%
Reset to base bet on win
No of bets:100
Alternate hi-lo after 2 bets

Chance to win:88%
Increase on loss:880%
Reset to base bet on win
No of bets:50 (So you won't bust)
Alternate hi-lo after 3 bets


I dont believe that any of this strategy work though because there is no solid strategy that really works on gambling in this world though. All of this strategy is just some gambling fallacy which is still depends on your luck when you play unless when there is no house edge may be you might have the chance to win it. But there is no way that you could make any gambling site put their house edge away, because that is their source of income

no strategies work in the long run,some don't work in the short run either,haha
but when you post "ideal strategies" include base bet and suggested minimum bank,otherwise it makes no sense
also the number of bets you suggest is so low that it cannot be considered a strategy
50 to 100 total bets will only work with a relatively large base bet and it increases the chances to bust
I use the 33.33% 2 satoshi base 56% increase on loss 0.0025 btc bank strategy sometimes-slow but relatively safe



sr. member
Activity: 299
Merit: 250
Friends. Recently i uploaded one of my dice winning script and 2 settings . I tested these three with with very low balance  and worked very well. As you all know.there can be no sure winning strategy in dice. But i can say. You can win and enjoy some fun with my scrips and settings with only faucet and rain balance. Expecting your good suggestions.

About that. No need to upload your script 4 times. Once will do.

this bot made so much much money Smiley)

Donations are always welcome Smiley
It is due to my ignoracnce of uploading.. I think . I pressed the upload option several times. sorry for that
legendary
Activity: 1007
Merit: 1000
is it safe to use sent bot on Just dice?

I can't say that this is not safe or safe because I haven't use it, but to give you some information about this bot there are some user reported that some of the user losses their bitcoin recently. Just do back read for the information about this matter.

Edit: As I said above that I haven't try this; Now I will Cheesy

    I've placed about 40 million bets on Just-dice.  The Bot did exactly what it was supposed to do. It's safe to use, but don't expect to make money all of the time.  But it is nice to try different strategies.       
sr. member
Activity: 1638
Merit: 364
https://shuffle.com?r=nba
is it safe to use sent bot on Just dice?

I can't say that this is not safe or safe because I haven't use it, but to give you some information about this bot there are some user reported that some of the user losses their bitcoin recently. Just do back read for the information about this matter.

Edit: As I said above that I haven't try this; Now I will Cheesy
Pages:
Jump to: