每天登錄都有現金獎勵

Home Home
引用 | 編輯 香吉士
2008-08-13 14:58
樓主
推文 x0
【名稱】:
【適用】:
【作者】:londer
【演示】:跟數位男女一樣表情
       └如果進入沒有提示『每日登入獎勵,系統已在你的現金中加了 10 元,請注意查收』代表已經有人比你早登入過!


僅修改兩個文件而已,修改方法如下:
原修改footer.htm改為用discuz.htm
因為模組來說比較修改少

1.開啟 include/common.inc.php 檔
尋找

複製程式
$lastvisit = empty($lastvisit) ? $timestamp - 86400 : $lastvisit;
$timenow = array('time' => gmdate("$dateformat $timeformat", $timestamp + 3600 * $timeoffset),
        'offset' => ($timeoffset >= 0 ? ($timeoffset == 0 ? '' : '+'.$timeoffset) : $timeoffset)); 


下面加入 (將橘色部分改成登入時所要增加的積分代號)

extcredits1=extcredits1+10
複製程式
 if($discuz_user)
{
        if(gmdate("Y-m-d",$timestamp) != gmdate("Y-m-d",$lastvisit))
        {
                $db->query("UPDATE {$tablepre}members SET [color=#ffa500]extcredits1[/color]=[color=#ffa500]extcredits1[/color]+10 , lastvisit=$timestamp WHERE username='$discuz_user'");
                $IsAward=true;
        }
}


2.開啟 templates 目錄下您所使用風格目錄的 discuz.htm 檔

尋找

複製程式
{template footer} 

上面加入

複製程式
<!--{if $IsAward}--><script language=JavaScript>alert('每日登入獎勵,系統已在你的現金中加了 10 元,請注意查收');
</script><!--{/if}--> 


獻花 x0
引用 | 編輯 asdlkj123852
2012-04-26 13:36
1樓
  
我正好缺這個插件感謝大大

獻花 x0