├── .gitattributes ├── .gitignore ├── README.md ├── apps ├── Administrator.js ├── Command.js ├── Players.js ├── cdk.js ├── index.js ├── mail.js └── rule.js ├── default_config ├── birthday.yaml ├── birthdaymail.yaml ├── cdk.yaml ├── command.yaml ├── items.yaml ├── mail.yaml ├── other.yaml ├── server.yaml └── 请勿修改此文件夹下的任何文件.txt ├── index.js └── resources ├── Data.js ├── help ├── image │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── bg.jpg ├── index.css ├── index.html └── index.json ├── players ├── cdk-自定义.png ├── cdk-随机.png ├── help-alias.png ├── index.css ├── index.html └── sr.ttf └── render.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config 2 | data 3 | .idea 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /apps/Administrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/Administrator.js -------------------------------------------------------------------------------- /apps/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/Command.js -------------------------------------------------------------------------------- /apps/Players.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/Players.js -------------------------------------------------------------------------------- /apps/cdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/cdk.js -------------------------------------------------------------------------------- /apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/index.js -------------------------------------------------------------------------------- /apps/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/mail.js -------------------------------------------------------------------------------- /apps/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/apps/rule.js -------------------------------------------------------------------------------- /default_config/birthday.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/birthday.yaml -------------------------------------------------------------------------------- /default_config/birthdaymail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/birthdaymail.yaml -------------------------------------------------------------------------------- /default_config/cdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/cdk.yaml -------------------------------------------------------------------------------- /default_config/command.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/command.yaml -------------------------------------------------------------------------------- /default_config/items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/items.yaml -------------------------------------------------------------------------------- /default_config/mail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/mail.yaml -------------------------------------------------------------------------------- /default_config/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/other.yaml -------------------------------------------------------------------------------- /default_config/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/default_config/server.yaml -------------------------------------------------------------------------------- /default_config/请勿修改此文件夹下的任何文件.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/index.js -------------------------------------------------------------------------------- /resources/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/Data.js -------------------------------------------------------------------------------- /resources/help/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/1.png -------------------------------------------------------------------------------- /resources/help/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/2.png -------------------------------------------------------------------------------- /resources/help/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/3.png -------------------------------------------------------------------------------- /resources/help/image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/4.png -------------------------------------------------------------------------------- /resources/help/image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/5.png -------------------------------------------------------------------------------- /resources/help/image/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/6.png -------------------------------------------------------------------------------- /resources/help/image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/7.png -------------------------------------------------------------------------------- /resources/help/image/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/8.png -------------------------------------------------------------------------------- /resources/help/image/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/image/bg.jpg -------------------------------------------------------------------------------- /resources/help/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/index.css -------------------------------------------------------------------------------- /resources/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/index.html -------------------------------------------------------------------------------- /resources/help/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/help/index.json -------------------------------------------------------------------------------- /resources/players/cdk-自定义.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/players/cdk-自定义.png -------------------------------------------------------------------------------- /resources/players/cdk-随机.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/players/cdk-随机.png -------------------------------------------------------------------------------- /resources/players/help-alias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/players/help-alias.png -------------------------------------------------------------------------------- /resources/players/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/players/index.css -------------------------------------------------------------------------------- /resources/players/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/players/index.html -------------------------------------------------------------------------------- /resources/players/sr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/players/sr.ttf -------------------------------------------------------------------------------- /resources/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sj817/ZyyGIO-Plugin/HEAD/resources/render.js --------------------------------------------------------------------------------