디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

도움!!!)사운드패치 맛갔는데 rc좀 봐주실분

로갤러(118.220) 2025.03.01 01:40:03
조회 120 추천 2 댓글 4

뭐가 문제인지 모르겠어서 그냥 다 복사했음


---


# 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



## 젬클락 표시 ##


always_show_gems = true



## 조트클락 표시 ##


always_show_zot = true



## 마우스 클릭을 통한 이동 사용 안함 ##


#$ lab_disable_mouse_move = true



## 악마 티어 타일로 표시 ##


tile_show_demon_tier = true



## 위험도를 노란색, 빨간색만 표시 ##


tile_show_threat_levels = tough nasty



## 자동줍기 해제 시 다음 장 (투명몹 대비) ##


force_more_message += Deactivating autopickup



## 안 보이는 무언가에게 마나가 빨리면 다음 장 ##


force_more_message += watched by something




## 왜곡무기 장비한 몬스터, 춤추는 왜곡무기 출현 시 more, 화면이 번쩍 효과 ##


force_more_message += It is wielding.*of distortion


force_more_message += She is wielding.*of distortion


force_more_message += He is wielding.*of distortion


force_more_message += wielding.* distortion.* comes? into view


flash_screen_message += It is wielding.*of distortion


flash_screen_message += She is wielding.*of distortion


flash_screen_message += He is wielding.*of distortion


flash_screen_message += wielding.* distortion.* comes? into view


flash_screen_message += distortion.* comes? into view



## 메세지가 너무 많이 떴을 때 강제로 more 띄우지 않게 함 ##


show_more = false



## 이펙트 딜레이 ##


view_delay = 200




## 방을 이동해도 채팅을 지우지 않음 ##


#$ lab_disable_chat_clear = true




## 사운드 자동 켜기 ##


#$ lab_sound_on = true



## 스킬 경험치 메뉴얼 설정 ##


default_manual_training = true



## 그물, 쿠라레 자동으로 주움 ##


autopickup_exceptions += <throwing net


autopickup_exceptions += <curare



## 화폭 볼텍스가 탐색이나 휴식 시 멈추는거 방지 ##


runrest_ignore_message += Your fire (vortexlvortices).*something


runrest_ignore_message += something .* fire (vortexlvortices)



## HP/MP 알림 ##




