1 頁 (共 1 頁)

發表於 : 2003-05-29 19:32
kenaj
不是才剛說嗎??
馬上就改出來了
河風老大真是勵害阿

發表於 : 2003-05-29 20:57
動機不明

其實厲害的是 ETERNAL
我不過修改他的程式罷了 :P

發表於 : 2003-05-29 21:36
william91
這個外掛可能有bug...因為我亂按也說我存款成功~

無論我輸入多少, 每次只能加入20元

發表於 : 2003-05-30 00:24
動機不明
我不曉得....
因為沒在用虛擬貨幣...

我只有借用銀行的功能來轉換積分 to 貨幣 而已....

(其他人也有這個問題嗎?)

發表於 : 2003-07-17 15:54
aack
我剛才試過了,
也有william91遇到的問題,
不論我輸入多少錢,系統都會告訴我成功,
如果超過20元的話,不論我身上是否有足夠的錢,
存提款都會失敗(但是畫面上是寫成功)
會不是是判斷式出了問題呢?
另外,
可否稍微修改一下程式,
改成不只積分可以兌換成錢幣,錢幣也可以兌換成積分(二種方式可以設定不同的兌率)

發表於 : 2003-08-25 01:39
brien
我也是這樣~每次存超過10元都說會存款成功~但實際存進去只有10元 提存跟轉帳也都一樣還有我沒有用積分系統~可以把積分兌幣那個畫面刪掉嗎?
而且後台也不能控制銀行的存款

發表於 : 2003-08-25 10:47
H.T.Demon
brien 寫:我也是這樣~每次存超過10元都說會存款成功~但實際存進去只有10元 提存跟轉帳也都一樣還有我沒有用積分系統~可以把積分兌幣那個畫面刪掉嗎?
而且後台也不能控制銀行的存款
後台不能控制 :-o 那是沒匯入SQL才會這樣吧.... 因為不能更新的原因
所以就算按下送出 回來還是一樣的東西

發表於 : 2003-08-25 14:42
brien
沒匯入SQL?
是這一段嗎?

打開 bank.php
尋找
代碼:

$sql="update ". USERS_TABLE." set user_bank= ".$userdata["user_bank"]." where user_id=".$userdata['user_id']."";



替換成
代碼:

$sql="update ". USERS_TABLE." set user_bank=user_bank+(user_bank*".$board_config['bankfees'].") ";



這段我有改了丫 還是不行

發表於 : 2003-08-25 14:56
brien
我的後台功能只有這些

銀行名稱
利率 %
利息結算週期
利息最後一次結算時間 2003-08-25 00:21:00
代幣兌換比例 1 : (Points : Money)
這樣正常嗎??

不能修改某位會員的銀行存款

發表於 : 2003-08-25 16:11
H.T.Demon
brien 寫:沒匯入SQL?
是這一段嗎?

打開 bank.php
尋找
代碼:

$sql="update ". USERS_TABLE." set user_bank= ".$userdata["user_bank"]." where user_id=".$userdata['user_id']."";



替換成
代碼:

$sql="update ". USERS_TABLE." set user_bank=user_bank+(user_bank*".$board_config['bankfees'].") ";



這段我有改了丫 還是不行
那不叫做匯入SQL ...

如果有缺bank_install這裡有↓
點我下載

發表於 : 2003-08-25 23:24
brien
我放在phpbb2/bnak_install下執行出現要登入的畫面~我登入後出現\r
Running :: insert into phpbb_config values ('bankfees', '0.01') -> FAILED ---> Duplicate entry 'bankfees' for key 1

Running :: insert into phpbb_config values ('bankpayouttime', '1061824976') -> FAILED ---> Duplicate entry 'bankpayouttime' for key 1

Running :: insert into phpbb_config values ('bankname', 'Forums Bank') -> FAILED ---> Duplicate entry 'bankname' for key 1

Running :: insert into phpbb_config values ('bankpayset', '1') -> FAILED ---> Duplicate entry 'bankpayset' for key 1

Running :: insert into phpbb_config values ('bankconvert', '100') -> FAILED ---> Duplicate entry 'bankconvert' for key 1

Running :: ALTER TABLE phpbb_users ADD `user_bank` INT(11) UNSIGNED DEFAULT '0' NOT NULL -> FAILED ---> Duplicate column name 'user_bank'


Finished!
Some of the querys have failed, contact me so I can fix the errors.


這是什麼錯誤丫??
有要去phpmyadmin中的sql執行什麼嗎?

發表於 : 2003-08-29 16:32
brien
brien 寫:我放在phpbb2/bnak_install下執行出現要登入的畫面~我登入後出現\r
Running :: insert into phpbb_config values ('bankfees', '0.01') -> FAILED ---> Duplicate entry 'bankfees' for key 1

Running :: insert into phpbb_config values ('bankpayouttime', '1061824976') -> FAILED ---> Duplicate entry 'bankpayouttime' for key 1

Running :: insert into phpbb_config values ('bankname', 'Forums Bank') -> FAILED ---> Duplicate entry 'bankname' for key 1

Running :: insert into phpbb_config values ('bankpayset', '1') -> FAILED ---> Duplicate entry 'bankpayset' for key 1

Running :: insert into phpbb_config values ('bankconvert', '100') -> FAILED ---> Duplicate entry 'bankconvert' for key 1

Running :: ALTER TABLE phpbb_users ADD `user_bank` INT(11) UNSIGNED DEFAULT '0' NOT NULL -> FAILED ---> Duplicate column name 'user_bank'


Finished!
Some of the querys have failed, contact me so I can fix the errors.


這是什麼錯誤丫??
有要去phpmyadmin中的sql執行什麼嗎?

另一個bank_install出現的訊息\r

Running :: create table `phpbb_bank` (`id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `name` CHAR (50) NOT NULL, `holding` INT (20) UNSIGNED DEFAULT '0', `totalwithdrew` INT (20) UNSIGNED DEFAULT '0', `totaldeposit` INT (20) UNSIGNED DEFAULT '0', `opentime` INT (20) UNSIGNED NOT NULL, `fees` CHAR (32) NOT NULL DEFAULT 'on', PRIMARY KEY(`id`), INDEX(`name`)) -> FAILED ---> Table 'phpbb_bank' already exists

Running :: insert into phpbb_config (config_name, config_value) values ('bankinterest', '2') -> FAILED ---> Duplicate entry 'bankinterest' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('bankfees', '2') -> FAILED ---> Duplicate entry 'bankfees' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('bankpayouttime', '0') -> FAILED ---> Duplicate entry 'bankpayouttime' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('bankname', 'Forums Bank') -> FAILED ---> Duplicate entry 'bankname' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('bankopened', 'off') -> FAILED ---> Duplicate entry 'bankopened' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('bankholdings', '0') -> FAILED ---> Duplicate entry 'bankholdings' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('banktotaldeposits', '0') -> FAILED ---> Duplicate entry 'banktotaldeposits' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('banktotalwithdrew', '0') -> FAILED ---> Duplicate entry 'banktotalwithdrew' for key 1

Running :: insert into phpbb_config (config_name, config_value) values ('banklastrestocked', '0') -> FAILED ---> Duplicate entry 'banklastrestocked' for key 1


Finished!
Some of the querys have failed, contact me so I can fix the errors.


為什麼二個bank_install都出現錯誤??
還有要修改什麼嗎??

我有裝的mod
閃光會員名稱\r
HP_MP_EXP
TOP 5
虛擬貨幣 by oO]-[Oo
付費觀看
主題類型

發表於 : 2004-06-22 00:13
carloserei
我也是ㄟ