作者rootking (jasonking)
看板HOT_Game
標題[兵器] Firefox + greasemonkey 新版
時間Thu Jun 21 20:48:05 2007
我不知道最初原著是誰
不過我改了一點
大家加減用
目前我用了68輪沒事
但是這是半手工的XD
====================開始====================
// ==UserScript==
// @name TRIPLECLICK V2
// @description TAIWAN NO.1
// @include
http://*.clickclickclick.com/*
// ==/UserScript==
window.addEventListener('keydown',function(e){
//按等號'='
if(e.keyCode==61)
{
var time=500;
//先點1下
setTimeout("location.replace('javascript:ck();');",time);
//隔90+秒後改計數(現在是90+十秒內亂數決定)
time+=Math.round(Math.random()*10000+90000);
//點擊數修改成980+10(亂數)
setTimeout("alert((clkcnt=Math.round(Math.random()*10+980)));",time);
//點最後一下更新計數
time+=500;
setTimeout("location.replace('javascript:ck();');",time);
}
},true);
====================到此結束===================
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 219.84.2.233
1F:→ rootking:對了~時間不要再調短~~點擊數999送出是最正常的... 06/21 20:48
2F:→ rootking:請等到點出click here to addto total 之後再按= 06/21 20:49
3F:→ J06u9jy:? 這樣解碼不會有問題嗎? 06/21 20:50
4F:推 twcoco:推一下 我完全看不懂!! 06/21 20:50
5F:→ J06u9jy:除非伺服器已經移除那段檢查? 06/21 20:50
6F:→ J06u9jy:前面至少有七下要人工點或是完全複製那些動作~ 06/21 20:51
7F:推 rootking:請把中間原始碼存成XXXX.js 並灌入firefox 中的滑猴子 06/21 20:51
8F:→ J06u9jy:不然有個驗證碼可能會不過的說 06/21 20:52
9F:→ rootking:這是半手工的外掛XD...要點出加入的選項之後才能按"=" 06/21 20:53
10F:→ rootking:我重寫一篇好了 06/21 20:54