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 boon = 0.0001;
- var tens = (boon*10);
- var sevens = (boon*6.9);
- var eights = (boon*7.9);
- var morph = 0;
- var blast = 0;
- var cool = false;
- var matrix = 0;
- var bear = true;
- var plane = 6.9;
- var submarine = 2.9;
- var planetwo = 6.9;
- var submarinetwo = 2.9;
- var smile = 0;
- var smiley = 0;
- var fart = 3;
- var tiffy = ((Math.floor(original/tens))*tens);
- var james = ((Math.floor(original/tens))*tens);
- var snowy = boon;
- var bilance = original;
- var good = (((bilance-original)*1).toFixed(8));
- function dobet(){
- if (!bear){
- matrix = Number(document.getElementById('me').firstChild.lastChild.firstChild.children[5].innerText);
- if (matrix>morph){
- bilance = document.getElementById('pct_balance').value;
- good = (((bilance-original)*1).toFixed(8));
- console.log("profit");
- console.log(good);
- if ((bilance>(tiffy+(snowy*plane)))&&(smile<2)&&(bilance<(tiffy+(snowy*(plane+1))))){
- snowy = snowy*2;
- plane = 4.9
- planetwo = 4.9
- submarine = 4.9
- submarinetwo = 1.9;
- smile = smile+1;
- tiffy = parseFloat(bilance);
- }
- if ((bilance>(tiffy+(snowy*plane)))&&(planetwo>2.1)&&(smile>=2)){
- snowy = snowy*2;
- planetwo = 0.9;
- submarinetwo = 1.9;
- plane = 4.9
- submarine = 4.9
- smile = smile+1;
- tiffy = parseFloat(bilance);
- }
- if ((bilance>(tiffy+(snowy*planetwo)))&&(planetwo<2.1)){
- snowy = boon;
- planetwo = 6.9;
- plane = 6.9;
- submarinetwo = 2.9;
- submarine = 2.9;
- smile = 0;
- smiley = 0;
- tiffy = ((Math.floor(bilance/tens))*tens);
- }
- if ((bilance<(tiffy-(snowy*submarine)))&&(smile<2)&&(bilance>tiffy-(snowy*(submarine+1)))){
- plane = 4.9;
- smile = smile+1;
- submarine = 4.9;
- tiffy = parseFloat(bilance);
- snowy = snowy*2;
- }
- if ((bilance<(tiffy-(snowy*submarine)))&&(submarinetwo>2.1)&&(smile>=2)){
- snowy = snowy*2;
- planetwo = 0.9;
- plane = 4.9
- submarine = 4.9
- smile = smile+1;
- submarinetwo = 1.9;
- tiffy = parseFloat(bilance);
- }
- if ((bilance<(tiffy-(snowy*submarinetwo)))&&(submarinetwo<2.1)){
- snowy = boon;
- planetwo = 6.9;
- plane = 6.9;
- submarinetwo = 2.9;
- submarine = 2.9;
- smiley = 0;
- smile = 0;
- tiffy = ((Math.floor(bilance/tens))*tens);
- }
- if (bilance<boon) {
- console.log("busted");
- return;
- }
- if (bilance>=1000) {
- console.log("winner winner chicken dinner");
- return;
- }
- morph = parseFloat(matrix);
- bear = true;
- }}
- if (bear){
- $('#pct_chance').val(49.5);
- $('#pct_bet').val(((snowy*1).toFixed(8)));
- $('#a_lo').click();
- bear = false;
- }
- setTimeout(() => dobet(), 350)
- }
- dobet();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement