Skip to content

Instantly share code, notes, and snippets.

@takuya-andou
Created February 10, 2016 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takuya-andou/64210f30e2cb83543ac9 to your computer and use it in GitHub Desktop.
Save takuya-andou/64210f30e2cb83543ac9 to your computer and use it in GitHub Desktop.
働クリッカーの最速コード
start();
loop(function() {
for(var i=0;i<10000;i++){
work();
}
purchase(4);
if(cash>1000000){
for(var t=0;t<110;t++){
if(items["programming"] < 100){
purchase(4);
}
if(items["tochi"]<100){
purchase(3);
}
if(items["kabu"]<100){
purchase(2);
}
if(items["affiliate"]<100){
purchase(1);
}
if(items["shikaku"]<100){
purchase(0);
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment