From c7d259a122ebd8300d84914032e247a5cc4a7f01 Mon Sep 17 00:00:00 2001 From: Myles Date: Wed, 7 Dec 2022 21:13:33 -0600 Subject: add feature: seperate winning player tp --- src/main/resources/plugin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/resources/plugin.yml') diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index dd24bcc..3dc3b90 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -22,6 +22,11 @@ commands: description: Force starts a Tumble match. usage: '§cUsage: /tumble:start' permission: start + winlocation: + description: Links the location to teleport the winning player of a game. + usage: '§cUsage: /tumble:winlocation ' + permission: winlocation + aliases: [win-location, winloc, win-loc] permissions: reload: description: Allows you to reload the plugin's config. @@ -32,3 +37,6 @@ permissions: start: description: Allows you to start a Tumble match. default: op + winlocation: + description: Allows you to link a win location. + default: op -- cgit v1.2.3 From fe5802a8e8eeb3199d05e995384b8e13bfce9784 Mon Sep 17 00:00:00 2001 From: Myles <43725835+MylesAndMore@users.noreply.github.com> Date: Thu, 8 Dec 2022 14:00:22 +0000 Subject: update start command usage --- src/main/resources/plugin.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/resources/plugin.yml') diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 3dc3b90..315797f 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,7 +1,7 @@ main: com.MylesAndMore.tumble.Main name: tumble version: 0.0.1-SNAPSHOT -description: 'A Minecraft: Java Edition plugin recreating the Tumble minigame from Minecraft: Xbox 360 Edition.' +description: 'A Minecraft: Java Edition plugin recreating the Tumble minigame from Minecraft Legacy Console Edition.' api-version: 1.19 load: STARTUP author: MylesAndMore @@ -15,12 +15,12 @@ commands: permission: reload link: description: Links a world on the server as a lobby/game world. - usage: '§cUsage: /tumble:link lobby|game' + usage: '§cUsage: /tumble:link (lobby|game)' permission: link aliases: [linkworld, link-world] start: - description: Force starts a Tumble match. - usage: '§cUsage: /tumble:start' + description: Force starts a Tumble match with an optional game type. + usage: '§cUsage: /tumble:start [gametype]' permission: start winlocation: description: Links the location to teleport the winning player of a game. -- cgit v1.2.3 From fe547e5b0767616d7ea1b4f94c57566589dbf4c3 Mon Sep 17 00:00:00 2001 From: Myles <43725835+MylesAndMore@users.noreply.github.com> Date: Thu, 8 Dec 2022 17:48:04 +0000 Subject: allow players to specify args for winLoc --- src/main/resources/plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/resources/plugin.yml') diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 315797f..7066a27 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -24,7 +24,7 @@ commands: permission: start winlocation: description: Links the location to teleport the winning player of a game. - usage: '§cUsage: /tumble:winlocation ' + usage: '§cUsage: /tumble:winlocation [x] [y] [z]' permission: winlocation aliases: [win-location, winloc, win-loc] permissions: -- cgit v1.2.3 From 08189436cff46ecd50979bc0d70a3ccf026ec00d Mon Sep 17 00:00:00 2001 From: Myles <43725835+MylesAndMore@users.noreply.github.com> Date: Thu, 8 Dec 2022 18:28:46 +0000 Subject: add autostart config and command --- src/main/resources/plugin.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/main/resources/plugin.yml') diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 7066a27..ac394bf 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -20,13 +20,18 @@ commands: aliases: [linkworld, link-world] start: description: Force starts a Tumble match with an optional game type. - usage: '§cUsage: /tumble:start [gametype]' + usage: '§cUsage: /tumble:start [gameType]' permission: start winlocation: description: Links the location to teleport the winning player of a game. usage: '§cUsage: /tumble:winlocation [x] [y] [z]' permission: winlocation aliases: [win-location, winloc, win-loc] + autostart: + description: Configures the auto start functions of Tumble. + usage: '§cUsage: /tumble:autostart [enable|disable]' + permission: autostart + aliases: [auto-start] permissions: reload: description: Allows you to reload the plugin's config. @@ -40,3 +45,6 @@ permissions: winlocation: description: Allows you to link a win location. default: op + autostart: + description: Allows you to set the autostart details of Tumble. + default: op -- cgit v1.2.3 From ae3d7842ba4f261add8d5beb207d613515ee6602 Mon Sep 17 00:00:00 2001 From: Myles <43725835+MylesAndMore@users.noreply.github.com> Date: Tue, 13 Dec 2022 11:49:07 -0600 Subject: update versioning, config, and readme for pre-release --- src/main/resources/plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/resources/plugin.yml') diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index ac394bf..c78eece 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ main: com.MylesAndMore.tumble.Main name: tumble -version: 0.0.1-SNAPSHOT +version: 1.0.0 description: 'A Minecraft: Java Edition plugin recreating the Tumble minigame from Minecraft Legacy Console Edition.' api-version: 1.19 load: STARTUP -- cgit v1.2.3