其實水怪RPG已經在小弟我討論版行了有久
一向都沒有什麼大問題,不過近日大部分之用戶 Level 要去到 150 ...
150就已經頂點,有沒有得Set 高一些 ?
而第二個問題就係在起步點大新用戶行了一步 Block 了附近的路\r
好多用戶被 Block 在中心,走不出來......
有沒有方法去 Fix ?
[問題] 水怪RPG中 2 個問題
版主: 版主管理群
-
Ricky Zero
- 星球公民

- 文章: 60
- 註冊時間: 2003-08-25 15:53
- 來自: 哈哈哈王國
- 聯繫:
-
Ricky Zero
- 星球公民

- 文章: 60
- 註冊時間: 2003-08-25 15:53
- 來自: 哈哈哈王國
- 聯繫:
打開function_eol.php找到\r
在它的下方加入\r
請記得加入上方的語法後
下方的語法會變成是\r
這是我的作法
不過那行訊息不一定會跑出來>"<
代碼: 選擇全部
// 升級
LevelUp($uid, true);
}
}
$sql = "update phpbb_users set rpg_cur_hp = rpg_max_hp, rpg_eol_data = concat('0', substring(rpg_eol_data, 2, 2), '000000086'),
rpg_cur_mp = rpg_max_mp where rpg_cur_hp <= 0";
$db->sql_query($sql);代碼: 選擇全部
//lv10以下玩家回原點
$sql = "update phpbb_users set rpg_eol_data = NULL where rpg_level < 10";
$db->sql_query($sql);
$ret_msg .= "等級低於LV10的獵人將被貪婪on-line送回出發的地方";下方的語法會變成是\r
代碼: 選擇全部
}
\n
unset($sql);
unset($row);
unset($row2);
unset($result);
return $ret_msg;
}
function AttackPercent($self, $target)不過那行訊息不一定會跑出來>"<
-
Ricky Zero
- 星球公民

- 文章: 60
- 註冊時間: 2003-08-25 15:53
- 來自: 哈哈哈王國
- 聯繫:
一樣是改function_eol.php
找到路人那二段中的
在裏面加入and map_x > 3
會變成
其他段自己找吧^^y
改完後存檔後,進phpmyadmin中,重load一次npc的sql
再進一次eol就會出來了
找到路人那二段中的
代碼: 選擇全部
$sql = "select count(*) as map_count from phpbb_rpg_eol where map_id = 0 and can_not_pass = 0 and map_x < 44 and map_y > 10";會變成
代碼: 選擇全部
$sql = "select count(*) as map_count from phpbb_rpg_eol where map_id = 0 and can_not_pass = 0 and map_x > 3 and map_x < 44 and map_y > 10";改完後存檔後,進phpmyadmin中,重load一次npc的sql
再進一次eol就會出來了
再後一個問題,Sql 如何再一次 Npc 的 Sql ?Ricky Zero 寫:一樣是改function_eol.php
找到路人那二段中的在裏面加入and map_x > 3代碼: 選擇全部
$sql = "select count(*) as map_count from phpbb_rpg_eol where map_id = 0 and can_not_pass = 0 and map_x < 44 and map_y > 10";
會變成其他段自己找吧^^y代碼: 選擇全部
$sql = "select count(*) as map_count from phpbb_rpg_eol where map_id = 0 and can_not_pass = 0 and map_x > 3 and map_x < 44 and map_y > 10";
改完後存檔後,進phpmyadmin中,重load一次npc的sql
再進一次eol就會出來了
可否題共語句 ^^
