├── .github └── workflows │ └── release.yml ├── .gitignore ├── .idea ├── .gitignore ├── MagesTools.iml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── main.go └── script ├── format ├── NpcsFormat.go ├── NpcsPFormat.go └── format.go ├── mes.go ├── mes_test.go ├── sc3.go ├── sc3_test.go ├── script.go ├── script_test.go └── utils └── utils.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/MagesTools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/.idea/MagesTools.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/main.go -------------------------------------------------------------------------------- /script/format/NpcsFormat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/format/NpcsFormat.go -------------------------------------------------------------------------------- /script/format/NpcsPFormat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/format/NpcsPFormat.go -------------------------------------------------------------------------------- /script/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/format/format.go -------------------------------------------------------------------------------- /script/mes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/mes.go -------------------------------------------------------------------------------- /script/mes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/mes_test.go -------------------------------------------------------------------------------- /script/sc3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/sc3.go -------------------------------------------------------------------------------- /script/sc3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/sc3_test.go -------------------------------------------------------------------------------- /script/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/script.go -------------------------------------------------------------------------------- /script/script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/script_test.go -------------------------------------------------------------------------------- /script/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wetor/MagesTools/HEAD/script/utils/utils.go --------------------------------------------------------------------------------