Search content
Sort by

Showing 5 of 5 results by martum
Post
Topic
Board Tokens (Altcoins)
Re: [ANN][ITO] Levolution: A Revolutionary Token Offering Platform
by
martum
on 11/06/2019, 23:16:24 UTC
It seems to me that the platform will require a large number of those who will be checking service providers and new ITOs. Will you expand the number of experts who work in your team?
I think that their number may depend on the load on the platform. Entrepreneurs will not want to work with Levolution if legal analysis takes a long time.
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
martum
on 06/01/2017, 06:40:49 UTC
how can i set bot to rebet after some case.

Code:
initialbet = 0.00000005
nextbet = initialbet
chance = 49.0
bethigh = false
test = 0

function dobet()

if (lastBet.Roll <= 10.99) then
test = 1
nextbet = initialbet * 100
-- i need the bot to rebet at this line
end

if test == 1 then
if (win) then
test = 0
nextbet = initialbet
else
nextbet = nextbet * 2
end
end

end

edit : i got it!! just like this
Code:
initialbet = 0.00000005
nextbet = initialbet
chance = 49.0
bethigh = false
test = 0

function dobet()

if test == 1 then
if (win) then
test = 0
nextbet = initialbet
else
nextbet = nextbet * 2
end
end

if (lastBet.Roll <= 10.99) then
test = 1
nextbet = initialbet * 100
end

end
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
martum
on 06/01/2017, 04:59:41 UTC
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
martum
on 06/01/2017, 04:28:30 UTC
how can i get lucky number of the lastbet?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
martum
on 23/12/2016, 03:37:54 UTC
hi, is there normal when i check on "Reset after XXXX Btc Profit" and when it get  xxx Btc Profit that i've set it have a long delay

edit. i think it is because "DiceBot.db" have too much data to read.