# TEAMNAME Zot Sluts # TEAMMEMBERS shmup ces Lucai neckro23 helicomatic # https://crawl.develz.org/tournament/0.24/ # https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt # display_char https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt#L2448 ##### travel quicker, showing path used OPTION = show_travel_trail, travel_delay:-1, rest_delay: -1 explore+stop = explore_stop += items,stairs,shops,altars,gates,portals,runed_doors explore_stop += greedy_items,greedy_pickup_smart,greedy_visited_item_stack auto_exclude = auto_exclude += oklob,statue,roxanne,hyperactive,lightning spire ##### things for impatient, bad players OPTION = hp_warning:60, autofight_stop:65 ##### ui improvements OPTION = clear_messages, use_animations:hp, easy_confirm:all, small_more ##### food++ OPTION = easy_eat_chunks, confirm_butcher:never ##### training OPTION = default_manual_training ##### a e s t h e t i c char_set = ascii # OPTION = bold_brightens_foreground, allow_extended_colours, show_player_species display_char = wall:x2592 display_char = permawall:x2593 display_char = wall_magic:x2591 cset_unicode = cloud:# cset_unicode = cloud_weak:xa7 cset_unicode = cloud_fading:x263c feature = (closed|runed|sealed) door {+,,} ##### loot settings item_stack_summary_minimum = 1 pickup_menu_limit = 1 autopickup = $?!+"/%|( ae := autopickup_exceptions # nullifying the effect of the most annoying 0.24 commit: ae += >ring of (poi|resist cor|fli|see) ae += >amulet of ae += >scrolls? of (amn|vuln|noise) ae += >potions? of ligni ae += >wand of rand ae += >ring of (protection from (mag|fire|cold)|mag|stealth|ice|fire|pos|wiz) ae ^= 0 then return end if it.artefact then return true end local cur = items.equipped_at(good_slots[st]) if cur == nil then return true end if cur.branded or cur.artefact then return end if it.branded then return true end elseif st == "body" then local cur = items.equipped_at("armour") if cur == nil then return end if cur.name("qual") ~= it.name("qual") then return end if it.artefact then return true end if cur.branded or cur.artefact then return end if it.branded then return true end end end return end -- Autopickup of stackable items local function pickup_stackable(it, name) local class = it.class(true) if class == "potion" or class == "scroll" or class == "missile" or class == "miscellaneous" then if it.stacks() then return true end end return end clear_autopickup_funcs() add_autopickup_func(pickup_equipment) add_autopickup_func(pickup_stackable) }