# csdc ##### Crawl Init file ############################################### # For descriptions of all options, as well as some more in-depth information # on setting them, consult the file # https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt # speedrun = false ##### Starting Screen ############################################### default_manual_training = true ##### Picking up and Dropping ####################################### :if speedrun then autopickup = $?!"/%\ autopickup_exceptions += qty :if you.race() == "Deep dwarf" then autofight_stop = 30 :else autofight_stop = 60 :end autofight_fire_stop = false autofight_caught = true fire_order = launcher, return, stone, tomahawk, javelin, rock, net macros += M \{167} o macros += M \{-1011} ===hit_closest_nomove macros += M \{-1012} z\{13}\{13} macros += M \{-1013} ( macros += M \{-1014} ) bindkey = [s] CMD_PREV_CMD_AGAIN ##### Messages and Display Enhancements ############################# hp_warning = 25 mp_warning = 25 show_game_time = true equip_bar = true msg_max_height = 12 more := force_more_message more += You fall through a shaft more += You enter a teleport trap more += You are suddenly yanked more += finished your manual more += finished forgetting more += is wielding a.* of distortion more += You are starting to lose your buoyancy more += is no longer charmed more += into view more += You miscast more += falls apart more += feel less protected from missiles more += Your icy armour evaporates more += You feel your flesh start more += You feel less resistant to hostile enchantments more += a plume of calcifying dust more += breathes miasma more += You are engulfed in seething chaos more += You are slowing down more += You are confused more += You revert more += dispelling energy hits you more += You feel your power leaking more += volcano erupts more += interdimensional caravan more += distant snort more += roar of battle more += wave of frost more += hiss of flowing sand more += sound of rushing water more += oppressive heat about you more += crackle of arcane power more += Found a gateway leading out of the Abyss more += Found a gateway leading deeper into the Abyss more += Found .* abyssal rune of Zot more += You feel a terrible weight on your shoulders more += .* resides here more += You start to feel a little slower more += You flicker more += Ouch! That really hurt! more += course through your body flash_screen_message += is wielding a.* of distortion :if you.race() == "Mummy" or you.race() == "Ghoul" or you.race() == "Vampire" then more += is wielding a.* of holy flash_screen_message += is wielding a.* of holy :end show_travel_trail = true default_show_all_skills = true ##### Items and Kill List ########################################### dump_book_spells = false # Opens skill menu at the beginning of the game (broken) { function ready() if you.turns() == 0 crawl.sendkeys("m") end end } { add_autopickup_func(function(it, name) if it.is_useless then return end if it.class(true) == "armour" then local good_slots = {cloak="Cloak", helmet="Helmet", gloves="Gloves", boots="Boots"} st, _ = it.subtype() if good_slots[st] ~= nil and items.equipped_at(good_slots[st]) == nil then return true end end end) }