디시인사이드 갤러리

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

갤러리 본문 영역

오늘 제가 쓰는 RC 정리한 김에 올림당!

팽도리가조은걸요갤로그로 이동합니다. 2024.06.07 15:40:17
조회 242 추천 7 댓글 9

오늘 폰트 오류난 김에 RC 하나하나 정리해봤는데 생각보다 재밌슴둥ㅋㅋ


그냥 혹시 필요하신 분이 있으실수도 있으니까 보고 필요한거 챙겨가심댐당ㅋㅋ


아참 폰트rc는 현재 Consolas 로 설정되어있는디 이거 맘에 안드시면 DejaVu Sans Mono, Arial, Open Sans 중에 고르시면 댐당


폰트 다른거 더 알고 계시면 가르쳐 주시면 감사함당




## 젬클락 표시 ##

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


## 자동공격이 멈추는 체력 비율 ##

autofight_stop = 70


## 왜곡무기 장비한 몬스터, 춤추는 왜곡무기 출현 시 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


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

tile_show_player_species = true


## 폰트 변경 ##

tile_font_crt_family = Consolas

tile_font_stat_family = Consolas

tile_font_msg_family = Consolas

tile_font_lbl_family = Consolas


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

#$ lab_disable_chat_clear = true


## vi방식 이동키 비활성화 ##

include = no_vi_command_keys.txt


## 사운드 자동 켜기 ##

#$ lab_sound_on = true


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

default_manual_training = true


## 자동탐사 딜레이 ##

travel_delay = 0


## 탐험 딜레이 ##

explore_delay = 0


## 휴식 딜레이 ##

rest_delay = 0


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

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
}


추천 비추천

7

고정닉 2

1

