Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var crazy = parseFloat(document.getElementById('pct_balance').value);
- var divide = 10;
- var basebet = (((((crazy/2)/2)/2)/2)/divide);
- var james = basebet;
- var ten = (basebet*10);
- var oldDigit = ((Math.floor(crazy/ten))*ten);
- var oldDig = ((Math.floor(crazy/ten))*ten);
- 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<(oldDig-(james*noddy))) {
- james = james*2;
- nobby = 4.9;
- noddy = 4.9;
- oldDig = parseFloat(balanceStr);
- oldDigit = parseFloat(balanceStr);
- }
- if ((james*4)>=(crazy/divide)) {
- james = basebet;
- nobby = 6.9;
- noddy = 2.9;
- oldDigit = ((Math.floor((parseFloat(balanceStr))/ten))*ten);
- oldDig = ((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