├── .github ├── dependabot.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── commands ├── gamemode │ ├── defaultgamemode.go │ ├── gamemode.go │ └── utils.go ├── help.go ├── op │ ├── op.go │ └── utils.go ├── setworldspawn.go ├── stop.go ├── teleport.go ├── time │ ├── add.go │ ├── query.go │ └── set.go ├── utils │ └── utils.go └── xyz.go ├── console ├── reader.go └── source.go ├── essentials.go ├── global ├── command.go └── server.go ├── go.mod └── go.sum /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/README.md -------------------------------------------------------------------------------- /commands/gamemode/defaultgamemode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/gamemode/defaultgamemode.go -------------------------------------------------------------------------------- /commands/gamemode/gamemode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/gamemode/gamemode.go -------------------------------------------------------------------------------- /commands/gamemode/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/gamemode/utils.go -------------------------------------------------------------------------------- /commands/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/help.go -------------------------------------------------------------------------------- /commands/op/op.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/op/op.go -------------------------------------------------------------------------------- /commands/op/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/op/utils.go -------------------------------------------------------------------------------- /commands/setworldspawn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/setworldspawn.go -------------------------------------------------------------------------------- /commands/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/stop.go -------------------------------------------------------------------------------- /commands/teleport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/teleport.go -------------------------------------------------------------------------------- /commands/time/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/time/add.go -------------------------------------------------------------------------------- /commands/time/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/time/query.go -------------------------------------------------------------------------------- /commands/time/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/time/set.go -------------------------------------------------------------------------------- /commands/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/utils/utils.go -------------------------------------------------------------------------------- /commands/xyz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/commands/xyz.go -------------------------------------------------------------------------------- /console/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/console/reader.go -------------------------------------------------------------------------------- /console/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/console/source.go -------------------------------------------------------------------------------- /essentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/essentials.go -------------------------------------------------------------------------------- /global/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/global/command.go -------------------------------------------------------------------------------- /global/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/global/server.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xerenahmed/EssentialsGO/HEAD/go.sum --------------------------------------------------------------------------------