Skip to content

거봉(풀포션)을 안먹어요 ㅠㅠ

조회 수
334
추천 수
0
등록일

풀포션을 먹지 않고 있어요.
채워놓으면 사용은 하네요.

// Type of potion used in each belt column
 // Available types : "hp" = health | "mp" = mana | "rv" = rejuv. Can use other potion types too.
 // Keep equal types at adjacent columns. First HP then MP and then HP again is a bad choice.
 // Keep HP and MP at the beginning of the belt (in case you want to use rejuv and other types).
 // Rejuvenations MUST, I REPEAT MUST be at the end of the belt (last x columns).
 // To use rejuvenations only, put "rv" in all columns.
 //----------------------------------------------------------------------------------------------
 NTConfig_BeltColType[0] = "hp";
 NTConfig_BeltColType[1] = "mp";
 NTConfig_BeltColType[2] = "rv";
 NTConfig_BeltColType[3] = "rv";

여기서 설정하는거 같은데 손 댄곳 없거든요.
어디가 잘못되었나요?
답변 부탁드립니다.