{

  local need_skills_opened = true

  local previous_hp = 0

  local previous_mp = 0

  local previous_form = ''

  local was_berserk_last_turn = false

  function announce_damage_ko()

    local current_hp, max_hp = you.hp()

    local current_mp, max_mp = you.mp()




    --Things that increase hp/mp temporarily really mess with this

    local current_form = you.transform()

    local you_are_berserk = you.berserk()

    local max_hp_increased = false

    local max_hp_decreased = false

    if (current_form ~= previous_form) then

      if (previous_form:find('dragon') or

          previous_form:find('statue') or

          previous_form:find('tree') or

          previous_form:find('ice')) then

        max_hp_decreased = true

      elseif (current_form:find('dragon') or

          current_form:find('statue') or

          current_form:find('tree') or

          current_form:find('ice')) then

        max_hp_increased = true

      end

    end




    if (was_berserk_last_turn and not you_are_berserk) then

      max_hp_decreased = true

    elseif (you_are_berserk and not was_berserk_last_turn) then

      max_hp_increased = true

    end



    --Skips message on initializing game

    if previous_hp > 0 then

      local hp_difference = previous_hp - current_hp

      local mp_difference = previous_mp - current_mp

      if max_hp_increased or max_hp_decreased then

        if max_hp_increased then

          crawl.mpr('Now you have [' .. current_hp .. '/' .. max_hp .. '] HP')

        else

          crawl.mpr('Now you have [' .. current_hp .. '/' .. max_hp .. '] HP')

        end

      else




        --체력 잃을때

        if (current_hp < previous_hp) then

          if current_hp <= (max_hp * 0.30) then

            crawl.mpr('<lightred>You take ' .. hp_difference .. ' HP,</lightred> <red>and have [' .. current_hp .. '/' .. max_hp .. '] HP</red>')

          elseif current_hp <= (max_hp * 0.50) then

            crawl.mpr('<yellow>You take ' .. hp_difference .. ' HP,</yellow> <lightred>and have [' .. current_hp .. '/' .. max_hp .. '] HP</lightred>')

          elseif current_hp <= (max_hp *  0.70) then

            crawl.mpr('<brown>You take ' .. hp_difference .. ' HP,</brown> <green>and have [' .. current_hp .. '/' .. max_hp .. '] HP</green>')

          elseif current_hp <= (max_hp * 0.90) then

            crawl.mpr('<darkgrey>You take ' .. hp_difference .. ' HP,</darkgrey> <green>and have [' .. current_hp .. '/' .. max_hp .. '] HP</green>')

          else

            crawl.mpr('<darkgrey>You take ' .. hp_difference .. ' HP,</darkgrey> <lightgreen>and have [' .. current_hp .. '/' .. max_hp .. '] HP</lightgreen>')

          end

          if hp_difference > (max_hp * 0.20) then

            crawl.mpr('<lightred>!!!!! HP Warning !!!!!</lightred>')

          end

        end




        --체력 얻을때

        if (current_hp > previous_hp) then

          --Removes the negative sign

          local health_inturn = (0 - hp_difference)

          if (health_inturn > 1) and not (current_hp == max_hp) then

            if current_hp <= (max_hp * 0.30) then

              crawl.mpr('<darkgrey>You gain ' .. health_inturn .. ' hp,</darkgrey> <red>and have [' .. current_hp .. '/' .. max_hp .. '] hp.</red>')

            elseif current_hp <= (max_hp * 0.50) then

              crawl.mpr('<yellow>You gain ' .. health_inturn .. ' HP,</yellow> <lightred>and have [' .. current_hp .. '/' .. max_hp .. '] hp.</lightred>')

            elseif current_hp <= (max_hp *  0.70) then

              crawl.mpr('<lightgreen>You gain ' .. health_inturn .. ' HP,</lightgreen> <green>and have [' .. current_hp .. '/' .. max_hp .. '] HP</green>')

            elseif current_hp <= (max_hp * 0.90) then

              crawl.mpr('<white>You gain ' .. health_inturn .. ' HP</white>, <lightgreen>and have [' .. current_hp .. '/' .. max_hp ..'] HP</lightgreen>')

            else

              crawl.mpr('<lightgreen>You gain ' .. health_inturn .. ' HP, and have [' .. current_hp .. '/' .. max_hp .. '] HP</lightgreen>')

            end

          end

          if (current_hp == max_hp) then

            crawl.mpr('<lightmagenta> HP Full. (' .. current_hp .. ')</lightmagenta>')

          end

        end




        --마력 얻을때

        if (current_mp > previous_mp) then

          --Removes the negative sign

          local mp_inturn = (0 - mp_difference)

          if (mp_inturn > 1) and not (current_mp == max_mp) then

            if current_mp < (max_mp * 0.25) then

              crawl.mpr('<darkgrey>You gain ' .. mp_inturn .. ' MP,</darkgrey> <brown>and have [' .. current_mp .. '/' .. max_mp .. '] MP</brown>')

            elseif current_mp < (max_mp * 0.50) then

              crawl.mpr('<lightblue>You gain ' .. mp_inturn .. ' MP,</lightblue> <blue>and have [' .. current_mp .. '/' .. max_mp .. '] MP</blue>')

            else

              crawl.mpr('<lightblue>You gain ' .. mp_inturn .. ' MP,</lightblue> <lightcyan>and have [' .. current_mp .. '/' .. max_mp .. '] MP</lightcyan>')

            end

          end

          if (current_mp == max_mp) then

            crawl.mpr('<lightcyan>MP Full (' .. current_mp .. ')</lightcyan>')

          end

        end


        --마력 잃을때

        if current_mp < previous_mp then

          if current_mp <= (max_mp * 0.25) then

            crawl.mpr('<darkgrey>You lose ' .. mp_difference .. 'MP,</darkgrey> <white>and have [' .. current_mp .. '/' ..max_mp ..'] MP</white>')

          elseif current_mp <= (max_mp * 0.50) then

            crawl.mpr('<blue>You lose ' .. mp_difference .. 'MP,</blue> <lightblue>and have [' .. current_mp .. '/' ..max_mp ..'] MP</lightblue>')

          else

            crawl.mpr('<darkgrey>You lose ' .. mp_difference .. 'MP,</darkgrey> <lightcyan>and have [' .. current_mp .. '/' ..max_mp ..'] MP</lightcyan>')

          end

        end

      end

    end

    --Set previous hp/mp and form at end of turn

    previous_hp = current_hp

    previous_mp = current_mp

    previous_form = current_form

    was_berserk_last_turn = you_are_berserk

  end

function ready()


  -- Enable AnnounceDamage.

  announce_damage_ko()

  if you.turns() == 0 and need_skills_opened then

    need_skills_opened = false

    crawl.sendkeys("m")

  end

end

}



