# TEAMCAPTAIN sentinel ###THIS IS RC FOR STREAKING!!! ############ GENERAL SETTINGS ############ default_manual_training = true show_more = false use_animations = false autofight_stop = 60 note_messages += magical essence is drained by the effort ######AUTOPICKUP###### ae := autopickup_exceptions ae += ## macros += M 9 G\{13} dos_use_background_intensity = true view_max_width = 80 view_max_height = 70 # Add the following to your options file to automatically pick up # armour for non-body armour slots (gloves, boots, etc.), if you don't # already have an item equipped there. { 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) }