디시인사이드 갤러리

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

갤러리 본문 영역

[저장용] 돌죽스타터팩

팽도리가조은걸요갤로그로 이동합니다. 2024.04.28 08:10:14
조회 771 추천 24 댓글 8

호주죽

https://crawl.project357.org/


전적사이트

https://dcss-stats.vercel.app


사운드패치

Step1

https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=ko

Step2

http://crawl.chaosforge.org/Skill_titles


나무위키

https://namu.wiki/w/%EB%8D%98%EC%A0%84%20%ED%81%AC%EB%A1%A4


##########RC##########


always_show_gems = true


travel_delay = 0


explore_delay = 0


more_gem_info = true


show_more = false


autofight_stop = 70


view_delay = 200


tile_show_demon_tier = True


tile_show_threat_levels = tough nasty


#$ lab_sound_on = true


default_manual_training = true


more += It is wielding.*of distortion


more += She is wielding.*of distortion


more += He is wielding.*of distortion


more += Deactivating autopickup


#$ lab_disable_mouse_move = true


always_show_zot = true


show_more = false


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


tile_font_crt_family = Consolas


tile_font_stat_family = Consolas


tile_font_msg_family = Consolas


tile_font_lbl_family = Consolas


################

## 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

}

추천 비추천

24

고정닉 7

0

