Bitcoin Forum
July 05, 2024, 11:08:12 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Script error? Please help!  (Read 145 times)
john85gotti (OP)
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
November 27, 2016, 05:36:57 PM
Last edit: November 27, 2016, 06:07:40 PM by john85gotti
 #1

I have an issue with a script, when is on 24-26 bet hand, the dice bot remain stuck for 5 minutes after gives me the error from picture

https://s11.postimg.org/o5h728yxf/image.png


This is the script:
Code:
chance1=18
chance2=21
chance3=24
chance4=28
chance5=37
chance6=45
chance7=48
base=0.00000000
nextbet=base
contorserie=0
samanta=0
lowsauhigh=0
lowhighRANDOM=1

function fibonacci(n)
    if n<3 then
        return 1
    else
        return fibonacci(n-1) + fibonacci(n-2)
    end
end


function dobet()

samanta=math.random(1,8)

if lowhighRANDOM==1 then
lowsauhigh=math.random(0,1)
if lowsauhigh==0 then
bethigh=false
else
bethigh=true
end
else
bethigh=true
end



-- A castigat! Reseteaza contorserie, nextbet si seriemartingale
if (win and currentstreak==1) and (contorserie>0 and previousbet>0) then
nextbet=base
contorserie=0
chance=math.random(chance1,chance2)
end


--  CICLU NORMAL
-- ----------------------------

-- A pierdut. Mareste pariul
if (win==false and currentstreak==-3) and contorserie<=10 then
nextbet=fibonacci(contorserie)/100000000
end

--  Au venit doua rosii. Mareste contorserie si fa urmatorul BET la cat a ajuns seriemartingale
if win==false and currentstreak==-2 and contorserie<=10 then
contorserie=contorserie+1
chance=math.random(chance1,chance2)
nextbet=fibonacci(contorserie)/100000000
end

-- ----------------------------


--  CICLU DE URGENTA 1
-- ----------------------------

-- A pierdut. Mareste pariul
if win==false and currentstreak==-3 and (contorserie>10 and contorserie<=15) then
nextbet=fibonacci(contorserie)/100000000
end

--  Au venit doua rosii. Mareste contorserie si fa urmatorul BET la cat a ajuns seriemartingale
if win==false and currentstreak==-2 and (contorserie>10 and contorserie<=15) then
contorserie=contorserie+1
chance=math.random(chance2,chance3)
nextbet=fibonacci(contorserie)/100000000
end

-- ----------------------------


--  CICLU DE URGENTA 2
-- ----------------------------

-- A pierdut. Mareste pariul
if win==false and currentstreak==-3 and (contorserie>15 and contorserie<=22) then
nextbet=fibonacci(contorserie)/100000000
end

--  Au venit doua rosii. Mareste contorserie si fa urmatorul BET la cat a ajuns seriemartingale
if win==false and currentstreak==-2 and (contorserie>15 and contorserie<=22) then
contorserie=contorserie+1
chance=math.random(chance3,chance4)
nextbet=fibonacci(contorserie)/100000000
end

-- ----------------------------

--  CICLU DE URGENTA 3
-- ----------------------------

-- A pierdut. Mareste pariul
if win==false and currentstreak==-3 and (contorserie>22 and contorserie<=27) then
nextbet=fibonacci(contorserie)/100000000
end

--  Au venit doua rosii. Mareste contorserie si fa urmatorul BET la cat a ajuns seriemartingale
if win==false and currentstreak==-2 and (contorserie>22 and contorserie<=27) then
contorserie=contorserie+1
chance=math.random(chance4,chance5)
nextbet=fibonacci(contorserie)/100000000
end

-- ----------------------------

--  CICLU DE URGENTA 4
-- ----------------------------

-- A pierdut. Mareste pariul
if win==false and currentstreak==-3 and (contorserie>27 and contorserie<=30) then
nextbet=fibonacci(contorserie)/100000000
end

--  Au venit doua rosii. Mareste contorserie si fa urmatorul BET la cat a ajuns seriemartingale
if win==false and currentstreak==-2 and (contorserie>27 and contorserie<=30) then
contorserie=contorserie+1
chance=math.random(chance6,chance7)
nextbet=fibonacci(contorserie)/100000000
end

-- ----------------------------





-- Pica RED dar secventa nu e de DOUA
if (win==false and currentstreak>-2) or (win==false and currentstreak<-2) then
nextbet=base
chance=math.random(chance1,chance2)
end


if samanta==3 then
resetseed()
end

end






john85gotti (OP)
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
November 27, 2016, 06:08:01 PM
 #2

anybody? Cry
Superhitech
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000


View Profile
November 27, 2016, 06:21:46 PM
 #3

Could you give some details about the script? People on the forum will need more details in order to help.

Also, I'm not sure if the "gambling discussion" subforum is the best place to post this, as even though it's related to gambling, you might get more help by posting in a different subforum, such as service discussion or services.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!