├── .github └── workflows │ ├── ensure_header.yml │ └── generate_metadata.yml ├── .gitignore ├── Macros ├── Advanced │ ├── Examples │ │ ├── external_services.py │ │ ├── find_items_by_name.py │ │ ├── hide_all_houses.py │ │ ├── linq_enumerate_mobiles.py │ │ └── playsound_trade_window.py │ ├── Gumps │ │ └── extract_hp_alore_gump.py │ ├── Movement │ │ └── faster_run.py │ ├── Sampire │ │ └── sampire_ai.py │ └── wpfwindowxamllayoutexample.py ├── Common │ ├── check_durability.py │ └── mobile_query.py ├── Crafting │ ├── Alchemy │ │ └── potion_crafter.py │ ├── Blacksmith │ │ ├── AddToDeedCreatedItems.py │ │ └── SmeltPromptedItems.py │ ├── HUO-Lumberjacker.py │ ├── Mining │ │ └── smelt_ore.py │ ├── Tailoring │ │ └── tailor-bod-filler.py │ ├── carpentryfrom3to1.py │ ├── makelastsell.py │ ├── potionmaker.py │ ├── recallminingmargover.py │ ├── scrollmaker.py │ └── smeltitems.py ├── Misc │ └── boatcontrolui.py ├── PVM │ └── bandage_pets.py ├── Resource Gathering │ ├── CollectDeedsLuna.py │ ├── SOSSail.py │ ├── autominer.py │ ├── lumberjackarea.py │ └── miningrandommacro.py ├── Resources │ ├── leathergatherer.py │ ├── recalllumber.py │ └── recallminer.py ├── Skill Training │ └── armsloretraining.py ├── Skills Crafting │ ├── makelastcount.py │ └── simpleminer.py ├── Skills │ ├── Animal Lore │ │ └── petskillswindow.py │ ├── Animal Taming │ │ ├── train_animal_taming.py │ │ └── train_animal_taming_mastery.py │ ├── Discordance │ │ └── train_discordance.py │ ├── Evaluating Intelligence │ │ └── train_evaluating_intelligence.py │ ├── Healing │ │ └── healingtrainer.py │ ├── Magery │ │ └── train_magery.py │ ├── Mysticism │ │ └── train_mysticism.py │ ├── Peacemaking │ │ └── train_peacemaking.py │ ├── Provocation │ │ └── train_provocation.py │ ├── circuittrapsolver.py │ ├── lockpicktraininghelper.py │ ├── trainchivalry.py │ ├── training.py │ ├── trainingmagery.py │ ├── trainingspelweaving.py │ └── trainnecromancy.py ├── Utility │ ├── MacroUI.py │ ├── Treasure Map Decoder.py │ ├── combinestacks.py │ ├── jelweryboxfilter.py │ ├── recallbuyer.py │ ├── runebookcloner.py │ └── setz.py └── metadata.json └── README.md /.github/workflows/ensure_header.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/.github/workflows/ensure_header.yml -------------------------------------------------------------------------------- /.github/workflows/generate_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/.github/workflows/generate_metadata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Codespaces folder 2 | .venv/ -------------------------------------------------------------------------------- /Macros/Advanced/Examples/external_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Examples/external_services.py -------------------------------------------------------------------------------- /Macros/Advanced/Examples/find_items_by_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Examples/find_items_by_name.py -------------------------------------------------------------------------------- /Macros/Advanced/Examples/hide_all_houses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Examples/hide_all_houses.py -------------------------------------------------------------------------------- /Macros/Advanced/Examples/linq_enumerate_mobiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Examples/linq_enumerate_mobiles.py -------------------------------------------------------------------------------- /Macros/Advanced/Examples/playsound_trade_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Examples/playsound_trade_window.py -------------------------------------------------------------------------------- /Macros/Advanced/Gumps/extract_hp_alore_gump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Gumps/extract_hp_alore_gump.py -------------------------------------------------------------------------------- /Macros/Advanced/Movement/faster_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Movement/faster_run.py -------------------------------------------------------------------------------- /Macros/Advanced/Sampire/sampire_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/Sampire/sampire_ai.py -------------------------------------------------------------------------------- /Macros/Advanced/wpfwindowxamllayoutexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Advanced/wpfwindowxamllayoutexample.py -------------------------------------------------------------------------------- /Macros/Common/check_durability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Common/check_durability.py -------------------------------------------------------------------------------- /Macros/Common/mobile_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Common/mobile_query.py -------------------------------------------------------------------------------- /Macros/Crafting/Alchemy/potion_crafter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/Alchemy/potion_crafter.py -------------------------------------------------------------------------------- /Macros/Crafting/Blacksmith/AddToDeedCreatedItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/Blacksmith/AddToDeedCreatedItems.py -------------------------------------------------------------------------------- /Macros/Crafting/Blacksmith/SmeltPromptedItems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/Blacksmith/SmeltPromptedItems.py -------------------------------------------------------------------------------- /Macros/Crafting/HUO-Lumberjacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/HUO-Lumberjacker.py -------------------------------------------------------------------------------- /Macros/Crafting/Mining/smelt_ore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/Mining/smelt_ore.py -------------------------------------------------------------------------------- /Macros/Crafting/Tailoring/tailor-bod-filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/Tailoring/tailor-bod-filler.py -------------------------------------------------------------------------------- /Macros/Crafting/carpentryfrom3to1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/carpentryfrom3to1.py -------------------------------------------------------------------------------- /Macros/Crafting/makelastsell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/makelastsell.py -------------------------------------------------------------------------------- /Macros/Crafting/potionmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/potionmaker.py -------------------------------------------------------------------------------- /Macros/Crafting/recallminingmargover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/recallminingmargover.py -------------------------------------------------------------------------------- /Macros/Crafting/scrollmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/scrollmaker.py -------------------------------------------------------------------------------- /Macros/Crafting/smeltitems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Crafting/smeltitems.py -------------------------------------------------------------------------------- /Macros/Misc/boatcontrolui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Misc/boatcontrolui.py -------------------------------------------------------------------------------- /Macros/PVM/bandage_pets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/PVM/bandage_pets.py -------------------------------------------------------------------------------- /Macros/Resource Gathering/CollectDeedsLuna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resource Gathering/CollectDeedsLuna.py -------------------------------------------------------------------------------- /Macros/Resource Gathering/SOSSail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resource Gathering/SOSSail.py -------------------------------------------------------------------------------- /Macros/Resource Gathering/autominer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resource Gathering/autominer.py -------------------------------------------------------------------------------- /Macros/Resource Gathering/lumberjackarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resource Gathering/lumberjackarea.py -------------------------------------------------------------------------------- /Macros/Resource Gathering/miningrandommacro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resource Gathering/miningrandommacro.py -------------------------------------------------------------------------------- /Macros/Resources/leathergatherer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resources/leathergatherer.py -------------------------------------------------------------------------------- /Macros/Resources/recalllumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resources/recalllumber.py -------------------------------------------------------------------------------- /Macros/Resources/recallminer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Resources/recallminer.py -------------------------------------------------------------------------------- /Macros/Skill Training/armsloretraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skill Training/armsloretraining.py -------------------------------------------------------------------------------- /Macros/Skills Crafting/makelastcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills Crafting/makelastcount.py -------------------------------------------------------------------------------- /Macros/Skills Crafting/simpleminer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills Crafting/simpleminer.py -------------------------------------------------------------------------------- /Macros/Skills/Animal Lore/petskillswindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Animal Lore/petskillswindow.py -------------------------------------------------------------------------------- /Macros/Skills/Animal Taming/train_animal_taming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Animal Taming/train_animal_taming.py -------------------------------------------------------------------------------- /Macros/Skills/Animal Taming/train_animal_taming_mastery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Animal Taming/train_animal_taming_mastery.py -------------------------------------------------------------------------------- /Macros/Skills/Discordance/train_discordance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Discordance/train_discordance.py -------------------------------------------------------------------------------- /Macros/Skills/Evaluating Intelligence/train_evaluating_intelligence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Evaluating Intelligence/train_evaluating_intelligence.py -------------------------------------------------------------------------------- /Macros/Skills/Healing/healingtrainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Healing/healingtrainer.py -------------------------------------------------------------------------------- /Macros/Skills/Magery/train_magery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Magery/train_magery.py -------------------------------------------------------------------------------- /Macros/Skills/Mysticism/train_mysticism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Mysticism/train_mysticism.py -------------------------------------------------------------------------------- /Macros/Skills/Peacemaking/train_peacemaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Peacemaking/train_peacemaking.py -------------------------------------------------------------------------------- /Macros/Skills/Provocation/train_provocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/Provocation/train_provocation.py -------------------------------------------------------------------------------- /Macros/Skills/circuittrapsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/circuittrapsolver.py -------------------------------------------------------------------------------- /Macros/Skills/lockpicktraininghelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/lockpicktraininghelper.py -------------------------------------------------------------------------------- /Macros/Skills/trainchivalry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/trainchivalry.py -------------------------------------------------------------------------------- /Macros/Skills/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/training.py -------------------------------------------------------------------------------- /Macros/Skills/trainingmagery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/trainingmagery.py -------------------------------------------------------------------------------- /Macros/Skills/trainingspelweaving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/trainingspelweaving.py -------------------------------------------------------------------------------- /Macros/Skills/trainnecromancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Skills/trainnecromancy.py -------------------------------------------------------------------------------- /Macros/Utility/MacroUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/MacroUI.py -------------------------------------------------------------------------------- /Macros/Utility/Treasure Map Decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/Treasure Map Decoder.py -------------------------------------------------------------------------------- /Macros/Utility/combinestacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/combinestacks.py -------------------------------------------------------------------------------- /Macros/Utility/jelweryboxfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/jelweryboxfilter.py -------------------------------------------------------------------------------- /Macros/Utility/recallbuyer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/recallbuyer.py -------------------------------------------------------------------------------- /Macros/Utility/runebookcloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/runebookcloner.py -------------------------------------------------------------------------------- /Macros/Utility/setz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/Utility/setz.py -------------------------------------------------------------------------------- /Macros/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/Macros/metadata.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reetus/ClassicAssist-Macros/HEAD/README.md --------------------------------------------------------------------------------