Skip to content

Instantly share code, notes, and snippets.

@Lajt
Last active December 12, 2015 09:21
Show Gist options
  • Save Lajt/aa367a3364655972306f to your computer and use it in GitHub Desktop.
Save Lajt/aa367a3364655972306f to your computer and use it in GitHub Desktop.
(function(){
var check = true;
setInterval(function(){
if ($('#lootdrop-footer').is(':visible') && check){
check = false;
setTimeout(function(){
$('#enter-lootdrop').click();
setTimeout(function(){
console.log('hehe');
$('#lootdrop-title').parent().parent().find('.close').click();
check = true;
}, 80000);
}, 8000);
}
}, 5000);
console.log('GO GO GO!');
}());
@sk4ni
Copy link

sk4ni commented Dec 12, 2015

Hey great work, but they changed to code so it will not work anymore.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment