Last active
December 12, 2015 09:21
-
-
Save Lajt/aa367a3364655972306f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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!'); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey great work, but they changed to code so it will not work anymore.