Untitled
unknown
plain_text
2 years ago
4.0 kB
28
Indexable
--[[ the power v2 by pflip https://t.me/pflip97 if you like it or make profit using this script, I will not mind a tip :) TIP TRON : TAWTFzoL1ewgwJhqyVdjeMCiUe53USSQvx DOGE : D8omXGquak9z6nFGtB5N5n6d2m1wNiGcRZ LTC : 0xadf4817288f20562c07ad9f9632a1def02e99513 (bep20) Stake nick : pflip wolf nick : pflip3 bc.game : Pflip This script should gain you quickly 5-10% with a div of 30k. There is a trail stop function (default 15% loss), so it will not bust your balance. If you want to be a little safer, go with a divider of 50k or even 100k, but my tests showed me that the longer it runs (to achieve the target) the higher chance to hit the trail stop. Generally, with the default setting, I've seen 6-8 sucessful runs (at 5% target) before hitting a trail stop (which is normally in the 7-10% loss). The script will keep increasing basebet as the balance increases. Remember no script is 100% safe. Play with money you can afford to loose. --]] resetseed() ----- User setttings goal = balance * 1.05 -- set your target for this run div = 50000 -- set your basebet minbet = 0.00000001 -- set the minbet for the casino stopLimit = 15 -- trail stop loss (def. 15%) -- END user settings -- -- do not change anything below unless you know what you are doing chance = 30 basebet = balance / div redbox = 0 multi = 1.5 nextbet = basebet warning = 0 sbal = balance stopLoss = balance * (stopLimit/100) trailstop = sbal - stopLoss function StopCheck() if (balance<=trailstop) or ((balance - nextbet)<=trailstop) then log(" Stop Loss reached ") log("\n \t Current Gain\t »»» " ..string.format("%.8f", balance - sbal) .." [" ..string.format("%.2f", (balance - sbal)/(sbal/100)) .." %]" ) stop() end if (balance - stopLoss) > trailstop then trailstop = (balance - stopLoss) --- you can comment this printout if too anoying if trailstop < sbal then log("\n \t Updated trail stop to \t »»» " ..string.format("%.8f", trailstop) .." [" ..string.format("%.2f", 100 - (trailstop/sbal)*100) .." %]") else -- if bets%30 == 0 then log("\n \t Your initial capital is safe, your are guaranteed to gain " ..string.format("%.8f", trailstop -sbal) .." [" ..string.format("%.2f", (trailstop - sbal)/(sbal/100)) .." %]") -- end end end end -- end stopcheck function checkBet(bet) basebet = balance / div if basebet < minbet then basebet = minbet log("\n\t Warning, your basebet is less then minbet.") log("\t So we are using minbet for your bet : " ..minbet) end if (bet) then if bet < minbet then nextbet = minbet log("\n\t Warning, your nextbet is less than minbet") log("\t So we are using minbet for your bet : " ..minbet) else nextbet = basebet end end end -- end checkBet checkBet(nextbet) function dobet() StopCheck() if (!win) then redbox = redbox + previousbet nextbet = nextbet * multi multi = multi - 0.01 else redbox = redbox - currentprofit if redbox < 0 then redbox = 0 end if redbox > 0 then multi = 1.6 if warning > 10 then -- cut and reset warning = 0 redbox = 0 end nextbet = basebet warning = warning + 1 else checkBet(nextbet) nextbet = basebet warning = 0 multi = 1.5 end end if bets %10 == 0 then log("\n \t Current Gain\t »»» " ..string.format("%.8f", balance - sbal) .." [" ..string.format("%.2f", (balance - sbal)/(sbal/100)) .." %]" ) end if balance > goal then log ("\n\t ☺☻☺☻ Target Reached ☻☺☻☺ ") log("\n \t Final Gain\t »»» " ..string.format("%.8f", balance - sbal) .." [" ..string.format("%.2f", (balance - sbal)/(sbal/100)) .." %]" ) stop() end end -- end dobet
Editor is loading...