0% found this document useful (0 votes)
259 views4 pages

Ascension Script

This document contains an Ascension script with instructions for using it to automatically place bets on an Ascension game. The script sets parameters like the minimum and maximum bet amounts, target profit, chance of winning calculations, and logic for increasing or decreasing bets after wins and losses. Tips are requested to be sent to a Bitcoin address. The script contains functions to determine the profitability of bets, calculate win chances, and place bets according to the rules set in the parameters.

Uploaded by

Ank4in
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)
259 views4 pages

Ascension Script

This document contains an Ascension script with instructions for using it to automatically place bets on an Ascension game. The script sets parameters like the minimum and maximum bet amounts, target profit, chance of winning calculations, and logic for increasing or decreasing bets after wins and losses. Tips are requested to be sent to a Bitcoin address. The script contains functions to determine the profitability of bets, calculate win chances, and place bets according to the rules set in the parameters.

Uploaded by

Ank4in
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/ 4

-- Ascension Script

-- If it works well for you, and you make a profit


-- tips would be greatly appreciated
-- Send BTC tips to 3J1WNVUrmqYRWBXvaLtMGfge1MGgooq6DU
-- Don't forget to tip seuntjie for this awesome tool

-- You may contact me at fred@darkcoast.com with any


-- questions you may have, and I will do my best to
-- answer them
balance = 0.01
-- At any time you can type stoponwin=true in the
-- console to halt the script after the next win
-- siteminimum: Set the minimum bet for the site you play on
siteminimum = 0.00000001
-- targetprofit: Set your target balance
targetprofit = 0.02
-- balancegain: percentage of balance to gain on win
balancegain = 1
-- maxstartingchance: Maximum chance to start betting
maxstartingchance = 1
-- minimumchance: The lowest chance per bet
minimumchance = 0.01
-- maximumchance: The highest chance per bet
maximumchance = 5
-- maximumloss: Maximum percentage of balance to lose before resetting
maximumloss = 100
-- stepstomax: How many chance increases before max chance is reached
stepstomax = 1000
-- goallin: True to go all in if balance is less than next bet
goallin = true

-- No need to change anything below this line


-- If you do things may not work properly

function IsItProfitable(thischance, bet, hole, target)


thisprofit = GetPayout(thischance) * bet
totalprofit = thisprofit - (hole + bet)

if (totalprofit > target) then


return 1
else
return 0
end
end

function GetPayout(whatchance)
payoutamt = 99 / whatchance

return payoutamt
end

function GetNextChance(currentbalance, minimum)


profitgoal = currentbalance * (balancegain / 100)
payoutamt = (profitgoal + siteminimum) / siteminimum
chance = 99 / payoutamt

if (chance > maxstartingchance) then


chance = maxstartingchance
end
if (chance < minimumchance) then
chance = minimumchance
end

return chance
end

function GetRandom()
r = math.random(2)

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

initialmulti = 1
multistep = 0.001
losstotal = 0
stoponwin = false

resetseed()
GetRandom()

nextbet = siteminimum
chance = GetNextChance(balance, siteminimum)
nextstep = (maximumchance - chance) / stepstomax
maxdrawdown = balance * (maximumloss / 100)

targetbits = (nextbet * GetPayout(chance)) - nextbet

function dobet()
if (balance > siteminimum) then
if (chance >= 99) then
nextbet = siteminimum
chance = GetNextChance(balance, siteminimum)
nextstep = (maximumchance - chance) / stepstomax
maxdrawdown = balance * (maximumloss / 100)

targetbits = (nextbet * GetPayout(chance)) - nextbet


end

if (win) then
if (balance > targetprofit) then
ching()
print("Target Achieved!")
ching()
stop()
end

if (stoponwin) then
stop()
end

resetseed()

print(balance)
if (bethigh) then
bethigh = false
else
bethigh = true
end

nextbet = siteminimum
chance = GetNextChance(balance, siteminimum)
nextstep = (maximumchance - chance) / stepstomax
maxdrawdown = balance * (maximumloss / 100)

losstotal = 0

targetbits = (nextbet * GetPayout(chance)) - nextbet


else
chance = chance + nextstep

if (chance > maximumchance) then


chance = maximumchance
end

losstotal = losstotal + previousbet


multi = initialmulti
nextbet = previousbet * multi

while (IsItProfitable(chance, nextbet, losstotal, targetbits) == 0) do


multi = multi + multistep
nextbet = nextbet * multi
end

if (losstotal > maxdrawdown) then


print("Max Loss Hit. Resetting.")
nextbet = siteminimum
chance = GetNextChance(balance, siteminimum)
nextstep = (maximumchance - chance) / stepstomax
maxdrawdown = balance * (maximumloss / 100)

losstotal = 0

targetbits = (nextbet * GetPayout(chance)) - nextbet


end
end

if (goallin and (balance - nextbet) < siteminimum) then


nextbet = balance
chance = chance - 0.01

while (IsItProfitable(chance, nextbet, losstotal, targetbits) == 0) do


chance = chance - 0.01
end

if (chance < 0.01) then


chance = 0.01
end
end

if (balance < nextbet) then


print("You Busted!")
alarm()
stop()
end
else
print("You Busted!")
alarm()
stop()
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