[外掛] cash mod 兌換錯誤

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

版主: 版主管理群

主題已鎖定
richer
星球公民
星球公民
文章: 170
註冊時間: 2004-09-14 12:55
來自: 幻想的世界
聯繫:

[外掛] cash mod 兌換錯誤

文章 richer »

參考連結: http://phpbb-tw.net/phpbb/viewtopic.php?t=30132

假設有貨幣A 貨幣B
兌換比例 A : B = 500 : 1

妳去對換 250 的 A 到 B
結果會A 扣除 250 元 B 增加 1 元
兌換 0.5 的 B 到 A
結果會 B 沒有扣除 A 增加 250 元

修正辦法:
 -----[開啟]-----

代碼: 選擇全部

cash.php
 -----[找到]-----

代碼: 選擇全部

					$converted_amount = (($convert_amount/$c_cur_from->data('cash_exchange'))*$c_cur_to->data('cash_exchange'));
					$exchanger->remove_by_id_array(array($c_cur_from->id() => $convert_amount));
					$exchanger->give_by_id_array(array($c_cur_to->id() => $converted_amount));
 -----[取代為]-----

代碼: 選擇全部

					$convert_amount = floor( $convert_amount * pow(10,$c_cur_from->data('cash_decimals')) ) / pow(10,$c_cur_from->data('cash_decimals'));
					$converted_amount_to = (($convert_amount/$c_cur_from->data('cash_exchange'))*$c_cur_to->data('cash_exchange'));
					$converted_amount_to = floor( $converted_amount_to * pow(10,$c_cur_to->data('cash_decimals')) ) / pow(10,$c_cur_to->data('cash_decimals'));
					$converted_amount_from = (($converted_amount_to/$c_cur_to->data('cash_exchange'))*$c_cur_from->data('cash_exchange'));
					$converted_amount_from = floor( $converted_amount_from * pow(10,$c_cur_from->data('cash_decimals')) ) / pow(10,$c_cur_from->data('cash_decimals'));
					$exchanger->remove_by_id_array(array($c_cur_from->id() => $converted_amount_from));
					$exchanger->give_by_id_array(array($c_cur_to->id() => $converted_amount_to));
 -----[存檔/關閉]-----

*****
我的英文不好\r
並沒去看原作者有沒有比較好處理方法
reesion2
星球普通子民
星球普通子民
文章: 26
註冊時間: 2004-12-22 06:18

文章 reesion2 »

剛剛試了一下,果然可以...無限增加貨幣


看了開文大大的文章才知道是計算的錯誤。

我的方法是,1:100的話,
兌換貨幣就要開小數位數2位
1:1000~就要三位
以此類推...
這樣就不會錯了

但是這樣幣值就換有點難看,出現小數點。
richer
星球公民
星球公民
文章: 170
註冊時間: 2004-09-14 12:55
來自: 幻想的世界
聯繫:

文章 richer »

我的這個方法
應該不會讓幣值變的很難看吧\r

好歹為了這小問題
也花了好多的時間
(幾乎都花在找尋公式上)
DC club 對分散式運算的小小貢獻
Matiz Club
●空間商: ACSite.NET
●服務程式:Linux + LiteSpeed V5.4 + php 5.2.14 + MySQL(i) 5.0.85 + phpBB 3.0.11
主題已鎖定

回到「外掛問題討論」