show code js

2010年9月24日 星期五

修正森林之母非妖精對話

開啟: \src\l1j\server\server\model\Instance\L1MerchantInstance.java
找到:
} else if (npcid == 70844) { // 森とエルフの母
if (player.isElf()) { // エルフ
if (player.getLevel() >= 30) {
if (quest.isEnd(L1Quest.QUEST_LEVEL15)) { // Lv15終了済み
int lv30_step = quest
.get_step(L1Quest.QUEST_LEVEL30);
if (lv30_step == L1Quest.QUEST_END) { // 終了済み
htmlid = "motherEE3";
} else if (lv30_step >= 1) { // 同意済み
htmlid = "motherEE2";
} else if (lv30_step <= 0) { // 未同意
htmlid = "motherEE1";
}
} else { // Lv15未終了
htmlid = "mothere1";
}
} else { // Lv30未満
htmlid = "mothere1";
}
}

在之後加入:
// desc1
else
{
htmlid = "motherm1";
}
// desc1

關檔

沒有留言:

張貼留言