# CRAWL.NEMELEX.CARDS ##### Crawl Init file ############################################### # For descriptions of all options, as well as some more in-depth information # on setting them, consult the file # options_guide.txt # in your /docs directory. If you can't find it, the file is also available # online at: # https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt # # Crawl uses the first file of the following list as its option file: # * init.txt in the -rcdir directory (if specified) # * .crawlrc in the -rcdir directory (if specified) # * init.txt (in the Crawl directory) # * ~/.crawl/init.txt (Unix only) # * ~/.crawlrc (Unix only) # * ~/init.txt (Unix only) # * settings/init.txt (in the Crawl directory) ##### Some basic explanation of option syntax ####################### # Lines beginning with '#' are comments. The basic syntax is: # # field = value or field.subfield = value # # Only one specification is allowed per line. # # The terms are typically case-insensitive except in the fairly obvious # cases (the character's name and specifying files or directories when # on a system that has case-sensitive filenames). # # White space is stripped from the beginning and end of the line, as # well as immediately before and after the '='. If the option allows # multiple comma/semicolon-separated terms (such as # autopickup_exceptions), all whitespace around the separator is also # trimmed. All other whitespace is left intact. # # There are three broad types of Crawl options: true/false values (booleans), # arbitrary values, and lists of values. The first two types use only the # simple =, with later options - which includes your options that are different # from the defaults - overriding earlier ones. List options allow using +=, ^=, # -=, and = to append, prepend, remove, and reset, respectively. Usually you will # want to use += to add to a list option. Lastly, there is := which you can use # to create an alias, like so: # ae := autopickup_exceptions # From there on, 'ae' will be treated as if it you typed autopickup_exceptions, # so you can save time typing it. # ##### Other files ################################################### # You can include other files from your options file using the 'include' # option. Crawl will treat it as if you copied the whole text of that file # into your options file in that spot. You can uncomment some of the following # lines by removing the beginning '#' to include some of the other files in # this folder. # Some useful, more advanced options, implemented in LUA. # include = advanced_optioneering.txt # Alternative vi bindings for Dvorak users. # include = dvorak_command_keys.txt # Alternative vi bindings for Colemak users. # include = colemak_command_keys.txt # Alternative vi bindings for Neo users. # include = neo_command_keys.txt # Override the vi movement keys with a non-command. # include = no_vi_command_keys.txt # Turn the shift-vi keys into safe move, instead of run. # include = safe_move_shift.txt language = ko translation_language = ko translation_language = kotranslation_language = ko translation_language = ko Language = ko ##언어한글화## $ lab_sound_on = true ##사운드패치 ##여기부터 마법안정화 체크 { function ready() checkSpellFailRate() end } { safe = 10 -- 실패율이 safe값 이하면 안정화가 된걸로 침 --만약 실패율이 5%이하인 것만 메세지를 나타나게 하고싶으면 10을 5로 바꾸면됨 spellTable = {} function checkSpellFailRate() for index,spellName in pairs(you.spells()) do fail = spells.fail(spellName) if rawget(spellTable, spellName) == nil then spellTable[spellName] = 0 end if rawget(spellTable, spellName) == 0 and fail < safe then crawl.mpr(string.format("%s 스펠 안정화 끝!",spellName)) spellTable[spellName] = 1 end end end } ##여기까지 마법안정화 체크 tile_show_player_species = false ##플레이어 도트 몬스터화 ##여기부터 탐험딜레이설정 rest_delay=-1 travel_delay=0 explore_delay=-1 show_travel_trail=1 ##여기까지 탐험딜레이설정 ##여기부터 자동m키(새게임시작시 자동으로 스킬창띄움) { local need_skills_opened = true function ready() if you.turns() == 0 and need_skills_opened then need_skills_opened = false crawl.sendkeys("m") end end } ##여기까지 자동m키 ##여기부터 완전회복까지 휴식 (100턴휴식이아니라 체력,마력이100%가 될때까지 휴식) rest_wait_both = true rest_wait_percent = 100 ##여기까지 완전회복까지 휴식 ##여기부터 자동전투 제한(숫자정해둔퍼센테이지 아래로체력이 내려가면 탭키불가) autofight_stop = 70 ##여기까지 자동전투 제한 ## 마법창 한글화 ## #$ lab_magic_window_translate = true ## 기술창 한글화 ## #$ lab_skill_window_translate = true ## 인터페이스 한글화 ## #$ lab_interface_translate = true ## 능력창 한글화 ## #$ lab_ability_window_translate = true ## 한글 고정폭 폰트 ## #$ lab_apply_font = true ## 채팅 리디렉트 (관전자 X) ## #$ lab_transfer_chat_ingame=true ## 채팅 컨트롤 숨기기 (관전자 X) ## #$ lab_hide_chat_control = true ## 마우스 클릭을 통한 이동 사용 안함 ## #$ lab_disable_mouse_move = true ## 사운드 자동 켜기 (관전자 X) ## #$ lab_sound_on = true ## 웹죽 세션 강제 유지 및 잠수 알림 (5분 이상 입력이 없어도 종료되지 않음) ## #$ lab_maintain_session = true ## 방을 이동해도 채팅을 지우지 않음 ## #$ lab_disable_chat_clear = true sound_on = true sound_pack += https://osp.nemelex.cards/build/latest.zip:["init.txt"] one_SDL_sound_channel = true sound_fade_time = 0.5 translation_language = ko