Question2048 hacker experience bot

Posts 12 of 2 · Page 1 of 1
2048 hacker experience bot
I need a bot to help me solve 2048 puzzle... I can find bots but non made just for HE (hacker experience).

Please Consider and help thank you!
Old Post is Old but what the hell maybe someone will find this in the search.
Code:
$.ajax({
type: "POST",
url: 'riddle.php',
dataType: "json",
data: {
func: '2048',
type: 5
},
success: function(data){
if(data.status == 'OK') {
result = $.parseJSON(data.msg);
$('#puzzle-header').html(result[0].header);
$('#puzzle-status').html(result[0].result);
$('#puzzle-next').html(result[0].next);
$('#puzzle-isSolved').attr('value', result
 
[0].isSolved);
$('#puzzle-solve').hide();
}
}
})
Press F12 in your browser to open the debugger, select console and run the above to auto complete.
Posts 12 of 2 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?