開啟: \src\l1j\server\server\model\Instance\L1PcInstance.java
找到:
addBaseMaxHp(randomHp);
addBaseMaxMp(randomMp);
在後面加入:
if (Config.FullHPMP){
setCurrentHp(getMaxHp());
setCurrentMp(getMaxMp());
}
關檔
開啟: \src\l1j\server\Config.java
找到:
public static int LV99_EXP;
在之後加入:
public static boolean MaxHPMP; //TODO 升級血魔滿
找到:
// rates.properties
try {
Properties rateSettings = new Properties();
InputStream is = new FileInputStream(new File(RATES_CONFIG_FILE));
rateSettings.load(is);
is.close();
在之後加入:
MaxHPMP = Boolean.parseBoolean(RateSettings.getProperty(
"FullHPMP", "false"));
找到:
// rates.properties
else if (pName.equalsIgnoreCase("RateXp")) {
RATE_XP = Double.parseDouble(pValue);
在之前加入:
else if (pName.equalsIgnoreCase("FullHPMP")) {
MaxHPMP = Boolean.valueOf(pValue);
}
關檔
開啟: \config\rates.properties
加入:
#──────────────────
# 升級血魔滿
FullHPMP = True
關檔
沒有留言:
張貼留言