캐시충전시 오후는 그대로 오전은 2배
NPCConversationManager.java
public void gainCash(int type, int num) {
if (Calendar.getInstance().get(Calendar.HOUR_OF_DAY) >= 12 && Calendar.getInstance().get(Calendar.HOUR_OF_DAY) <= 23)
getPlayer().getCashShop().gainCash(type, num);
else
getPlayer().getCashShop().gainCash(type, num * 3/2);
}
if (Calendar.getInstance().get(Calendar.HOUR_OF_DAY) >= 12 && Calendar.getInstance().get(Calendar.HOUR_OF_DAY) <= 23)
getPlayer().getCashShop().gainCash(type, num);
else
getPlayer().getCashShop().gainCash(type, num * 3/2);
}

cksals33 님의 최근 댓글
감사용 2017 04.03