├── .gitignore ├── Changs ├── LICENSE ├── README.md ├── core ├── build.sh ├── conf │ ├── env │ └── special_list.txt ├── robot-tuling │ ├── README-Tuling │ ├── README-cJSON │ ├── cJSON.c │ ├── cJSON.h │ └── tuling-cli.c ├── robot.sh ├── robot │ ├── allow.lst │ ├── ans.txt │ ├── ans_abs.txt │ ├── err.lst │ ├── findans.c │ ├── getdata.c │ ├── normal.sh │ ├── ques.txt │ ├── ques_abs.txt │ ├── same.c │ ├── same_abs.c │ └── study.sh └── start.sh ├── doc └── robot.txt ├── screenshot └── screenshot.png ├── start.pl ├── tools ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── screenshots │ ├── screenshot1.png │ ├── screenshot2.png │ ├── webqq_qr.png │ └── weixin_qr.jpg └── viewqr.c └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/.gitignore -------------------------------------------------------------------------------- /Changs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/Changs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/README.md -------------------------------------------------------------------------------- /core/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/build.sh -------------------------------------------------------------------------------- /core/conf/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/conf/env -------------------------------------------------------------------------------- /core/conf/special_list.txt: -------------------------------------------------------------------------------- 1 | # input your special care QQ number here 2 | -------------------------------------------------------------------------------- /core/robot-tuling/README-Tuling: -------------------------------------------------------------------------------- 1 | Project home page : 2 | http://www.tuling123.com 3 | -------------------------------------------------------------------------------- /core/robot-tuling/README-cJSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot-tuling/README-cJSON -------------------------------------------------------------------------------- /core/robot-tuling/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot-tuling/cJSON.c -------------------------------------------------------------------------------- /core/robot-tuling/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot-tuling/cJSON.h -------------------------------------------------------------------------------- /core/robot-tuling/tuling-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot-tuling/tuling-cli.c -------------------------------------------------------------------------------- /core/robot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot.sh -------------------------------------------------------------------------------- /core/robot/allow.lst: -------------------------------------------------------------------------------- 1 | # 写下管理员QQ号,以使用机器人的模糊学习功能 2 | -------------------------------------------------------------------------------- /core/robot/ans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/ans.txt -------------------------------------------------------------------------------- /core/robot/ans_abs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/ans_abs.txt -------------------------------------------------------------------------------- /core/robot/err.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/err.lst -------------------------------------------------------------------------------- /core/robot/findans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/findans.c -------------------------------------------------------------------------------- /core/robot/getdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/getdata.c -------------------------------------------------------------------------------- /core/robot/normal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/normal.sh -------------------------------------------------------------------------------- /core/robot/ques.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/ques.txt -------------------------------------------------------------------------------- /core/robot/ques_abs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/ques_abs.txt -------------------------------------------------------------------------------- /core/robot/same.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/same.c -------------------------------------------------------------------------------- /core/robot/same_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/same_abs.c -------------------------------------------------------------------------------- /core/robot/study.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/robot/study.sh -------------------------------------------------------------------------------- /core/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/core/start.sh -------------------------------------------------------------------------------- /doc/robot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/doc/robot.txt -------------------------------------------------------------------------------- /screenshot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/screenshot/screenshot.png -------------------------------------------------------------------------------- /start.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/start.pl -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | /viewqr 2 | -------------------------------------------------------------------------------- /tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/LICENSE -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/screenshots/screenshot1.png -------------------------------------------------------------------------------- /tools/screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/screenshots/screenshot2.png -------------------------------------------------------------------------------- /tools/screenshots/webqq_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/screenshots/webqq_qr.png -------------------------------------------------------------------------------- /tools/screenshots/weixin_qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/screenshots/weixin_qr.jpg -------------------------------------------------------------------------------- /tools/viewqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljkgpxs/QRobot/HEAD/tools/viewqr.c -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | QRobot Project 2 | 3 | Version 2.5.1 4 | By Ljkgpxs 5 | --------------------------------------------------------------------------------