1 頁 (共 1 頁)

[修正]水怪RPG Hospital

發表於 : 2003-11-01 22:22
StickyKid
之前有網友反映到\r
醫院程式如果錢不夠的話\r
還是可以回復\r
所以修正了一下
煩請各位開啟rpg/hospital.php檔案

搜尋
else if ($hp > $profiledata['rpg_max_hp'] - $profiledata['rpg_cur_hp'])
{
$rpg_hospital_result = "你....這樣輸入是不行的喔....明明沒有那麼多的hp";
}



在下面加入\r
else if ($hp > $profiledata['user_points'])
{
$rpg_hospital_result = "咧....你錢明明沒有那麼多";
}[color]


在搜尋
else if ($mp > $profiledata['rpg_max_mp'] - $profiledata['rpg_cur_mp'])
{
$rpg_hospital_result = "你....這樣輸入是不行的喔....明明沒有那麼多的mp";
}


下面加入\r
else if ($mp > $profiledata['user_points'])
{
$rpg_hospital_result = "咧....你錢明明沒有那麼多";
}


使用OOHOO版本的虛擬貨幣請把所有user_points字串改成user_money