리마전 에바팩 몬스터 피바 없애는 법좀 알려주세요
컨텐츠 정보
- 786 조회
- 15 댓글
- 0 추천
- 0 비추천
-
목록
본문
보시는 이미지 처럼 몬스터 머리위에 레벨과 hp 수치가 나오는데 이거 없애는 법좀알려주세요 설정 파일 전부 다 찾아봤는데 설정이 없네요
운영자 모드에서 .피바 끔 해도 안되고 도와주세요~
-
등록일 2024.03.27팩뷰어3.0 인코딩 문제댓글 3
-
등록일 2024.03.26
-
등록일 2024.03.20
-
등록일 2024.03.17
관련자료
댓글 15

쭹이님의 댓글의 댓글
int level = template.get_level();
int randomlevel = template.get_randomlevel();
if (randomlevel != 0) {
level = calcRandomVal(randomlevel, level);
diff = randomlevel - level;
if (level <= 0)
level = 1;
}
setLevel(level);
int hp = template.get_hp();
int randomhp = template.get_randomhp();
if (randomhp != 0) {
hp = calcRandomVal(randomhp, hp);
if (hp <= 0)
hp = 1;
}
setMaxHp(hp);
setCurrentHp(hp);
이클립스에서 파일 전체찻기에서 해당 구문 settitle(template.get_level() +" : " + template.get_hp()); 이부분 찾기 햇는데 없고 ":" 또는 " : " 이렇게 검색했는데도 없어서 setCurrentHp(hp) setLevel(level) 이부분을 주석처리 했는데요 제가 원하는 몬스터 위에 뜨는 글이 사라지긴 했는데 몬스터 어택이 안되네요 ~
int randomlevel = template.get_randomlevel();
if (randomlevel != 0) {
level = calcRandomVal(randomlevel, level);
diff = randomlevel - level;
if (level <= 0)
level = 1;
}
setLevel(level);
int hp = template.get_hp();
int randomhp = template.get_randomhp();
if (randomhp != 0) {
hp = calcRandomVal(randomhp, hp);
if (hp <= 0)
hp = 1;
}
setMaxHp(hp);
setCurrentHp(hp);
이클립스에서 파일 전체찻기에서 해당 구문 settitle(template.get_level() +" : " + template.get_hp()); 이부분 찾기 햇는데 없고 ":" 또는 " : " 이렇게 검색했는데도 없어서 setCurrentHp(hp) setLevel(level) 이부분을 주석처리 했는데요 제가 원하는 몬스터 위에 뜨는 글이 사라지긴 했는데 몬스터 어택이 안되네요 ~