디시인사이드 갤러리

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

갤러리 본문 영역

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

팽도리가조은걸요갤로그로 이동합니다. 2024.06.07 15:40:17
조회 212 추천 6 댓글 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
}


추천 비추천

6

고정닉 2

1

댓글 영역

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

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 연예인 안됐으면 어쩔 뻔, 누가 봐도 천상 연예인은? 운영자 24/06/17 - -
AD 뉴진스, 배틀그라운드로 데뷔 준비 완료! 운영자 24/06/21 - -
AD 현물 경품 획득 기회! 아키에이지 지역 점령전 업데이트 운영자 24/06/20 - -
461822 녹픽던) 마법사 충격파 지팡이 + 탄성 존나 재미있네 ㅋㅋㅋㅋ 입갤갤로그로 이동합니다. 06.19 75 5
461821 풀섬 퍼실레이드 vs 이그니션 이면 [1] 로갤러(118.220) 06.19 47 0
461820 마그나볼트 렙이랑 딜 둘다 확 낮췄으면 좋겠네 로갤러(112.152) 06.19 51 1
461819 ㅋㅌㅋdda)미식가 특성때문인가 단백질 블럭인가 못쳐먹던데 [3] ㅇㅇ갤로그로 이동합니다. 06.19 97 0
461818 ㄷㅈ) 트체석 조카 육성기 [3] 로갤러(218.52) 06.19 156 9
461817 ㅋㅌㅋ)최신판 ㄹㅇ ㅈ같은 게 차량의자임 [1] 로갤러(1.11) 06.19 162 0
461816 ㅋㅌㅋdda)프로판 랜턴 효율 쥑이네 [5] blister갤로그로 이동합니다. 06.19 122 0
461815 ㅋㅌㅋ)가위잭이나 보틀잭 4개 있으면 무게 x4 해야 하는 거 아니냐? [3] 로갤러(1.11) 06.19 105 0
461814 ㅌㅈ) 톱날탄환 왜 이렇게 빗나가는 거 같나 [9] ㅇㅇ(211.235) 06.19 100 0
461813 ㅌㅈ)엔트로피 광신도 참피임? [3] 미나미모토갤로그로 이동합니다. 06.19 89 0
461812 드포 더롱나이트 모드 타일셋을 만들어다오 인간얼굴새갤로그로 이동합니다. 06.19 78 0
461811 하루에 한 번 웨이시 증오하기 139일차 [1] ㅇㅇ(210.222) 06.19 63 2
461810 드포 모드테스트 하느라 하루다썼네 [1] 한남대가리뚝스딱스갤로그로 이동합니다. 06.18 88 1
461809 ㄷㅈ)변이술은 스텟 뭐올림? [7] 로갤러(118.220) 06.18 126 1
461808 ㅋㅌㅋdda)초능력 너프 먹었나 보네 [5] blister갤로그로 이동합니다. 06.18 132 0
461807 돌죽 게임에 나오는 아트워크랑 이름들 그냥 써도 되나보네 [3] ㅇㅇ(118.235) 06.18 148 0
461806 ㄷㅈ 리워크 디스 겜 꺼지는 버그있네 불블볼갤로그로 이동합니다. 06.18 71 0
461805 데이터베이스 논의 - 진행 현황 [19] ASCIIPhilia갤로그로 이동합니다. 06.18 419 18
461804 드포 커스텀 건물 모드 범용으로 만들려면 토큰뭐사용해야댐 [2] 한남대가리뚝스딱스(1.247) 06.18 61 0
461803 ㅂㅂ)군사기지이거 걔씹너프당했나보네 seeu갤로그로 이동합니다. 06.18 67 0
461802 ㄷㅈ) 드라코 컨져러 하면서 질문 [6] 로갤러(58.29) 06.18 83 0
461801 ㄷㅈ) 유튜브 32화 업로드 하였습니다. [3] 스톤골렘100갤로그로 이동합니다. 06.18 153 10
461800 로붕이들 안녕 [13] ㅇㅇ(119.197) 06.18 447 14
461799 ㅌㅈ) 팅커 보통 몇 투자하는 게 나음? [5] 로갤러(220.90) 06.18 72 0
461798 ㄷㅈ)db복사 관련해서 몇가지 의문점이 [12] 로갤러(175.198) 06.18 149 6
461797 ㅌㅈ) 톰죽 하면서 진짜 ㅈ같은거 (소신발언) [4] 톰갤러(61.39) 06.18 173 8
461796 ㄷㅍ) 모드순서때문에 씹혔나 맨아로내리니까 적용대네 한남대가리뚝스딱스(1.247) 06.18 57 0
461795 ㄷㅍ) 아래 원본코드임 [2] 한남대가리뚝스딱스(1.247) 06.18 101 0
461794 돌죽)리워크 디스메노스 전체적인 총평 [9] 와그너스갤로그로 이동합니다. 06.18 239 8
461793 ㄷㅈ 나는 db 복사 반대하는데 제안 하나 해봄 [12] 불블볼갤로그로 이동합니다. 06.18 141 1
461792 ㄷㅍ) 모드종족에 모드건물추가하는데 안데네 [8] 한남대가리뚝스딱스(1.247) 06.18 76 0
461791 ㄷㅈ) 가고일 시프눈나 머지법 올룬클 [4] ㅇㅇ(118.235) 06.18 100 3
461790 dda찍먹중인데 bn보다 쉬운부분도 있긴하네 [3] 로갤러(183.107) 06.18 139 0
461789 ㅋㅌㅋ)동료기능 질문 로갤러(1.226) 06.18 52 0
461788 전적 어뷰징 실제로 로갤에서도 있었잖아 로갤러(112.152) 06.18 132 1
461787 엘로나, 돌죽, 드포, 카타클같은거도 자동탐색 있음?? [10] 미나미모토갤로그로 이동합니다. 06.18 150 1
461786 의견이 대부분 기존 데이터베이스 복사 쪽으로 나뉘네 [42] ASCIIPhilia갤로그로 이동합니다. 06.18 491 8
461785 ㄷㅈ db얘기보고 외국사이트들 아이디 만들었는데 [2] ㅇㅇ갤로그로 이동합니다. 06.18 152 2
461784 CWZ(웹죽) 데이터베이스를 사용할 수 없는 이유 [4] ASCIIPhilia갤로그로 이동합니다. 06.18 317 9
461783 ㄷㅈ)뉴비첫15클 [5] 로갤러(116.121) 06.18 154 8
461782 서버 데이터베이스 관련 의견 수렴 [52] ASCIIPhilia갤로그로 이동합니다. 06.18 451 8
461781 서버 데이터베이스에 관한 이야기 - 토론 전문 [10] ASCIIPhilia갤로그로 이동합니다. 06.18 296 10
461780 ㅋㅌㅋㅂㅂ) 역시 밀봉에 3L는 쫌 과함 [3] 로갤러(220.116) 06.18 135 0
461779 ㅋㅌㅋ)이건 뭔 좆버그임 [7] Silly갤로그로 이동합니다. 06.18 138 2
461778 ㅋㄷㅋdda)뉴비일땐 차 개조 무서워 흑흑 하다가 [2] 로갤러(106.102) 06.18 105 0
461777 ㅋㅌㅋ)뉴비 행동력 질문 [4] 로갤러(1.226) 06.18 96 0
461776 ㅋㅌㅋ)이거 왜 크래시 뜨는거지 [1] Silly갤로그로 이동합니다. 06.18 90 0
461775 ㅋㅌㅋ 이거만 해주면 바랄거없다 ㅇㅇ(106.102) 06.18 61 0
461774 카타클은 차량 안 쓰면 존나 쉽게 질리지않나 [5] ㅇㅇ(106.102) 06.18 134 0
461773 서버를 잠시 중지했습니다 [7] ASCIIPhilia갤로그로 이동합니다. 06.18 494 12
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2