댓글 영역

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

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 가족과 완벽하게 손절해야 할 것 같은 스타는? 운영자 24/06/24 - -
AD 호요버스 신작 <젠레스 존 제로> 7월 4일 오픈! 운영자 24/06/24 - -
AD 8번째 엘다인 등장. 영원의 메아리 리뉴아 업데이트 운영자 24/06/27 - -
461711 던그라이크 이거 어케쳐깨라는거임? [2] 4714(39.117) 06.16 230 0
461710 하루에 한 번 웨이시 증오하기 136일차 [3] ㅇㅇ(210.222) 06.16 86 2
461709 카타클 특) 밥 먹을 때가 제일 머리 아픔 [1] 로갤러(220.116) 06.15 142 0
461708 dda 찍먹해보면서 1차적으로 빡치는 것 [1] ㅇㅇ(121.138) 06.15 138 1
461707 위자드모드에서 신앙초기화같은건없나 [7] seeu갤로그로 이동합니다. 06.15 98 0
461706 ㅋㅌㅋdda)이거 왜 이러는지 아는 사람? [4] blister갤로그로 이동합니다. 06.15 153 0
461705 ㅌㅈ)인세인 얼음 고위마도사 클리어 미나미모토갤로그로 이동합니다. 06.15 77 1
461704 톰4 간만에 로그클 소감 [12] LF.갤로그로 이동합니다. 06.15 179 2
461703 게임 그만 해야겠다 ㅋㅋㅋㅋ [2] 로갤러(106.101) 06.15 172 2
461702 ㅋㅌㅋdda)은신류 몹이 또 추가됐네 [2] blister갤로그로 이동합니다. 06.15 150 0
461701 ㅋㅌㅋ)아 가방 메고 차량 내부 못 지나가는 거 진짜 개지랄이네 [2] blister갤로그로 이동합니다. 06.15 139 1
461700 밝밤 한글패치 있음? [7] ㅇㅇ(182.212) 06.15 122 0
461699 ㄷㅈ)마저 1칸인데 [5] ㅇㅇ(59.0) 06.15 132 0
461698 ㅋㅌㅋ)나무는 어떻게 자름 [2] Silly갤로그로 이동합니다. 06.15 123 0
461697 톰죽 템 우선순위좀 봐주셈 [5] 로갤러(211.241) 06.15 106 1
461696 ㅋㅌㅋ) 뭐지? 무엇이지? 개꿀잼 몰카인가? [2] ㅇㅇ(114.203) 06.15 147 0
461695 ㄷㅈ)뱀파 인챈터로 4층 우지안 나오면 일단 믿음? [3] 로갤러(1.246) 06.15 94 0
461694 카타클 밝밤 왜 벌써부터 질리냐 10일도 안됏는데 [1] ㅇㅇ(117.123) 06.15 128 0
461693 ㄷㅈ 호주죽 내 캐릭 통계 어떻게 봄? [1] 로갤러(203.142) 06.15 91 1
461692 자네가 국내 최초 클리어에 도전해 보겠는가? [13] ㅇㅇ갤로그로 이동합니다. 06.15 855 12
461691 ㅋㅌㅋ)뭐야 이제 물도 밀폐용기 아니면 썩음? [2] ssh0818갤로그로 이동합니다. 06.15 128 0
461690 디스메노스 해본 사람들 어때 [1] ㅇㅇ갤로그로 이동합니다. 06.15 75 0
461689 하란대로 해서 깔긴 했는데 [5] ㅇㅇ(182.212) 06.15 140 0
461688 ㄷㅈ 플라즈마빔 vs 퍼마프로스트 [2] 로갤러(211.36) 06.15 108 2
461687 ㅋㅌㅋ) 요새<- 이거 원래 있는 건축물임? [4] 로갤러(121.139) 06.15 157 0
461686 ㅋㅌㅋdda)터렛 스쿼트 막힌 것 같네 [2] blister갤로그로 이동합니다. 06.15 123 0
461685 그래서 여기서 뭐하라는거임... [8] ㅇㅇ(182.212) 06.15 201 0
461684 깃허브 어케씀;; [5] ㅇㅇ(182.212) 06.15 182 2
461683 ㄷㅈ) 구울법사 어떤거 같냐 [3] ㅇㅇ(110.70) 06.15 119 0
461682 밝밤 어디서 다운받음?? [1] ㅇㅇ(182.212) 06.15 127 0
461681 ㅋㅌㅋ)물은 실내에 보관하고 틈나면 끓여두자. [6] 로갤러(221.157) 06.15 161 0
461680 카타클 밝밤 머리만 보호하는 방어구 좋은거 뭐뭐잇냐? [3] 로갤러(117.123) 06.15 83 0
461679 ㅋㅌㅋdda)침대 만들기 없어졌네? [5] blister갤로그로 이동합니다. 06.15 137 0
461678 돌죽 토요일 일요일은 Max Hp +1 해줄때 됐다 [3] ㅇㅇ(118.235) 06.15 166 0
461677 돌죽은 스팀으로 나오기 힘드나 [15] 로갤러(58.226) 06.15 230 1
461676 머냐 카타클 밝밤도 이제 차 수리할때 재료 필요하네? 로갤러(117.123) 06.15 67 0
461675 ㅋㄷㅋ)첫 난민캠프 습격은 대실패 [5] Silly갤로그로 이동합니다. 06.15 119 0
461674 ㅋㅌㅋ 밝은밤 파워아머 헬멧 그래픽 나만 이럼??? [2] 로갤러(175.122) 06.15 124 0
461673 밝밤만 하다가 dda 해보니까 복잡하네 [2] ㅇㅇ(223.38) 06.15 123 0
461672 ㅌㅈ) 얼음마도사 변신하면 얼음공격에 힐되는데 [2] 미나미모토갤로그로 이동합니다. 06.15 94 0
461671 ㅋㅌㅋ)이거 수치버그 어캐 해결함? [4] Silly갤로그로 이동합니다. 06.15 144 1
461670 탑뷰 슈팅 액션 멀티플레이 도트 그래픽 로그라이크 게임 없나? [11] 로갤러(14.35) 06.15 148 0
461669 ㄷㅈ)본인 마비봉 53퍼 8번 실패해본적 있음 [1] ssh0818갤로그로 이동합니다. 06.15 95 0
461668 ㅋㅌㅋ)어디부터 털어야 잘 털었다고 소문이 날까 [8] Silly갤로그로 이동합니다. 06.15 158 0
461667 돌죽)3%가 연속 3번 실패할 확률은? [3] 와그너스갤로그로 이동합니다. 06.15 167 0
461665 하루에 한 번 웨이시 증오하기 135일차 [1] ㅇㅇ(210.222) 06.15 82 3
461664 근데 10월에 호주죽도 문 닫는다는데 [1] ㅇㅇ(39.119) 06.14 143 2
461663 ㅋㅌㅋ)손목시계 이거 뭐임 ㅅㅂ [3] Silly갤로그로 이동합니다. 06.14 154 0
461662 하루□ 기□□면 로□□랜□가 나□□! [6] 로갤러(223.39) 06.14 605 16
461661 카타클리즘이 구글 스토어에 없는데 머임?? [3] ㅇㅇ(182.212) 06.14 139 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2