0% found this document useful (0 votes)
54 views2 pages

New Code For Luxk

The document contains code for a betting simulation that tracks wins, losses, bet amounts, and chance of winning over many rounds. It initializes variables, defines a function to perform a single bet round that updates the tracked values, and contains logic for adjusting the bet size and chance of winning based on streaks.

Uploaded by

Jericho Padilla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views2 pages

New Code For Luxk

The document contains code for a betting simulation that tracks wins, losses, bet amounts, and chance of winning over many rounds. It initializes variables, defines a function to perform a single bet round that updates the tracked values, and contains logic for adjusting the bet size and chance of winning based on streaks.

Uploaded by

Jericho Padilla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

basebet = balance/10000

nextbet = basebet
chance = 49
w = 0
luck = 0
counter = 0
up = 0
down = 0
upluck = 0
downluck = 0
down1 = 0
up1 = 0
upluck1 = 0
downluck = 0

function dobet()
counter += 1
upluck = ((down/counter)*100)/49*100
downluck = ((up/counter)*100)/49*100

upluck1 = ((down1/counter)*100)/33*100
downluck1 = ((up1/counter)*100)/33*100

if lastBet.roll > 67 then


up1 += 1
elseif lastBet.roll < 33 then
down1 += 1
end

if lastBet.roll > 51 then


up += 1
elseif lastBet.roll < 49 then
down +=1
end
---
if upluck1 > 100 then
chance = 33
bethigh = true

elseif downluck > 100 then


chance = 33
bethigh1 = false

end
--posting

print("upluck :"..string.format("%.8f",upluck))
print("downluck :"..string.format("%.8f",downluck))
print("upluck1 :"..string.format("%.8f",upluck1))
print("downluck1 :"..string.format("%.8f",downluck1))
--win and loss settings

if win then
chance = 49
nextbet = basebet
if upluck > 100 then
bethigh = true
elseif downluck > 100 then
bethigh = false
end
else
if (chance == 49) then
nextbet = previousbet*2.2
elseif (chance == 33) then
nextbet = previousbet*1.55
end
end

end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy