Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var originalbalance = $('#pct_balance')[0].value;
- var basebet = (originalbalance/3200);
- var base = basebet;
- var floatingbasebet = basebet;
- var target = 200000;
- var belance = originalbalance;
- var zog = originalbalance;
- var zip = originalbalance;
- var nope = 5;
- var xol = 1;
- function getR(minz, maxz) {
- minz = Math.ceil(minz);
- maxz = Math.floor(maxz);
- return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
- }
- function dobet(){
- belance = $('#pct_balance')[0].value;
- if ((xol==3)&&(belance<=(zog-(floatingbasebet*nope)))){
- floatingbasebet = floatingbasebet*2
- nope = 4.9;
- xol = parseFloat(getR(1,3));
- zog = parseFloat(belance);
- }
- if ((xol==2)&&(belance<=(zog-(floatingbasebet*nope)))){
- floatingbasebet = floatingbasebet*2
- nope = 2.9;
- xol = parseFloat(getR(1,3));
- zog = parseFloat(belance);
- }
- if ((xol==1)&&(belance<=(zog-(floatingbasebet*nope)))){
- floatingbasebet = floatingbasebet*2
- nope = 6.9;
- xol = parseFloat(getR(1,3));
- zog = parseFloat(belance);
- }
- if ((xol==3)&&(belance>=(zog+(floatingbasebet*nope)))){
- floatingbasebet = floatingbasebet*2
- nope = 6.9;
- xol = parseFloat(getR(1,3));
- zog = parseFloat(belance);
- }
- if ((xol==2)&&(belance>=(zog+(floatingbasebet*nope)))){
- floatingbasebet = floatingbasebet*2
- nope = 4.9;
- xol = parseFloat(getR(1,3));
- zog = parseFloat(belance);
- }
- if ((xol==1)&&(belance>=(zog+(floatingbasebet*nope)))){
- floatingbasebet = floatingbasebet*2
- nope = 2.9;
- xol = parseFloat(getR(1,3));
- zog = parseFloat(belance);
- }
- if (belance>=zip){
- floatingbasebet = basebet;
- zog = parseFloat(belance);
- zip = parseFloat(belance);
- }
- if (belance>=target) {
- console.log("snowybot rocks");
- return;
- }
- $('#pct_chance')[0].value = 49.5;
- $('#pct_bet')[0].value = ((floatingbasebet*1).toFixed(8));
- $('#pct_profit')[0].value = ((floatingbasebet*1).toFixed(8));
- $("#a_lo")[0].click();
- setTimeout(() => dobet(), 1);
- }
- dobet();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement