Created
July 16, 2014 22:39
-
-
Save cosme12/6ec888cb334a3da9e6ab to your computer and use it in GitHub Desktop.
Taringa Bot Tema Favoritos
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
| /* Para agregar temas a favoritos cada 3 segundos empezando desde z y bajando de a 1 repitiendo w veces. | |
| Pegar este codigo en la consola de tu explorador. | |
| IMPORTANTE: asegurate de estar dentro de un tema de alguna comunidad o el script no funcionara */ | |
| var i = 0; | |
| var x = 0; | |
| var z = 8772206; | |
| var w = 10; // cantidad de temas a favoritos (numero alto para que nunca termine) | |
| function myLoop () { | |
| setTimeout(function () { | |
| x = z-i; | |
| Favorite.add('tema', x,$(this)) | |
| i++; | |
| if (i < w) { | |
| myLoop(); | |
| } | |
| }, 3000) // agrega un post a favoritos cada 3000 milisegundos (reducir para mas velocidad) | |
| } | |
| myLoop(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment