Skip to content

Instantly share code, notes, and snippets.

@uchiiii
Created September 2, 2019 08:40
Show Gist options
  • Save uchiiii/59753911a290e4ef6fab3fd55ef7337d to your computer and use it in GitHub Desktop.
Save uchiiii/59753911a290e4ef6fab3fd55ef7337d to your computer and use it in GitHub Desktop.
Acure 輪投げゲームのクリア用コード
timer = setInterval(function(){
arrow = document.getElementsByClassName('play__cursor')[1];
if(window.getComputedStyle(arrow, null).getPropertyValue('display') == "none"){
document.getElementsByClassName('play__attack')[0].click();
clearInterval(timer);
}
}, 190);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment