[問題] 水怪~大富翁

phpBB 2 MOD Support
無論是官方或非官方認證之外掛,安裝與使用問題討論。
(發表文章請按照公告格式發表,違者砍文)

版主: 版主管理群

主題已鎖定
kinwai
星球普通子民
星球普通子民
文章: 6
註冊時間: 2005-07-31 12:53

[問題] 水怪~大富翁

文章 kinwai »

問題外掛:水怪~大富翁
外掛名稱: 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']; }
主題已鎖定

回到「外掛問題討論」