人人网开心农场自动点击器 happyfarm auto click

By xz Last update Nov 7, 2009 — Installed 324 times.

There are 2 previous versions of this script.

// ==UserScript==
// @name           人人网开心农场自动点击器 happyfarm_auto_click
// @namespace      happyfarm_auto_click
// @description    适用于人人网手机版(m.renren.com),在进入开心农场页面时自动收获/铲除枯萎作物/浇水/除草/除虫
// @include        http://mapps.renren.com/happyfarm*
// ==/UserScript==

// 增加随机延时,200~700ms
setTimeout(checkLinks,Math.random()*500+200);

function checkLinks() {
	for(i=0;i<document.links.length;i++) {
		var link=document.links[i].href;
		if(link.indexOf("act=harvest")!=-1 || link.indexOf("act=scarify")!=-1 || link.indexOf("act=goodAction")!=-1) {
			window.location=link;
			return;
		}
	}
}