外掛名稱: WaterMonster RPG Full Version - 水怪 RPG 完整安裝版
http://phpbb-tw.net/phpbb/viewtopic.php?t=20786
狀況描述:
爬文很久也沒發現以下問題的解決方法,望各大大幫忙。
在水怪~大富翁遊戲內發現若踏在其他地主的土地需付款時,只會扣除款項而沒有增加地主的款項。在richer.php內查看也沒有相應的sql!
richer.php
代碼: 選擇全部
if (($row['house_level'] >= 0) && ($profiledata['user_money'] > 0)) // 除了機會、命運以外的乞丐
{
if ( $now_y < 20)
{
$sql = 'select count(*) as no_money from phpbb_users where user_money + user_bank <= 1000 and mod(rpg_richer_pos, 1000000) = ' . ($now_x * 1000 + $now_y) . ' and user_id <> ' . $profiledata['user_id'];
$per_give = rand(1, 100) * 100;
$sql2 = 'update phpbb_users set user_money = user_money + ' . $per_give . ' where user_money + user_bank <= 1000 and mod(rpg_richer_pos, 1000000) = ' . ($now_x * 1000 + $now_y) . ' and user_id <> ' . $profiledata['user_id']; }
else if ( $now_y < 30)
{
$sql = 'select count(*) as no_money from phpbb_users where user_money + user_bank <= 10000 and mod(rpg_richer_pos, 1000000) = ' . ($now_x * 1000 + $now_y) . ' and user_id <> ' . $profiledata['user_id'];
$per_give = rand(1, 100) * 1000;
$sql2 = 'update phpbb_users set user_money = user_money + ' . $per_give . ' where user_money + user_bank <= 10000 and mod(rpg_richer_pos, 1000000) = ' . ($now_x * 1000 + $now_y) . ' and user_id <> ' . $profiledata['user_id']; }
else
{
$sql = 'select count(*) as no_money from phpbb_users where user_money + user_bank <= 100000 and mod(rpg_richer_pos, 1000000) = ' . ($now_x * 1000 + $now_y) . ' and user_id <> ' . $profiledata['user_id'];
$per_give = rand(1, 100) * 10000;
$sql2 = 'update phpbb_users set user_money = user_money + ' . $per_give . ' where user_money + user_bank <= 100000 and mod(rpg_richer_pos, 1000000) = ' . ($now_x * 1000 + $now_y) . ' and user_id <> ' . $profiledata['user_id']; }