Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var belance = $('#pct_balance').val();
- var basebet = belance/1024;
- var floatingpoint = basebet;
- var terget = 80000;
- var folage = belance;
- var bilance = belance;
- var bolance = belance;
- var elderbel = belance;
- var limitez = false;
- function go(){
- bilance = $('#pct_balance').val();
- if (bilance>(folage+(floatingpoint*6.9))){
- floatingpoint = floatingpoint*2;
- folage = parseFloat(bilance);
- }
- if (bilance<(folage-(floatingpoint*6.9))){
- floatingpoint = floatingpoint*2;
- limitez = true;
- folage = parseFloat(bilance);
- }
- if ((bilance>(elderbel+tenz))||((bilance>elderbel)&&(limitez))){
- floatingpoint = basebet;
- limitez = false;
- elderbel = parseFloat(bilance);
- folage = parseFloat(bilance);
- }
- if (bilance>=terget) {
- console.log("chicken dinner");
- return;
- }
- var giod = (((parseFloat(floatingpoint))*1).toFixed(8));
- var good = Number(giod);
- $('#pct_chance').val(49.5);
- $('#pct_bet').val(good);
- $('#pct_profit').val(good);
- $('#a_lo')[0].click();
- console.log("snowybot active");
- setTimeout(() => go(), 1);
- }
- go();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement