디시인사이드 갤러리

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

갤러리 본문 영역

[저장용] 돌죽스타터팩

팽도리가조은걸요갤로그로 이동합니다. 2024.04.28 08:10:14
조회 811 추천 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/06/03 - -
459660 ㄷㅈ) 헌터 3룬클 해보려는데 종족 추천해줘 [4] ㅇㅇ(116.126) 05.06 86 0
459659 ㄷㅈ) 머포크 냉기 마전사 하려면 무슨 신 믿는게 좋을까 [3] 로갤러(110.14) 05.06 80 0
459658 ㄷㅈ)시작테마 코글린 [2] 로갤러(175.196) 05.06 107 1
459657 레펠미사일 추가ev가 몇정도대는거지 [2] seeu갤로그로 이동합니다. 05.06 83 1
459656 카타클) 지도가 이상해졌는데 무슨 키를 잘못누른걸까요? [2] 로갤러(121.173) 05.06 98 0
459655 머임 내 글 왜 지워짐 불블볼갤로그로 이동합니다. 05.06 74 2
459654 드포 spacefox 타일셋 나왔었네 [2] ㅇㅇ(223.39) 05.06 162 5
459653 ㅌㅈ) 저글링 3포인트밖에 안 되는 버그 가끔 생김?? [9] 로갤러(14.38) 05.06 123 0
459652 알케미 주력으로 클리어 한 로붕이 있음? [2] ㅇㅇ갤로그로 이동합니다. 05.06 82 0
459651 돌죽 뱀파이어 암살적마 올룬클 [6] Lmm갤로그로 이동합니다. 05.06 246 7
459650 ㅌㅈ) 스킬포인트 저글링하는거 버그 걸릴 때 있어? [2] 로갤러(106.101) 05.06 73 0
459649 모어...모어...펀...순.... [1] ㅇㅇ(118.235) 05.06 86 0
459648 돌품명품 출품 [1] 눕눕(220.65) 05.06 86 1
459647 ㄷㅈ)인챈터 연습하다보니 좀 실력 늘었다 [3] engine갤로그로 이동합니다. 05.06 116 2
459646 ㄷㅈ) 이장소는 어디일까요? [4] 로갤러(115.140) 05.06 260 8
459645 고정맵도 로그라이크라고 할수 있음? [6] ㅇㅇ(61.43) 05.06 390 7
459643 ㄷㅈ) 처음 보는 상점테마 [9] 로갤러(59.7) 05.06 415 14
459642 ㄷㅈ) 와 이게 좆됐다는 느낌이구나 [8] 가붕이는웃고있다갤로그로 이동합니다. 05.06 167 2
459641 ㄷㅈ) 모딩도 나름 재미있다 [3] ㅇㄹ(49.166) 05.06 120 3
459640 ㅋㅌㅋ)첫날밤 지나고 파밍은 어디 뭐부터 하는게 좋음? [5] ㅇㅇ갤로그로 이동합니다. 05.06 129 0
459639 ㅌㅈ)잠깐 오우거 로 처음부터 지팡이들고 지팡이 전투하면 [1] ssh0818갤로그로 이동합니다. 05.06 66 0
459638 검전사하면신기할정도로사라지는템 [1] waagh(175.120) 05.06 111 1
459637 ㅌㅈ)아 뒤틀린자나 다시 할까 적 잡아먹는거 재미있었는데 ssh0818갤로그로 이동합니다. 05.06 54 0
459636 ㄷㅈ) 이거 스킬 어떻게 찍어야 할지 추천 좀 [11] 로갤러(110.14) 05.06 141 1
459635 초반몹 기믹이 후반몹만큼까다로워진거같음 [4] waagh(175.120) 05.06 136 0
459634 개인적으로 젬먹기어려운순 [2] waagh!!(175.120) 05.06 85 0
459633 ㄷㅈ)서리역병 진짜 애매하네 [2] blister갤로그로 이동합니다. 05.06 111 2
459632 하루에 한 번 웨이시 증오하기 95일차 ㅇㅇ(125.176) 05.06 45 1
459631 전사는 이러나저러나 리치폼이 최고인거같음 waagh!!(175.120) 05.06 74 0
459630 근데 리치폼이어도 유데몬블레이드 쥐어지던데 [2] waagh!!(175.120) 05.06 107 1
459629 코글린 고자그 검투사 올젬 올룬 클리어 [14] waagh!!(175.120) 05.05 402 17
459628 ㄷㅈ) 문어쉐싶 매니폴드 씀? [2] 로갤러(59.7) 05.05 88 0
459627 ㅋㅌㅋㅂㅂ)토끼 변이 모드 만들었다 [2] 로갤러(175.114) 05.05 209 11
459626 ㄷㅈ)자동 탐험 누르면 피 다 채우고 이동하는 rc 좀 [1] blister갤로그로 이동합니다. 05.05 73 1
459625 ㄷㅈ)어 진찌 최소공속만 찍고 투척찍기 좋은데? ssh0818갤로그로 이동합니다. 05.05 73 0
459624 ㄷㅈ)경험 포션 픽셀 아트 rc 때문에 나오는 거였나 보네 blister갤로그로 이동합니다. 05.05 66 2
459623 톰죽) 에휴 시발 진행 불가 버그 걸렸네 [1] ㄹㄷ(119.192) 05.05 80 2
459622 ㅌㅈ 질문 [1] 로갤러(125.240) 05.05 69 0
459621 두번째로 깊게 갔다 [16] 환월갤로그로 이동합니다. 05.05 94 0
459620 코글린올젬주웠다!!!!!! [4] waagh!!(175.120) 05.05 95 2
459619 근데 요즘 쉐싶 ㄹㅇ 너무힘들더라 [3] seeu갤로그로 이동합니다. 05.05 95 0
459618 진짜줠라쎈코글린 [3] waagh!!(175.120) 05.05 106 0
459617 ㄷㅈ)뭐지 복귀유저 이벤트인가 [4] ssh0818갤로그로 이동합니다. 05.05 104 0
459616 톰죽) 아 ㅅㅂ 걍 깬셈 치고 여기까지 할까 [3] ㄹㄷ(119.192) 05.05 103 0
459615 드디어 전종족으로 Fighter 클리어 성공!!! [17] 팽도리가조은걸요갤로그로 이동합니다. 05.05 351 13
459614 ㅋㅌㅋ)dda 모드 설정 나는 이렇게 하고 함 [1] ㅇㅇ(115.138) 05.05 172 0
459613 화살 쏘고 이속 주입물 쓴 뒤에 내가 쏜 화살 따라가기 [2] ㄹㄷ(119.192) 05.05 83 0
459612 톰죽) 픽다트 화살들 이거들 좋은것들 임? [2] ㄹㄷ(119.192) 05.05 73 0
459611 다크갓... ssh0818갤로그로 이동합니다. 05.05 49 0
459610 ㄷㅈ) 뉴비 미노타 중인데 질문좀 [2] 로갤러(110.14) 05.05 77 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2