$('#body')['css']('background-image', 'linear-gradient(292deg, rgb(176, 30, 30) 4%,
rgba(0, 0, 0, 0.7)');
$('#main')['css']('min-width', '100%');
$('#header')['css']('display', 'none');
$('#news')['css']('display', 'none');
$('#content')['css']('background', 'none');
$('#gameContainer')['html']('<h2 style="color: #2eab5b; font-size: 16px;"><b
style="font-size: 30px;">EAEINDIAN </b><br> <a style="color: #058bd8;"
href="https://www.youtube.com/channel/_as=subscriber" target="_29"></a></h2>
<center><span id="notification">...</span></center><br> <span style="float:
left;"><input id="basebetAmount" value="0.00000001" style="background: none; text-
align: center; color: #fff; border: 1px solid #fff;" placeholder="basebetAmount"
autocomplete="off"> <input id="overBalance" value="0.00000000" style="background:
none; text-align: center; color: #fff; border: 1px solid #fff;"
placeholder="overBalance" autocomplete="off"> <input id="underBalance"
value="0.00000000" style="background: none; text-align: center; color: #fff;
border: 1px solid #fff;" placeholder="underBalance" autocomplete="off"></span>
<span style="float: right;"><button id="min" onclick="min();" style="border: 1px
solid #fff; padding: 2px;">min</button> <button id="play" style="border: 1px solid
#fff; padding: 2px;">start</button> <button id="reset" onclick="reset();"
style="border: 1px solid #fff; padding: 2px;">reset</button> <button id="showChart"
style="border: 1px solid #fff; padding: 2px;">showChart</button> <button
id="showStatic" style="border: 1px solid #fff; padding:
2px;">showStatic</button></span><br><br> <div id="chart" style="height:
320px;"></div><br> <div id="static">...</div>');
$('#gameContainer')['css']('width', '75%');
$('#gameContainer')['css']('height', '100%');
$('#gameContainer')['css']('color', '#fff');
$('#gameContainer')['css']('font-size', '16px');
$('#gameContainer')['css']('margin', 'auto');
$('#gameContainer')['css']('padding', '0px');
$('#notification')['html']('�����');
$('#static')['css']('text-align', 'center');
$('#controlContainer')['css']('display', 'none');
$('#listContainer')['css']('display', 'none');
$('#frontText')['css']('display', 'none');
$('#footer')['css']('display', 'none');
$('#notification')['html']('�����!!!');
$('#static')['html']('...');
document['getElementById']('chart')['hidden'] = true;
document['getElementById']('static')['hidden'] = true;
randomizeSeed();
console['clear']();
var run = false;
hideChart = true;
hideStatic = true;
basebetAmount = 0;
betAmount = 0;
maxbetAmount = 0;
prediction = 0;
direction = '';
balance = 0;
overBalance = 0;
underBalance = 0;
bet = 0;
win = 0;
lose = 0;
winStreak = 0;
loseStreak = 0;
maxWinStreak = 0;
maxLoseStreak = 0;
wagered = 0;
profitWagered = 0;
profit = 0;
largestProfit = 0;
startTime = new Date();
onTime = 0;
playTime = 0;
playDay = 0;
playHour = 0;
playMinute = 0;
playSecond = 0;
speed = 0;
round = 0;
dsp = [];
chart = '';
color = '';
$['getScript']('https://canvasjs.com/assets/script/canvasjs.min.js')['done']
(function (_0x2baax2, _0x2baax3) {
dps = [{
x: 0,
y: 0
}];
chart = new CanvasJS.Chart('chart', {
theme: 'light2',
zoomEnabled: true,
axisX: {
title: ' ',
includeZero: false
},
axisY: {
title: ' ',
includeZero: false
},
title: {
text: ' ',
fontColor: '#6d49d8',
fontSize: 2e1,
padding: 2e1
},
data: [{
type: 'stepLine',
dataPoints: dps
}]
});
chart['render']()
});
function updateChart(_0x2baax5, _0x2baax6, _0x2baax7) {
dps['push']({
x: _0x2baax5,
y: _0x2baax6,
color: _0x2baax7
});
if (dps[dps['length'] - 2]) {
dps[dps['length'] - 2]['lineColor'] = _0x2baax7
};
if (dps['length'] > 1e3) {
dps['shift']()
};
chart['render']()
}
function min() {
$('#basebetAmount')['val']((0.00000001)['toFixed'](8))
}
$('#play')['on']('click', function () {
run == true ? play(this, 'start', false, false) : play(this, 'stop', true,
true);
basebetAmount = parseFloat($('#basebetAmount')['val']());
overBalance = parseFloat($('#overBalance')['val']());
underBalance = parseFloat($('#underBalance')['val']());
betAmount = basebetAmount;
prediction = Math['floor']((Math['random']() * (49 - 50 + 1)) + 11);
direction = 'under';
$('#basebetAmount')['val'](basebetAmount['toFixed'](8));
$('#overBalance')['val'](overBalance['toFixed'](8));
$('#underBalance')['val'](underBalance['toFixed'](8));
doBet()
});
function play(_0x2baaxa, _0x2baaxb, _0x2baaxc) {
$(_0x2baaxa)['html'](_0x2baaxb);
run = _0x2baaxc;
$('#basebetAmount')['prop']('disabled', _0x2baaxc);
$('#overBalance')['prop']('disabled', _0x2baaxc);
$('#underBalance')['prop']('disabled', _0x2baaxc);
$('#min')['prop']('disabled', _0x2baaxc);
$('#reset')['prop']('disabled', _0x2baaxc)
}
$('#showChart')['on']('click', function () {
hideChart == true ? showChart(this, 'hideChart', false) : showChart(this,
'showChart', true)
});
function showChart(_0x2baaxa, _0x2baaxb, _0x2baaxc) {
$(_0x2baaxa)['html'](_0x2baaxb);
hideChart = _0x2baaxc;
document['getElementById']('chart')['hidden'] = _0x2baaxc
}
$('#showStatic')['on']('click', function () {
hideStatic == true ? showStatic(this, 'hideStatic', false) : showStatic(this,
'showStatic', true)
});
function showStatic(_0x2baaxa, _0x2baaxb, _0x2baaxc) {
$(_0x2baaxa)['html'](_0x2baaxb);
hideStatic = _0x2baaxc;
document['getElementById']('static')['hidden'] = _0x2baaxc
}
function reset() {
randomizeSeed();
basebetAmount = 0;
betAmount = 0;
maxbetAmount = 0;
prediction = 0;
direction = '';
balance = 0;
overBalance = 0;
underBalance = 0;
bet = 0;
win = 0;
lose = 0;
winStreak = 0;
loseStreak = 0;
maxWinStreak = 0;
maxLoseStreak = 0;
wagered = 0;
profitWagered = 0;
profit = 0;
largestProfit = 0;
startTime = new Date();
onTime = 0;
playTime = 0;
playDay = 0;
playHour = 0;
playMinute = 0;
playSecond = 0;
speed = 0;
round = 0;
dsp = [];
chart = '';
color = '';
$['getScript']('https://canvasjs.com/assets/script/canvasjs.min.js')['done']
(function (_0x2baax2, _0x2baax3) {
dps = [{
x: 0,
y: 0
}];
chart = new CanvasJS.Chart('chart', {
theme: 'light2',
zoomEnabled: true,
axisX: {
title: ' ',
includeZero: false
},
axisY: {
title: ' ',
includeZero: false
},
title: {
text: ' ',
fontColor: '#6d49d8',
fontSize: 2e1,
padding: 2e1
},
data: [{
type: 'stepLine',
dataPoints: dps
}]
});
chart['render']()
});
$('#notification')['html']('Bot has reset');
$('#static')['html']('...');
return
}
function doBet() {
if (run === true) {
jQuery['ajax']({
url: 'https://play.' + user['domain'] + '/',
type: 'POST',
dataType: 'html',
timeout: 6e4,
data: {
game: 'dice',
coin: $('#coin')['val'](),
betAmount: betAmount,
prediction: prediction,
direction: direction,
clientSeed: $('#clientSeed')['val'](),
serverSeedHash: $('#serverSeedHash')['html'](),
session: getCookie('SESSION'),
hash: user['hash']
},
success: function (_0x2baax11) {
var _0x2baax11 = JSON['parse'](_0x2baax11);
if (_0x2baax11['result'] === true) {
bet++;
onTime = new Date()['getTime']();
playTime = onTime - startTime;
playDay = Math['floor'](playTime / (1e3 * 6e1 * 6e1 * 24));
playHour = Math['floor']((playTime % (1e3 * 6e1 * 6e1 * 24)) /
(1e3 * 6e1 * 6e1));
playMinute = Math['floor']((playTime % (1e3 * 6e1 * 6e1)) /
(1e3 * 6e1));
playSecond = Math['floor']((playTime % (1e3 * 6e1)) / 1e3);
speed = parseFloat((bet / playTime) * 1e3);
balance = parseFloat(_0x2baax11['balance']);
wagered += parseFloat(betAmount);
profit += parseFloat(_0x2baax11['profit']);
profitWagered = (wagered * 0.1) / 1e2;
randomizeSeed();
if (profit > largestProfit) {
largestProfit = profit
};
if (_0x2baax11['gameResult'] === 'win') {
win++;
winStreak++;
loseStreak = 0;
color = 'green'
} else {
lose++;
loseStreak++;
winStreak = 0;
color = 'black'
};
if (winStreak >= maxWinStreak) {
maxWinStreak = winStreak
};
if (loseStreak >= maxLoseStreak) {
maxLoseStreak = loseStreak
};
if (betAmount >= maxbetAmount) {
maxbetAmount = betAmount
};
$('#serverSeedHash')['html'](_0x2baax11['serverSeedHash']);
$('#static')['html']('<span style="float: left;">time = ' +
playDay + ':' + playHour + ':' + playMinute + ':' + playSecond + '</span> <span
style="float: right;">speed = ' + speed['toFixed'](2) + '</span><br> <span
style="float: left;">balance = ' + balance['toFixed'](8) + '</span> <span
style="float: right;">profit = ' + profit['toFixed'](8) + '</span><br> <span
style="float: left;">wagered = ' + wagered['toFixed'](8) + '</span> <span
style="float: right;">maxbetAmount = ' + maxbetAmount['toFixed'](8) + '</span><br>
<span style="float: left;">winStreak = ' + winStreak + '</span> <span style="float:
right;">loseStreak = ' + loseStreak + '</span><br> <span style="float:
left;">maxWinStreak = ' + maxWinStreak + '</span> <span style="float:
right;">maxLoseStreak = ' + maxLoseStreak + '</span>');
updateChart(bet, profit, color);
if (betAmount >= balance) {
stop();
$('#notification')['html']('You lose');
return
} else {
if (overBalance != 0 && balance >= overBalance) {
stop();
$('#notification')['html']('Over balance');
return
} else {
if (underBalance != 0 && balance <= underBalance) {
stop();
$('#notification')['html']('Under balance');
return
} else {
if (profit >= largestProfit) {
if (bet % 5 === 0) {
prediction = Math['floor']((Math['random']
() * (90 - 50 + 1)) + 50);
direction = 'under'
} else {
prediction = Math['floor']((Math['random']
() * (50 - 40 + 1)) + 40);
direction = 'over'
};
round = 2;
betAmount = basebetAmount
} else {
round++;
if (round % 3 === 0) {
betAmount *= 1.5
}
}
}
}
};
doBet()
} else {
randomizeSeed();
setInterval(doBet(), 1e3)
}
},
error: function (_0x2baax12, _0x2baax13, _0x2baax14) {
randomizeSeed();
setInterval(doBet(), 1e3)
},
timeout: function (_0x2baax12, _0x2baax13, _0x2baax14) {
randomizeSeed();
setInterval(doBet(), 1e3)
},
abetort: function (_0x2baax12, _0x2baax13, _0x2baax14) {
randomizeSeed();
setInterval(doBet(), 1e3)
}
})
} else {
$('#notification')['html']('Bot has stopped');
return
}
}