댓글 영역

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

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 어떤 상황이 닥쳐도 지갑 절대 안 열 것 같은 스타는? 운영자 24/05/20 - -
AD 희귀 정령 획득 기회! <아스달 연대기> 출석 이벤트 운영자 24/05/23 - -
공지 로그라이크 갤러리 이용 안내 [53] 운영자 16.04.08 79201 24
460737 포케로그 첫판 뉴비 전망 좀 봐줘 [1] 로갤러(124.54) 08:47 10 0
460736 톰죽 번역 어떰? [3] 로갤러(1.228) 08:37 8 0
460735 와 근데 다이스 무섭게 터질땐 진짜 육성으로 어! 소리나옴 [1] 로갤러(112.152) 08:37 17 0
460734 urw) 외국상인 한번 잡아보니까 두번은 쉽네 로갤러(175.198) 08:33 8 0
460733 드포 cold 지형도 한번 해보고 싶어서 골랐는데 [2] ㅇㅇ갤로그로 이동합니다. 05:56 22 0
460732 ㅋㅌㅋ ㅂㅂ 섬감옥 탈출 은근 어렵네 [1] ㅇㅇ(117.123) 05:46 26 0
460731 ㅋㅌㅋ)예전에 책이 도저히 안나와서 쇼핑물 간적 있는데 ssh0818갤로그로 이동합니다. 05:41 20 0
460730 아 근데 거미줄로 로프만든거 인장력 확인하는 영상 봤는데 ssh0818갤로그로 이동합니다. 04:41 28 0
460729 난 urw 사서 해볼려했는데 시야 시스템 불편해서 못하겠더라 [1] ssh0818갤로그로 이동합니다. 04:34 26 1
460728 하루에 한 번 웨이시 증오하기 114일차 [1] ㅇㅇ(210.222) 03:02 24 4
460727 urw) 외국상인 사냥 성공했다 [1] 로갤러(175.198) 02:48 55 1
460726 주피터헬)사람은 피곤할때 자야한다... [2] 와그너스갤로그로 이동합니다. 02:19 32 0
460725 ㄷㅈ)원래 계단에서 매수 쓰면 아래 브랜치에 적용됨? [3] blister갤로그로 이동합니다. 01:52 57 1
460724 ㄷㅈ) 손가락 늘려주는 목걸이도 있네 [2] ㅇㅇ갤로그로 이동합니다. 01:17 61 0
460723 대마법사 무너 (OpCj) 올룬클! [2] 팽도리가조은걸요갤로그로 이동합니다. 01:07 59 1
460722 ㅌㅈ) 이게 끔살이라는 거구나 [3] 로갤러(116.47) 00:54 58 1
460721 ㅋㅌㅋㅂㅂ)권총렙 올리는건 9미리 실탄 쏴대는게 최고임? [1] ㅇㅇ(223.62) 00:17 38 0
460720 ㄷㅈ)이건 뭐 법사는 대놓고 뒤져라 지형이네 [2] blister갤로그로 이동합니다. 00:14 68 5
460719 트로그 ****** 광폭화tt에 광역 혼란&마비 넣어주면 안되나 [1] 롬롬갤로그로 이동합니다. 05.24 33 1
460718 로틀딱을 위한 스팀기능 [2] 로갤러(1.237) 05.24 69 2
460717 ㅌㅈ) 톰죽 뉴빈데 진짜 꿀잼겜이네 [3] 로갤러(116.47) 05.24 61 0
460716 트로그 진짜 걍 처형부대 소환하는거 멋은있겠다 waagh!!(175.120) 05.24 47 0
460715 ㄷㅈ) 문어 개재밌는데 개어렵다 [3] ㅇㅇ(59.0) 05.24 55 0
460714 pc로 할수있는 로그류 추천좀요 [8] 로갤러(1.253) 05.24 77 0
460713 트로그 상향 이그나이트 매직 ㄷㄷㄷ [2] LF.갤로그로 이동합니다. 05.24 83 0
460712 ㄷㅈ) 개미맨도 큰 바위 던질 수 있게 해줘야함 [7] ㅇㅇ(114.205) 05.24 73 3
460711 ㅋㅌㅋ)거대 곤충도 생명 [1] 로갤러(221.157) 05.24 88 3
460710 엘린) 베타는 25~26일 부터 시작 베타 코드 배포는 6월초 ㅇㅇ(125.136) 05.24 36 1
460709 법사뉴비 질문좀 [2] 로갤러(119.205) 05.24 35 0
460708 urw) 다친 동물 치료는 못해주네 [4] 로갤러(175.198) 05.24 72 0
460707 ㅍㅌㅅ) 파토스 첫 승천했는데 [2] 로갤러(222.235) 05.24 56 0
460706 ㅋㅌㅋㄷㄷㅇ)이거 게임 시작하고 나면 머리색 못바꿈? [5] ㅇㅇ(58.125) 05.24 49 0
460705 ㄷㅈ) 펠광 3룬이후 진로 질문 [3] 로갤러(211.231) 05.24 57 0
460704 펠리드 미라 문어 다 올룬 몇번이고 해봤는데 [2] ㅇㅇ(121.88) 05.24 56 0
460703 전사플 잘하는애 있냐 관전좀할래 [3] 로갤러(112.152) 05.24 76 0
460702 ㄷㅈ) 트로그 솔찍히 버프 좀 해줬으면 좋겠음 [12] 로갤러(106.71) 05.24 123 1
460701 펠리드 부활을 몹 한가운데 해주는건 뭐냐 [1] ㅇㅇ갤로그로 이동합니다. 05.24 68 1
460700 엘린 베타 내는게 6월 초로 잡고있다 했나 [6] ssh0818갤로그로 이동합니다. 05.24 68 1
460699 포케로그 아직 apk는 없는거지? [2] 로갤러(118.235) 05.24 100 0
460698 ㄷㅈ)펠광 변이 어떻게 갈아탐? [1] 로갤러(211.231) 05.24 52 0
460697 ㄷㅈ) dcss.stat 나만 접속 안됨? [1] 스톤골렘100갤로그로 이동합니다. 05.24 58 0
460696 ㄷㅈ) 인생 첫 올룬클했습니다 [5] ㅇㅇ(220.78) 05.24 179 10
460695 ㄷㅈ) 트뮤 스타터팩 [2] 로갤러(211.231) 05.24 81 2
460694 웹죽은 왜 아직도 터져있냐 서버관리자 나와봐 [3] 로갤러(222.96) 05.24 114 3
460693 피방와서 돌죽하니까 기분 묘하네 [6] ㅇㅇ(118.235) 05.24 133 5
460692 우지안이랑 우스카요는 진짜 잘 만들지 않음? [4] ㅇㅇ(223.39) 05.24 95 0
460691 ㄷㅈ) 랜덤제단 지이바 질문 [3] 로갤러(222.96) 05.24 40 1
460690 포켓로그 하다가 졌는데 [4] ㅁㄴㅇㄹ갤로그로 이동합니다. 05.24 93 0
460689 ㄷㅈ)돌품명품 출품합니다 [2] 로갤러(39.115) 05.24 88 8
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2