├── .gitignore ├── Cargo.toml ├── README.md ├── TODO ├── res ├── bufftimer.png └── mutool.toml └── src ├── ext ├── func.rs ├── mod.rs └── model.rs ├── filter ├── item.pest ├── itemdb.rs └── mod.rs ├── lib.rs ├── main ├── mod.rs ├── module │ ├── auto_health_potion.rs │ ├── auto_repair.rs │ ├── buff_timer.rs │ ├── death_notifier.rs │ ├── loot_filter.rs │ ├── loot_notifier.rs │ ├── mod.rs │ └── user_stats.rs └── notify │ ├── mod.rs │ └── pushbullet.rs └── util.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/TODO -------------------------------------------------------------------------------- /res/bufftimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/res/bufftimer.png -------------------------------------------------------------------------------- /res/mutool.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/res/mutool.toml -------------------------------------------------------------------------------- /src/ext/func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/ext/func.rs -------------------------------------------------------------------------------- /src/ext/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/ext/mod.rs -------------------------------------------------------------------------------- /src/ext/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/ext/model.rs -------------------------------------------------------------------------------- /src/filter/item.pest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/filter/item.pest -------------------------------------------------------------------------------- /src/filter/itemdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/filter/itemdb.rs -------------------------------------------------------------------------------- /src/filter/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/filter/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/mod.rs -------------------------------------------------------------------------------- /src/main/module/auto_health_potion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/auto_health_potion.rs -------------------------------------------------------------------------------- /src/main/module/auto_repair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/auto_repair.rs -------------------------------------------------------------------------------- /src/main/module/buff_timer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/buff_timer.rs -------------------------------------------------------------------------------- /src/main/module/death_notifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/death_notifier.rs -------------------------------------------------------------------------------- /src/main/module/loot_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/loot_filter.rs -------------------------------------------------------------------------------- /src/main/module/loot_notifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/loot_notifier.rs -------------------------------------------------------------------------------- /src/main/module/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/mod.rs -------------------------------------------------------------------------------- /src/main/module/user_stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/module/user_stats.rs -------------------------------------------------------------------------------- /src/main/notify/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/notify/mod.rs -------------------------------------------------------------------------------- /src/main/notify/pushbullet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/main/notify/pushbullet.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/mutool-rs/HEAD/src/util.rs --------------------------------------------------------------------------------