발헤임 Clock 모드 - 인게임 시간을 알 수 있는 시계 모드
모드 페이지
Clock
Adds a simple configurable clock widget to the screen showing the in-game time of day or a fuzzy representation like 'Late Afternoon'.
www.nexusmods.com
모드소개
인게임 화면 상단에 시계를 추가하여
게임상 시간을 알 수 있는 모드입니다.
선행모드 : BepInEX
발헤임 모드 - BepInEx 설치
발헤임 모드는 플러그인 방식으로, BepInEx 프로그램의 선행 설치가 필수인 경우가 많다. 어떻게 설치하면 되는지 알아보자. 1. 아래 사이트로 들어가서 파일 다운로드 BepInExPack Valheim v5.4.602 BepInEx
litahan0519.tistory.com
모드 설치 : 수동
1. 파일 다운로드
2. 새 폴더에 압축을 푼다.
3. ClockMod.dll 파일을
[:\SteamLibrary\steamapps\common\Valheim\BepInEx\plugins ]경로에 넣어준다.
*설치경로가 개인마다 다를 수 있음.
위 경로는 스팀 라이브러리의 발헤임 우클릭 > 관리 > 로컬 파일 보기로 쉽게 들어갈 수 있다.
발헤임폴더가 아닌 BepInEx/plugins 폴더에 넣어주자.
모드 설치 : 볼텍스
볼텍스(Vortex) 설치, 발헤임 등록하기 - 모드 관리를 쉽게 하자
발헤임 모드는 넥서스 홈페이지(클릭)에서 확인하고 다운받을 수 있다. 대부분은 그냥 파일을 받아서 폴더에 넣으면 되는 간단한 방식이기에 모드매니저가 필요한가? 싶을 수 있지만 설치한 모
litahan0519.tistory.com
모드 사용법
게임을 실행하면 자동으로 적용된다.
시계의 기본 위치는 화면 중앙 상단이다.
시간대
18:00 ~ 5:59 : 밤
6:00 ~ 17:59 : 낮
모드를 적용하고 게임을 한 번 실행하면
BepInEx\config 폴더에 aedenthorn.ClockMod.cfg 파일이 생긴다.
연결 프로그램 - 메모장으로 열면 세부 설정이 가능하다.
[General]
## Enable this mod
# Setting type: Boolean
# Default value: true
Enabled = true
시계모드 활성화 여부. true면 활성화
## Show the clock?
# Setting type: Boolean
# Default value: true
ShowClock = true
시계가 보일지 말지 결정. true면 활성화
## obsolete
# Setting type: Vector2
# Default value: {"x":800.0,"y":40.0}
ClockLocation = {"x":800.0,"y":40.0}
설정해도 적용되지 않는 부분.(obsolete)
## Location on the screen to show the clock (x,y) or (x%,y%)
# Setting type: String
# Default value: 50%,3%
ClockLocationString = 50%,3%
시계의 위치를 설정한다. 화면의 왼쪽 위가 0,0이다.
## Set to true to specify the name of a font from your OS; otherwise limited to fonts in the game resources
# Setting type: Boolean
# Default value: false
ClockUseOSFont = false
시계 숫자의 폰트를 따로 설정하기 위한 항목. true로 폰트설정 활성화.
true로 설정하지 않으면 게임 내부 글꼴로 폰트 설정이 제한된다.
## Add a shadow behind the text
# Setting type: Boolean
# Default value: false
ClockUseShadow = false
시계 뒤에 그림자를 넣는다. true로 활성화.
## Shadow offset in pixels
# Setting type: Int32
# Default value: 2
ClockShadowOffset = 2
그림자, 글자가 서로 떨어져있는 거리 설정
## Name of the font to use
# Setting type: String
# Default value: AveriaSerifLibre-Bold
ClockFontName = AveriaSerifLibre-Bold
설정할 폰트의 이름을 넣는 항목.
## Location on the screen in pixels to show the clock
# Setting type: Int32
# Default value: 24
ClockFontSize = 24
시계 글자의 크기를 설정한다.
## Font color for the clock
# Setting type: Color
# Default value: FFFFFFFF
ClockFontColor = FFFFFFFF
시계 글자의 색깔을 설정한다.(색상표 숫자) 기본값은 흰색.
## Color for the shadow
# Setting type: Color
# Default value: 000000FF
ClockShadowColor = 000000FF
시계 그림자의 색깔을 설정한다. 기본값은 검은색.
## Extra modifier key used to toggle the clock display. Leave blank to not require one. Use
docs.unity3d.com/Manual/ConventionalGameInput.html
# Setting type: String
# Default value:
ShowClockKeyMod =
시계를 끄고 키는 추가 토글 키를 설정한다. 위의 html사이트를 보고
원하는 키의 키코드를 찾아 넣어준다.
## Key used to toggle the clock display. use docs.unity3d.com/Manual/ConventionalGameInput.html
# Setting type: String
# Default value: home
ShowClockKey = home
시계를 끄고 키는 기본 토글 키. 기본값은 홈키다.
## If true, limit clock display to when the hotkey is down
# Setting type: Boolean
# Default value: false
ShowClockKeyOnPress = false
핫키가 눌렸을 때 시계 표시를 제한하는 설정.
## Time format; set to 'fuzzy' for fuzzy time
# Setting type: String
# Default value: HH:mm
ClockFormat = HH:mm
시간을 나타내는 형식. fuzzy를 입력하면 fuzzy time 형식으로 출력된다.
(문자로 시간을 나타내는 형식. 12시 35분 = 25 to 1)
## Formatted clock string - {0} is replaced by the actual time string, and {1} is replaced by the fuzzy string (if you want both)
# Setting type: String
# Default value: <b>{0}</b>
ClockString = <b>{0}</b>
시계 문자열의 형식. 1은 fuzzy time의 문자열 형식이다.
## Fuzzy time strings to split up the day into custom periods if ClockFormat is set to 'fuzzy'; comma-separated
# Setting type: String
# Default value: Midnight,Before Dawn,Before Dawn,Dawn,Dawn,Morning,Morning,Late Morning,Late Morning,Midday,Midday,Afternoon,Afternoon,Evening,Evening,Night,Night,Late Night,Late Night,Midnight
ClockFuzzyStrings = Midnight,Before Dawn,Before Dawn,Dawn,Dawn,Morning,Morning,Late Morning,Late Morning,Midday,Midday,Afternoon,Afternoon,Evening,Evening,Night,Night,Late Night,Late Night,Midnight
시간대를 표시하는 글자를 바꿀 수 있는 설정. 수정한 문자대로 출력된다.
콤마로 문자열 구분을 한다.