디시인사이드 갤러리

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

갤러리 본문 영역

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

팽도리가조은걸요갤로그로 이동합니다. 2024.06.07 15:40:17
조회 257 추천 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/07/01 - -
AD 8번째 엘다인 등장. 영원의 메아리 리뉴아 업데이트 운영자 24/06/27 - -
AD [소드 오브 콘발라리아]8/1 출시, 마지막 사전예약! 운영자 24/07/01 - -
461499 ㅌㅈ) 최고봉에서 템 줍는거 의미 있음 ?? [2] 로갤러(27.145) 06.11 103 0
461498 하루에 한 번 웨이시 증오하기 131일차 [2] ㅇㅇ(210.222) 06.11 75 2
461497 ㅋㅌㅋㅂㅂ) 도그밋 모드 오류 수정 [1] 도그밋갤로그로 이동합니다. 06.10 124 2
461496 ㄷㅈ)헬리온도 그냥 아군 좆까쇼 모드로 갔나? [7] blister갤로그로 이동합니다. 06.10 304 7
461495 ㄷㅈ) 상위티어 검 드랍률좀 높혀줬으면 좋겠다 [1] ㅇㅇ(118.235) 06.10 107 1
461494 ㅋㅌㅋdda)yrax 최강몹 인게임내 요소로 죽이는거 성공함 [1] ㅇㅇ갤로그로 이동합니다. 06.10 160 0
461493 간만에 템포럴 와든하고 느낀 거 [4] LF.갤로그로 이동합니다. 06.10 98 0
461492 돌죽 왜케 쉬워짐?? [7] ㅇㅇ갤로그로 이동합니다. 06.10 259 1
461491 ㄷㅈ)판데에 이런 지형도 있네 [2] blister갤로그로 이동합니다. 06.10 110 2
461490 ㄷㅈ) 짱쎈자리 놀알쳄 5룬클 + 대충 공략 [1] ㅇㅇ(118.235) 06.10 115 3
461489 ㅋㅌㅋdda)밑에 yrax애 이길순없어도 공격 받아내는건 가능함 [11] ㅇㅇ갤로그로 이동합니다. 06.10 178 0
461488 베오그 동료는 어디까지 강력해질 수 있음? [2] ㅇㅇ(220.116) 06.10 103 1
461487 ㅌㅈ)프록효과 레벨 안써진 스킬들은 로갤러(220.90) 06.10 47 0
461486 엘린) 미니게임 안되는거 답변받음 [2] ㅇㅇ(118.235) 06.10 112 1
461485 ㅋㅌㅋ)ㅋㅋ 이새낀 뭐냐 [6] blister갤로그로 이동합니다. 06.10 244 7
461483 ㅋㅌㅋㅂㅂ) 람쥐 모드 오류 뜬다 [4] 로갤러(220.116) 06.10 105 0
461482 ㄷㅈ) 여태 본것중 가장 좁은 층 [8] ㅇㅇ(118.235) 06.10 170 2
461481 ㅌㅈ) 스탯 5 차이 큰가여? [7] ㅇㅇ(120.142) 06.10 122 0
461480 돌죽)5월 10일 ~ 6월 10일 패치 [10] 와그너스갤로그로 이동합니다. 06.10 667 17
461479 그러고보니 드포하는 애들 아직도 이거 쓰나? [2] 로갤러(118.235) 06.10 152 6
461478 드포) 드포의 도끼는 막칼같은 무기구나 [9] ㅇㅇ(211.235) 06.10 161 2
461477 urw 몇년만에 했더니 적응을 못하겠네 [1] 로갤러(1.237) 06.10 68 0
461476 돌죽)우지안 암타 단검맨 3룬3젬클 [2] 와그너스갤로그로 이동합니다. 06.10 124 0
461475 ㅋㅌㅋdda)지금 가장 강한 세력이랑 적이 누구임 [6] ㅇㅇ갤로그로 이동합니다. 06.10 150 1
461474 돌죽)디스메노스 패치 트렁크로 넘어옴 [7] 와그너스갤로그로 이동합니다. 06.10 228 5
461473 ㅌㅈ) 근데 퓨리서지에서 유성을 가는 이유가 뭐임?? [7] ㅇㅇ갤로그로 이동합니다. 06.10 136 0
461472 ㅌㅈ)퓨리 끼면 모든뎀이 화냉전비로 바뀐다던데 [4] 로갤러(220.90) 06.10 94 0
461471 페다스는 어떤 빌드에서 믿는게 좋음? [3] 로갤러(118.220) 06.10 103 0
461470 글리젠 뭐냐 틀딱갤이라 다들 노동중인가 [1] ㅇㅇ(118.235) 06.10 142 0
461469 페다스 신이 너무 불안정하네 진짜 [2] 로갤러(222.112) 06.10 165 2
461468 ㅌㅈ) 시간감시자 깨고 얼음마도사 해봐야지 [4] 미나미모토갤로그로 이동합니다. 06.10 98 0
461467 ㅌㅈ) 오크 캠페인 그래도 12레벨 넘기니까 할만하네 [2] 미나미모토갤로그로 이동합니다. 06.10 82 0
461466 이 모닝스타 쥑이네 [2] 로갤러(136.23) 06.10 186 0
461465 하루에 한 번 웨이시 증오하기 130일차 [1] ㅇㅇ(210.222) 06.10 81 1
461464 3만턴 2만턴 올룬 이런건 대체 어떻게하는거지 [4] waagh!!(175.120) 06.09 178 0
461463 ㅌㅈ 아이템 볼트 고쳤었네 [1] 불블볼갤로그로 이동합니다. 06.09 95 0
461462 돌죽 존나 오랜만에 할려는데 크게 바뀐거 있음? [4] ㅇㅇ(1.238) 06.09 135 0
461461 ㄷㅈ) 유튜브 영상 업로드 하였습니다. [13] 스톤골렘100갤로그로 이동합니다. 06.09 342 13
461460 돌죽) 펠리드 소환사 올룬 올젬클리어 [10] 로갤러(220.126) 06.09 487 15
461459 ㄷㅈ)근데 왜 외국 돌죽 실력이나 도움요청 이야기는 괴담만 들리냐 [2] ssh0818갤로그로 이동합니다. 06.09 216 5
461458 ㄷㅈ)메모라이즈 문제 덕분에 쌉고수 플레이 관전함 [2] blister갤로그로 이동합니다. 06.09 169 1
461457 ㅌㅈ) 이 아이템의 숨겨진 페널티는 무엇일까요? [7] 톰갤러(61.39) 06.09 159 2
461456 돌죽 석화 저항이나 면역 어떻게 얻냐 [8] 로갤러(1.246) 06.09 121 1
461455 돌죽 지니 고샤그 올룬클 [5] Lmm갤로그로 이동합니다. 06.09 114 2
461454 ㅌㅈ)모험가 염동사수에 비전전투 섞으니 딜 장난아니네 로갤러(220.90) 06.09 57 0
461453 ㅌㅈ) 마도사 고요랑 폭풍우 혼절 중첩되는거임? [1] 로갤러(27.145) 06.09 68 0
461451 엘린 베타 기번 쓰면 미니겜 하나만 동작함 [2] 로갤러(183.99) 06.09 115 0
461450 ㅌㅈ) 와 오크 인세인 캠페인 개어렵네... [2] 미나미모토갤로그로 이동합니다. 06.09 68 0
461449 요즘 독학파 올릴만합니까 [8] 유토니움갤로그로 이동합니다. 06.09 222 1
461448 ㅌㅈ)모험가 하는데 마나관리하기 좋은 카테고리 있음? [2] 로갤러(220.90) 06.09 91 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2