전사버전 펫 만렙 변경
CalcExp.java
int levelBefore = pet.getLevel();
int totalExp = (int) (exp * 50 + pet.getExp());
if (totalExp >= ExpTable.getExpByLevel(51)) {
totalExp = ExpTable.getExpByLevel(51) - 1; 기존 펫 맥스 레벨 50
int levelBefore = pet.getLevel();
int totalExp = (int) (exp * 99 + pet.getExp());
if (totalExp >= ExpTable.getExpByLevel(100)) {
totalExp = ExpTable.getExpByLevel(100) - 1; 수정후 펫 맥스 레벨 99

Rebecca 님의 최근 댓글
ㄳ 2024 04.12 ㄳㄳ 2024 04.12 ㄳㄳ 2024 04.12 ㄳㄳ 2024 02.20 ㄳㄳ 2024 01.03