## 폰트 변경 ##



tile_font_crt_family = Consolas


tile_font_stat_family = Consolas


tile_font_msg_family = Consolas


tile_font_lbl_family = Consolas



## 이동속도 지연 ##



travel_delay = 15



## 플레이어 타일을 해당 종족으로 변경 ##



tile_show_player_species = true



## 사운드팩 RC ##



sound_on = true

sound_pack += https://osp.nemelex.cards/build/latest.zip:["init.txt"]

one_SDL_sound_channel = true

sound_fade_time = 0.5

추천 비추천

2

고정닉 2

0

댓글 영역

전체 댓글 0
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 과음으로 응급실에 가장 많이 갔을 것 같은 스타는? 운영자 25/03/03 - -
공지 로그라이크 갤러리 이용 안내 [56] 운영자 16.04.08 87602 24
491478 ㅇㄹ) 소매치기 소소한 팁 [3] ㅇㅇ(175.213) 19:54 42 0
491474 ㅇㄹ) 날것망치 ㄹㅇ 어디서 구하냐 [6] 내닉네임은딱열글자다갤로그로 이동합니다. 18:35 75 0
491473 엘린 질문) 세금낼 때 항상 집까지 가서 청구서 가져가야 하는거임? [4] 로갤러(116.120) 18:25 58 1
491472 ㄷㅈ) 키쿠할 때 ab도 씀? ㅇㅇ(211.235) 18:15 36 0
491471 돌죽)자기 개를 부활시키기위해 영혼을 판 그룬 [3] 와그너스갤로그로 이동합니다. 17:53 96 0
491470 어웨이큰아머는 강화된 ac고려해서 공격력올라감? [1] 로갤러(118.220) 17:35 36 0
491469 ㄷㅈ) arma + mystic blast = !? 로갤러(175.193) 17:10 58 0
491468 ㄷㅈ) 포지크래프트는 아셴 저주 중에서 어느 저주가 버프 줌? [4] ㅇㅇ(211.235) 16:30 67 1
491467 ㄷㅈ) +19 수판갑은 첨보네 [1] 로갤러(175.193) 16:24 88 0
491466 ㅇㄹ) 자동으로 밭 가는 모드 있음? [5] 로갤러(1.243) 15:44 86 0
491465 이런씨발 섬멸맨 노데스트라이 깨졌네 [3] 가이우스(76.174) 15:13 57 0
491464 리워크 베오그 정리나 공략같은거 있음? [1] 로갤러(116.46) 15:12 43 0
491456 ㅇㄹ) 뉴비 신앙 추천좀 [3] ㅇㅇ(218.156) 14:29 98 0
491443 문어는 이악물고 고자그가 맞나? [4] calc갤로그로 이동합니다. 13:23 88 0
491442 ㅂㅂ)크아악 YO 분류들 왤캐많아졌냐 seeu갤로그로 이동합니다. 13:19 42 0
491441 ㅋㅌㅋㅂㅂ)식료품점 깔끔한것봐 로갤러(121.191) 12:20 62 0
491440 돌죽) 평화주의자 컨덕트 달성함 [4] ㅇㅇ(220.93) 11:59 189 5
491439 ㅋㅌㅋㅂㅂ)집에 전기 설치하려면 어떻게 해야함? [4] 로갤러(121.191) 11:59 52 0
491438 님들 오카와루 제단 입장 대사 뭔지 아시는분 계신가요.. [5] 로갤러(14.5) 11:18 99 1
491437 녹픽던 신직업 나왔더라 [1] LF.갤로그로 이동합니다. 10:40 145 0
491436 난 가일오브가 예능템인줄 알았었는데 [5] 로갤러(118.220) 10:24 116 1
491435 ㄷㅈ)문어 용펀치 매니폴드 생각보다 약하네... [7] calc갤로그로 이동합니다. 10:05 98 1
491434 ㄷㅈ) 그레이트플레이어 땄다 [2] heki갤로그로 이동합니다. 07:06 116 5
491433 ㅇㄹ) 카쉪 동료는 어떻게 키워야할까 [3] 로갤러(1.243) 04:41 132 0
491432 ㄷㅈ marrowcudas 이새기는 어케해야됨 [3] 로갤러(121.125) 03:45 108 0
491431 진짜 뉴비 입장에서 고역이다 [5] ㅇㅇ갤로그로 이동합니다. 03:29 175 0
491430 질문)어웨이큰 아머 질문 [3] 로갤러(118.220) 02:28 83 1
491429 ㄷㅈ) 평타에 스탯 드레인 달린 애들 버프 먹은거 있음? [3] ㅇㅇ(211.109) 02:09 80 0
491428 ㄷㅈ) 계산기 enkindle 가능한 스펠만 별도 표기하도록 업뎃 [1] 로갤러(175.193) 02:03 89 1
491427 베오그 신앙시 종족 바뀌는거 웃기네 [2] ㅇㅇ(220.93) 00:48 122 0
491426 돌죽 같은 겜중에 젤 접근성 좋은게 뭐임? [4] 로갤러(112.121) 00:12 150 0
491425 ㅇㄹ) 룬 장비 레시피는 어디서 구함? [6] ㅇㅇ(118.36) 03.02 126 0
491424 ㄷㅈ) 법사 이 목걸이 쓸만함? [2] ㅇㅇ갤로그로 이동합니다. 03.02 121 0
491423 엘린) 이 게임 아무나 막 다 패고다닐수 있는거임?? [15] 로갤러(59.31) 03.02 252 0
491422 ㄷㅈ) 문어는 다리가 8개~~ 로갤러(175.197) 03.02 103 0
491421 ㄷㅈ)오광 135골 짜리 반지 [1] 불건전유니갤로그로 이동합니다. 03.02 119 0
491419 ㅇㄹ) 이거 되긴하네 [8] ㅇㅇ(121.181) 03.02 244 0
491418 ㅇㄹ) 천벌 72000턴 ㅁㅊ [2] 로갤러(1.243) 03.02 172 0
491417 ㅇㄹ) 음식으로 스탯 노가다할때 렉은 어캐 해결함 [2] ㅇㅇ(175.213) 03.02 152 0
491416 모든종족 3룬 갱신했다 / 레버 폴터 소감 [4] ㅇㅇ(220.93) 03.02 155 5
491415 9th Dawn 3 한글화 했어 [6] ㅇㅇ(221.141) 03.02 379 22
491414 베리드 본즈 저거 디게 재밌네 [7] ㅇㅇ갤로그로 이동합니다. 03.02 146 1
491413 황금용왕 갑옷 VS 기열 황룡 누가 더 셀까? [8] ㅇㅇ(220.93) 03.02 190 3
491412 엘린 업뎃 많이.뎌ㅣㅁ? [2] ㅇㅇ(118.235) 03.02 164 0
491411 ㄷㅈ) 늅 질문 보통 스크롤 물약 감정은 어느타이밍에 함? [6] 로갤러(106.101) 03.02 102 0
491410 짐굴테마 5층 무엇 [1] 로갤러(118.220) 03.02 85 0
491408 톰죽) 1티어 유니크 인디안밥 당하면 할맘 싹사라지네 [1] 가이우스(76.174) 03.02 88 0
491407 ㅌㅈ) 뉴비 7시간 했는데 [6] ㅇㅇ갤로그로 이동합니다. 03.02 140 1
491406 ㅌㄹ)뉴비 단검투쳑으로 하는데 쌍수일필요는없나? [8] 은갈치(133.130) 03.02 80 0
뉴스 “황동주, 나한텐 만나자는 얘기 없어” 이영자, 김숙에 질투 (‘오만추’) 디시트렌드 18:00
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2