Additional Info
|
Ok, so from another topic, I realized we could make a script (even a GreaseMonkey script) to automate some things for us. So I'd like to present an Auto Login (if your credentials are stored by the browser [i.e. Username/Pass]), and an Auto Rater script. You just have to visit the game page to automatically rate it.
Code to just click the "Sign In" Button on any kongregate page. (Include: http://*.kongregate.com/*). You may download/install from userscripts.org. Code: [Select] if( document.getElementById("welcome_box_sign_in_button") ) Code to autorate (after 3 seconds, you can change the 3000 milliseconds in the code if you wish to change this) a game, sound, or art for a page you visit. If a rating exists, it doesn't do anything. If you wish to rate on top of it, you can rate it normally by clicking. Recommended to download/install the script from userscripts.org. Code: [Select] if( location.pathname.match( //w+// )[0] == "/games/" ) setTimeout('if( document.getElementById("below_game_star_ratings_block").childNodes[1].childNodes[1].firstChild.nodeValue=="Currently 0.0/5 Stars.") document.getElementById("below_game_star_ratings_block").childNodes[1].childNodes[Math.floor(Math.random()*5)*2+3].firstChild.onclick();', 3000 ); Edit: I finished working on a counter which uses cookies and expires them at Midnight US Pacific Time. There may be a bug depending on how daylight savings may affect it, but other than that, I don't think so. Usage: Goto your points page, and go through the first few pages until you're finished with today's points. It will automatically count and post the total games rated for which you have received points for. It will avoid duplicates and only work on your points page. (Include: http://*.kongregate.com/accounts/*/rewards*). Recommended to download/install from userscripts.org. Code: [Select] var ratings=0; Edit2: I updated the auto-rater to include art and sounds. They're found under the Community->Collabs section of Kongregate. Hopefully this will help out everyone. ^^ Enjoy! |
Additional Info
|
Well.. I've tested it in Firefox.. it should work in Opera, Chrome, and IE.. please let me know if it doesn't.
|
Additional Info
|
Thanks, but there's already a Kong Auto Rater script for Greasemonkey...did you not know?
http://userscripts.org/scripts/show/31818 However, thank you for making this one not overwrite our previous ratings (broken image removed) good job (broken image removed) +1 karma for you (broken image removed) Tookie |
Additional Info
|
Quote from: "tookie" Thanks, but there's already a Kong Auto Rater script for Greasemonkey...did you not know?Haha.. I guess I didn't bother to check... I guess that's a good thing, because mine is still much more simpler, and causes no harm. ^^ |
Additional Info
|
Ok, for the FF n00bz, can you put this in simple steps? All the coding words confound me :?
|
Additional Info
|
1) Download GreaseMonkey for Firefox (GreaseMetal for Chrome, or Greasekit for Opera/Safari) and install, if you haven't already.
2) Install one, or all three scripts from Userscripts.org by going to the link and installing it through the extension. 3) Enjoy the site. :geek: |