├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── fgobot ├── __init__.py ├── bot.py ├── config │ └── buttons.json ├── device.py ├── images │ ├── 1_3.png │ ├── 2_3.png │ ├── 3_3.png │ ├── attack.png │ ├── bond.png │ ├── choose_object.png │ ├── close.png │ ├── friend_caster.png │ ├── friend_pick.png │ ├── gain_exp.png │ ├── menu.png │ ├── next_step.png │ ├── no.png │ ├── not_apply.png │ ├── please_tap.png │ ├── refresh_friends.png │ ├── start_quest.png │ └── yes.png └── tm.py ├── friend_qp.png ├── my_bot.py ├── qp.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/README.md -------------------------------------------------------------------------------- /fgobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/__init__.py -------------------------------------------------------------------------------- /fgobot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/bot.py -------------------------------------------------------------------------------- /fgobot/config/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/config/buttons.json -------------------------------------------------------------------------------- /fgobot/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/device.py -------------------------------------------------------------------------------- /fgobot/images/1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/1_3.png -------------------------------------------------------------------------------- /fgobot/images/2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/2_3.png -------------------------------------------------------------------------------- /fgobot/images/3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/3_3.png -------------------------------------------------------------------------------- /fgobot/images/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/attack.png -------------------------------------------------------------------------------- /fgobot/images/bond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/bond.png -------------------------------------------------------------------------------- /fgobot/images/choose_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/choose_object.png -------------------------------------------------------------------------------- /fgobot/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/close.png -------------------------------------------------------------------------------- /fgobot/images/friend_caster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/friend_caster.png -------------------------------------------------------------------------------- /fgobot/images/friend_pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/friend_pick.png -------------------------------------------------------------------------------- /fgobot/images/gain_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/gain_exp.png -------------------------------------------------------------------------------- /fgobot/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/menu.png -------------------------------------------------------------------------------- /fgobot/images/next_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/next_step.png -------------------------------------------------------------------------------- /fgobot/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/no.png -------------------------------------------------------------------------------- /fgobot/images/not_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/not_apply.png -------------------------------------------------------------------------------- /fgobot/images/please_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/please_tap.png -------------------------------------------------------------------------------- /fgobot/images/refresh_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/refresh_friends.png -------------------------------------------------------------------------------- /fgobot/images/start_quest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/start_quest.png -------------------------------------------------------------------------------- /fgobot/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/images/yes.png -------------------------------------------------------------------------------- /fgobot/tm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/fgobot/tm.py -------------------------------------------------------------------------------- /friend_qp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/friend_qp.png -------------------------------------------------------------------------------- /my_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/my_bot.py -------------------------------------------------------------------------------- /qp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/qp.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/will7101/fgo-bot/HEAD/setup.py --------------------------------------------------------------------------------