blob: 91dab2e80473517436fdfa7c339ed75e4f4238ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# Tumble
## Guide for original worlds
In this guide, I'll go over how to set up the Tumble plugin with the original game worlds from the Legacy Console Editions.
## Steps
1. Download the worlds and unzip them into your server's worlds directory.
- [Lobby]()
- [Normal Arena]()
- [Festive Arena]()
- [Halloween Arena]()
- [Birthday Arena]()
2. Take note of the names of the world folders, we will need this in a moment.
3. Start and join your server.
4. Import your arena worlds. This can be done with the multiverse command `/mv import <your-world-name> normal`
5. Paste the arena config below into `plugins/tumble/arenas.yml`:
```yaml
arenas:
basic:
kill-at-y: 24
game-spawn:
x: 0.5
y: 60.0
z: 0.5
world: tmbl-basic
lobby:
x: -341.5
y: 58
z: -340.5
world: lobby
winner-lobby:
x: -362.5
y: 76
Z: -340.5
world: lobby
birthday:
kill-at-y: 27
game-spawn:
x: 0.5
y: 60
z: 0.5
world: tmbl-birthday
lobby:
x: -341.5
y: 58
z: -340.5
world: lobby
winner-lobby:
x: -362.5
y: 76
Z: -340.5
world: lobby
festive:
kill-at-y: 20
game-spawn:
x: 0.5
y: 60
z: 0.5
world: tmbl-festive
lobby:
x: -341.5
y: 58
z: -340.5
world: lobby
winner-lobby:
x: -362.5
y: 76
Z: -340.5
world: lobby
halloween:
kill-at-y: 23
game-spawn:
x: 0.5
y: 60
z: -0.5
world: tmbl-halloween
lobby:
x: -341.5
y: 58
z: -340.5
world: lobby
winner-lobby:
x: -362.5
y: 76
Z: -340.5
world: lobby
```
6. Reload the plugin with `/tmbl reload`.
7. Join the game by using `/tmbl join basic Mixed`
(swap the arena and game type for whichever one you want to play).
You're done!
## Suggestions
With this, the setup for this plugin is complete, but there still may be more for you to do.
There are other plugins out there to fine-tune your experience even more. Plugins like [WorldGuard](https://dev.bukkit.org/projects/worldguard) and [CyberWorldReset](https://www.spigotmc.org/resources/cyberworldreset-standard-%E2%9C%A8-regenerate-worlds-scheduled-resets-lag-optimized%E3%80%8C1-8-1-19%E3%80%8D.96834/) can protect players from breaking blocks in the lobby and reset any redstone they activated, while others like [ViaVersion](https://www.spigotmc.org/resources/viaversion.19254/) can allow you to play Tumble from your favorite Minecraft version (yes, you, 1.8.9 players).
Whatever you choose, the experience is up to you.
Happy playing!
|