Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var oldestbal = parseFloat(document.getElementById('pct_balance').value);
- var base = (oldestbal/100);
- var dodgey = (oldestbal/10);
- var bellance = oldestbal;
- var botplus = base;
- var trget = 200;
- var tens = (base*10);
- var sevens = (base*6.9);
- var eights = (base*7.1)
- var dude = (base*40);
- var floatingbal = ((Math.floor(oldestbal/tens))*tens);
- var plane = 6.9;
- var submarine = 2.9;
- var betnext = ((botplus*1).toFixed(8));
- var james = oldestbal;
- function get(){
- console.clear();
- bellance = document.getElementById('pct_balance').value;
- if (bellance>(floatingbal+(botplus*plane))) {
- botplus = botplus*2;
- submarine = 4.9;
- plane = 4.9;
- floatingbal = parseFloat(bellance);
- }
- if (bellance<(floatingbal-(botplus*submarine))) {
- botplus = botplus*2;
- submarine = 4.9;
- plane = 4.9;
- floatingbal = parseFloat(bellance);
- }
- if (((botplus*3)>=dodgey)&&(bellance>=james)&&(bellance<(((Math.floor(oldestbal/tens))*tens)+sevens))){
- botplus = base;
- submarine = 2.9;
- plane = 6.9;
- floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
- james = parseFloat(bellance);
- }
- if (((botplus*3)>=(bellance))&&(bellance<james)&&(bellance<(((Math.floor(oldestbal/tens))*tens)+sevens))){
- botplus = base
- submarine = 2.9;
- plane = 6.9;
- floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
- james = parseFloat(bellance);
- }
- if (bellance>=trget){
- console.log("winner winner");
- return;
- }
- betnext = ((botplus*1).toFixed(8));
- $('#pct_chance').val(49.5);
- $('#pct_bet').val(betnext);
- $('#a_hi').click();
- setTimeout(() => get(), 100);
- }
- get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement