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/1000); //dont change;
- var bellance = oldestbal;
- var botplus = base;
- var trget = parseFloat(oldestbal);
- var tens = (base*10);
- var sevens = (base*3.9);
- var eights = (base*7.1)
- var dude = (base*40);
- var floatingbal = oldestbal;
- var plane = 6.9;
- var submarine = 2.9;
- var mother = (((Math.ceil(oldestbal/tens))*tens)+dude)
- var father = oldestbal;
- var james = (((Math.ceil(oldestbal/tens))*tens)-dude);
- var fran = oldestbal;
- var betnext = ((botplus*1).toFixed(8));
- function get(){
- console.clear();
- bellance = document.getElementById('pct_balance').value;
- var good = ((bellance-oldestbal).toFixed(8));
- console.log("profit");
- console.log(good);
- if (bellance>(floatingbal+(botplus*plane))){
- plane = 4.9;
- submarine = 4.9;
- botplus = botplus*2;
- floatingbal = parseFloat(bellance);
- }
- if (bellance<(floatingbal-(botplus*submarine))){
- plane = 4.9;
- submarine = 4.9;
- botplus = botplus*2;
- floatingbal = parseFloat(bellance);
- }
- if ((((bellance-james)-(botplus*3))<=0)&&(bellance<father)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
- botplus = base;
- plane = 6.9;
- submarine = 2.9;
- father = parseFloat(bellance);
- mother = (((Math.floor((parseFloat(bellance))/tens))*tens)+dude);
- floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
- james = (((Math.floor((parseFloat(bellance))/tens))*tens)-dude);
- }
- if ((((bellance-mother)+(botplus*3))>=0)&&(bellance>=father)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
- botplus = base;
- plane = 6.9;
- submarine = 2.9;
- father = parseFloat(bellance);
- mother = (((Math.floor((parseFloat(bellance))/tens))*tens)+dude);
- floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
- james = (((Math.floor((parseFloat(bellance))/tens))*tens)-dude);
- }
- if ((botplus>=(base*2))&&(bellance>=fran)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
- botplus = base;
- plane = 6.9;
- submarine = 2.9;
- father = parseFloat(bellance);
- mother = (((Math.floor((parseFloat(bellance))/tens))*tens)+dude);
- floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
- james = (((Math.floor((parseFloat(bellance))/tens))*tens)-dude);
- fran = parseFloat(bellance);
- }
- if (bellance>(trget*24)){
- 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