Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function bolance(){
- return document.getElementById('pct_balance').value;
- }
- //variables;
- var originalbalance = parseFloat(bolance());
- var belanceone = bolance();
- var basebet = originalbalance/320;
- var floatingbasebet = basebet;
- var target = 5000;
- var belance = originalbalance;
- var belancetwo = originalbalance;
- var tenbase = (basebet*10);
- var sevenbase = (basebet*6.9);
- var under = 2.9;
- var over = 6.9;
- var wager = 0;
- var tween = 20;
- var overbaltimes = 3;
- var oldbalanceone = ((Math.floor(originalbalance/tenbase))*tenbase);
- var oldbalancetwo = ((Math.floor(originalbalance/tenbase))*tenbase);
- //variables end;
- function bogus(){
- belance = bolance();
- if ((belance>(oldbalancetwo+(tenbase*overbaltimes)))&&(belance<(((Math.floor(belance/tenbase))*tenbase)+sevenbase))){
- basebet = (parseFloat(belance)/320);
- tenbase = (basebet*10);
- sevenbase = (basebet*6.9);
- floatingbasebet = basebet;
- overbaltimes = 3;
- under = 2.9;
- over = 6.9;
- tween = 20;
- oldbalanceone = ((Math.floor(belance/tenbase))*tenbase);
- oldbalancetwo = ((Math.floor(belance/tenbase))*tenbase);
- }else if ((belance>(oldbalancetwo+(tenbase*overbaltimes)))&&(belance>(((Math.floor(belance/tenbase))*tenbase)+sevenbase))){
- basebet = (parseFloat(belance)/320);
- tenbase = (basebet*10);
- sevenbase = (basebet*6.9);
- floatingbasebet = basebet*2;
- overbaltimes = 3;
- under = 4.9;
- over = 4.9;
- tween = 20;
- oldbalanceone = ((Math.floor(belance/tenbase))*tenbase);
- oldbalancetwo = ((Math.floor(belance/tenbase))*tenbase);
- }else if (belance>(oldbalanceone+(floatingbasebet*over))){
- floatingbasebet = floatingbasebet*2;
- under = 4.9;
- over = 4.9;
- oldbalanceone = parseFloat(belance);
- }else if (belance<(oldbalanceone-(floatingbasebet*under))){
- floatingbasebet = floatingbasebet*2;
- under = 4.9;
- over = 4.9;
- overbaltimes = 0;
- oldbalanceone = parseFloat(belance);
- }else if (belance<=(floatingbasebet*tween)){
- floatingbasebet = basebet;
- overbaltimes = 0;
- under = 2.9;
- over = 6.9;
- tween = 2;
- oldbalanceone = ((Math.floor(belance/tenbase))*tenbase);
- }
- return floatingbasebet;
- }
- function bets(){
- document.getElementById('pct_chance').value = 49.5;
- document.getElementById('pct_payout').value = 2;
- document.getElementById('pct_bet').value = bogus();
- document.getElementById('pct_profit').value = bogus();
- document.getElementById('a_lo').click();
- }
- function ziggie(){
- belanceone = bolance();
- if (belanceone>=target){
- console.log('omg you won');
- return;
- console.log('omg you won');
- }
- bets();
- setTimeout(() => ziggie(), 8);
- }
- ziggie();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement