Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var original = parseFloat(document.getElementById('pct_balance').value);
- var dockiez = original;
- var base = Number((original/1000).toFixed(8));
- var tens = (base*10);
- var sevens = (base*6.9);
- var eights = (base*7.9);
- var tiffy = 0;
- var snowy = base;
- var bilance = original;
- var good = (((bilance-original)*1).toFixed(8));
- function dobet(){
- bilance = document.getElementById('pct_balance').value;
- good = (((bilance-original)*1).toFixed(8));
- console.log("profit");
- console.log(good);
- if ((bilance>(((Math.floor(bilance/tens))*tens)+sevens))&&(bilance<(((Math.floor(bilance/tens))*tens)+eights))&&(bilance!=tiffy)){
- snowy = snowy*2;
- tiffy = parseFloat(bilance);
- }
- if ((snowy>=tens)&&(bilance>dockiez)){
- snowy = base;
- tiffy = 0;
- dockiez = parseFloat(bilance);
- }
- if (((bilance-(snowy*100))<=(base*200))&&(bilance<dockiez)){
- snowy = base;
- tiffy = 0;
- dockiez = parseFloat(bilance);
- }
- if (bilance<base) {
- console.log("busted");
- return;
- }
- if (bilance>=150000) {
- console.log("winner winner chicken dinner");
- return;
- }
- $('#pct_chance').val(49.5);
- $('#pct_bet').val(((snowy*1).toFixed(8)));
- $('#a_lo').click();
- setTimeout(() => dobet(), 350)
- }
- dobet();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement