Kevin's Blog About Us | Contact Us | Search | Tags | Rss
欢迎进入Kevin's Blog,有什么问题或意见请给我反馈,谢谢您的光临。
Search 
首页网站建设旅游摄引活色生香音乐Me时代工作坊
<< 最有效的解酒方法American Pie II《美国派2》原声大碟《Always Getting Over You》 >>

Discuz 帖子数在线人数点击率作弊方法 

字体大小:   

打开index.php,找到


include template('index');

忘记了,现在版本是include template('discuz');


害大家找不到啊,呵呵,就在index.php最下面的代码

在此上面加入
$todayposts=$todayposts+300;(这个是基数加300,可是从0点开始就300不现实,即使不被发现,老实300多点帖子也不好)
所以这样加入
引用:
$todayposts=$todayposts+30;
$todayposts=$todayposts+$todayposts*8;(这样意思就是你每发贴,就是增加8贴.也就是总数为38,如果发两贴就是46贴)
这个作弊比较智能,你论坛总不可能一贴不发吧,所以,这种比较随着时间推移,尤其显得真实.


如果有什么不清楚的,可以PM我.




以下是一位仁兄发过的增加贴数注册会员数.大家可以根据情况引用.



第一种方法:

在index.php中.
找到


$threads = $posts = $todayposts ;
改变为:


$threads = 60000;$posts = 140000;$todayposts = 300;
这样 就在首页增加了60000主题   140000帖子   每日的发贴加了300

这些数字自己设置...


哎呀...官网我问啊问...几天了..没有一个人回答我.问谁都说不知道.
今天我自己找出来了.真的花了好多时间.我知道帖子代码是$post
所以我 就搜索这个...看到有$threads = $posts = $todayposts = $fids = 0;和
$threads = $posts = $todayposts = 0; 我不知道修改了多少次



我也找 include template('discuz'); 依照这个$totalmembers=$totalmembers+3000;
include template('discuz'); 来增加...试了不知道多少次都不可以..后来打算放弃了..再试试的时候..奇迹发生了...终于让我给找到了..谢天谢地..虽然花了好多时间..嘎嘎!!
第二种方法:

discuz.html中:
查找:


{lang total} <span class="smalltxt">$threads</span> {lang index_threads}
改为


{lang total} <span class="smalltxt">20$threads</span> {lang index_threads}



如果你有1000帖子

就变成20000篇帖子
想修改论坛帖子   查找   照以上方法修改


<span class="smalltxt">$posts</span>
想修改论坛今日发贴   查找   照以上方法修改


<span class="smalltxt">$todayposts</span>
想修改论坛人数   查找   照以上方法修改


<span class="smalltxt">$totalmembers</span>



当然 也可以使用$threads   $posts $todayposts $totalmembers
+上多少多少来修改
第三种方法:

在论坛最底部找到:


include template('discuz');
在他的上面加:


$todayposts=$todayposts+500;
这样今日发贴增加了500

如果要增加论坛主题和论坛帖子
同样找:


include template('discuz');
在它的上面加:


$posts=posts+100000;



$threads=$threads+10000;
这样   论坛主题增加了10000   帖子增加了100000




修改首页会员数[游戏][综合版]


推荐第三种玩法的基数增加

第一玩法:
修改:index.php

查找:


$onlineinfo = array($onlinenum, $timestamp);
在其下面添加:


                  
//code by KaijuanStudio
                     $totalmembers = $totalmembers + round(($posts * 0.05) + $onlinenum * 0.1);
            } else {
                     $totalmembers = $totalmembers + round(($posts * 0.05) + $onlineinfo[0] * 0.1);
                     //code end
保存修改,并上传更新文件。

  修改后,会根据你的最高在线人数及发帖数的变化而增加一定比例的会员数。比较难以察觉作弊哦^^
(大家可以根据自己不同的情况更改帖子数所占的比例:0.05,及在线人数所占的比例:0.1,不要改得太夸张就好了,否则也很容易被发现,呵呵~)

第二玩法:
查找:


$onlineinfo = array($onlinenum, $timestamp);
在其下面添加:


  
1:线性步进[code]        //=====游戏=====
       $lie_begindate=mktime (0,0,0,10,17,2005);   //2005-10-17,作假开始的日期,要在今天之前的日期,就是从这天开始累积的
       $lie_personday=10; //步进速度(10人/每天),就是每天都比前一天增加10人
           
$totalmembers=$totalmembers+floor(($mtime[1]-$lie_begindate)/60/60/24)*$lie_personday; //线性步进
//=====游戏=====
第三玩法:
打开index.php,找到


include template('index');
有的版本是 include template('discuz');
在上面添加下面的代码
人数增加


$totalmembers=$totalmembers*2;
作用:这样首页显示的注册人数就是实际注册人数的2倍了
人数取整


$totalmembers=intval($totalmembers*1.5);
作用:这样首页显示的注册人数就是实际注册人数的2倍了,并且取整
人数随着发贴数的增加了增加


$totalmembers=$totalmembers+$posts*2;
作用:这样每增加一个帖子,注册人数就+2
100人为基数增加


$totalmembers=$totalmembers+100;
作用:会员数会在100基础上增加

再给几个其他的变量
$posts 发贴数
$threads 主题数
这些修改方法和注册会员类似:)


现在找到一个BUG 就是使用$threads = $posts = $todayposts ;这个
在分类版块里 变回了原来的数目 而用$todayposts=$todayposts+100
这个 则可以杜绝这个问题   不过 一般我想不会有人点分类版的
除非不小心点错 或者要测试什么 所以 放心使用.



增加在线会员人数,可以用下面的方法

index.php文件查找
$discuz_action = 1;
在下面加入:
//=========================================================================================
//虚拟在线会员+游客 START

$virtualhack = '1';                 // 1=开 0=关

if($virtualhack=='1') {

$mintime = 100;             // 在线的最小值(秒)
$maxtime = 600;             // 在线的最大值(秒)
$dis_time = 610;             // 超过dis_time(秒)删除

$current_user = 10;          // 当前用户少于10,就执行虚拟用户

$min_user = 50;             // 设定想增加多少会员的最小值
$max_user = 200;             // 设定想增加多少会员的最大值

$min_guest = 10;             // 设定想增加多少访客的最小值
$max_guest = 50;             // 设定想增加多少访客的最大值

$start_uid = 3;          //   起始会员UID
$end_uid = 1000;          //   结束会员UID

$action_arr = array("0","0","1","1","2","191","1","2","2","2","31","51"); //设定虚拟用户允许动作

$current = time();
$current_different = $current - $dis_time;

$db -> query("DELETE FROM {$tablepre}sessions WHERE ip1='000' AND lastactivity <='$current_different'");

$query = $db -> query("SELECT COUNT(*) FROM {$tablepre}sessions ");
$onlineuser = $db -> result($query, 0);

if($onlineuser <= $current_user ) {

       $randguest = mt_rand($min_guest, $max_guest); //游客
       $randuser = mt_rand($min_user, $max_user); //会员

       $query = $db -> query("SELECT fid FROM {$tablepre}forums WHERE type = 'forum'");
       while($fidresult = $db -> fetch_array($query)) {
         $fidscope[] = $fidresult['fid'];
       }

//   随机插入在线会员
       for($i = 1; $i <= $randuser; $i++) {

         $randtime = mt_rand($mintime, $maxtime);
         $onlinetime = $current - $randtime;

         $randaction = mt_rand(0, count($action_arr));
         $onlineaction = $action_arr[$randaction];

         $onlinefid = 0;
         if($onlineaction == '2') {
            $randfid = mt_rand(0, count($fidscope));
            $onlinefid = $fidscope[$randfid];
         }
         $online_sid = random(6);
        

         $rand_uid = mt_rand($start_uid, $end_uid);
         $query = $db -> query("SELECT `uid`,`username` FROM {$tablepre}members WHERE `uid` = '$rand_uid'");
         while($row = $db -> fetch_array($query)){
            $db -> query("INSERT INTO {$tablepre}sessions (sid,ip1, groupid, styleid, lastactivity, action, fid, uid, username )
            VALUES ('$online_sid','000' ,'10', '1','$onlinetime','$onlineaction','$onlinefid','$row[uid]','$row[username]')");
         }
       }

//   随机插入在线游客
       for($i = 1; $i <= $randguest; $i++) {
         $randtime = mt_rand($mintime, $maxtime);
         $onlinetime = $current - $randtime;

         $randaction = mt_rand(0,count($action_arr));
         $onlineaction = $action_arr[$randaction];

         $onlinefid = 0;
         if($onlineaction == '2') {
            $randfid = mt_rand(0,count($fidscope));
            $onlinefid = $fidscope[$randfid];
         }
         $online_sid = random(6);
         $db -> query("INSERT INTO {$tablepre}sessions (sid,ip1, groupid, styleid, lastactivity, action, fid )
            VALUES ('$online_sid','000' ,'7', '1','$onlinetime','$onlineaction','$onlinefid')");
       }


}
}

//虚拟在线会员+游客 END
//=========================================================================================

注意修改下条件


另外虚假增加,可以在DISCUZ.HTM里面相应数值前加入或后面1,2什么的数字

点击率作弊:

其中:
views=views+1
可以修改成你需要的,如:
views=views+10


  • 相关文章:

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

日历

«2008·9»

Sun

Mon

Tue

Wen

Thu

Fri

Sat

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

Search

最新留言

最近发表