Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var crazy = parseFloat(document.getElementById('pct_balance').value);
- var basebet = (crazy/1000);
- var james = basebet;
- var ten = (basebet*10);
- var krux = (basebet*6.9);
- var oldDigit = ((Math.floor(crazy/ten))*ten);
- var oldDig = parseFloat(document.getElementById('pct_balance').value);
- var nobby = 6.9;
- var noddy = 2.9;
- function xig() {
- var balanceStr = document.getElementById('pct_balance').value;
- if (balanceStr>(oldDigit+(james*nobby))) {
- james = james*2;
- nobby = 4.9;
- noddy = 4.9;
- oldDigit = parseFloat(balanceStr);
- }
- if (balanceStr<(oldDigit-(james*noddy))) {
- james = james*2;
- nobby = 4.9;
- noddy = 4.9;
- oldDigit = parseFloat(balanceStr);
- }
- if (((james*40)>=crazy)&&(balanceStr<((Math.floor((parseFloat(balanceStr))/ten))*ten)+krux)&&(balanceStr>=oldDig)) {
- james = basebet;
- nobby = 6.9;
- noddy = 2.9;
- oldDigit = ((Math.floor((parseFloat(balanceStr))/ten))*ten);
- oldDig = parseFloat(balanceStr);
- }
- if (((james*3)>=balanceStr)&&(balanceStr<crazy)) {
- james = basebet;
- nobby = 6.9;
- noddy = 2.9;
- oldDigit = ((Math.floor((parseFloat(balanceStr))/ten))*ten);
- }
- return james;
- }
- function stroll(){
- document.getElementById('pct_chance').value = 49.5;
- document.getElementById('pct_payout').value = 2;
- document.getElementById('pct_bet').value = (((xig())*1).toFixed(8));
- document.getElementById('pct_profit').value = (((xig())*1).toFixed(8));
- document.getElementById('a_lo').click();
- setTimeout(() => stroll(), 1000);
- }
- stroll();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement