Configuration

plugins/WorldManager/Worlds/Worlds.yml

 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
#Variables for title-join messages
#<player> - Is replaced with the player's name.
#<displayname> - Is replaced with the player's display name.
#<world-online> - Shows the amount of players online in the world the player tped to.
#<world-online-max> - Shows the player limit for the world the player tped to.
#<players-online> - Shows the amount of players online in the entire server.

world:
  #Sets whether pvp should be enabled or disbaled.
  pvp: false
  #Sets whether buildng should be enabled or disbaled.
  build: false
  #Sets what blocks can be placed when build is false.
  certain-blocks-place-allow: []
  #Sets what blocks can be broken when build is false.
  certain-blocks-break-allow: []
  #Locks the weather when set to true.
  weather-locked: false
  #Sets whether mobs can spawn.
  mob-spawn: false
  #Sets what mobs can spawn when mob-spawn is false.
  certain-mob-spawn-allow:
  - ZOMBIE
  #Sets the player limit for the world
  player-limit: 10
  #Sets whether commands are allowed.
  commands-allowed: false
  #Sets what cmds can be used when commands-allowed is false.
  certain-commands-use-allow:
  - mob
  - spawn
  - msg
  - r
  #If something happens the world that should be the fallback world.
  fallback-world: world
  #Sets whether players can take damage.
  players-invincible: true
  #Sets whether mobs can take damage.
  mobs-invincible: true
  #Sets whether mobs drop loot.
  mobs-drop-loot: false
  #Sets whether mobs drop exp orbs.
  mobs-drop-exp: false
  #Sets whether players drop loot.
  players-drop-loot: false
  #Sets whether players drop exp orbs.
  players-drop-exp: false
  #Sets whether chat should be allowed.
  chat: true
  #Sets the worlds mob limit.
  mob-limit: 100
  #Sets whether player interaction is allowed.
  player-interact: true
  #Sets whether tnt and all kinds of explosions are enabled or disabled.
  explosion: true
  #Sets whether nether portals can be created.
  nether-portal-can-create: true
  #Sets whether nether portals can be used to teleport.
  nether-portal-teleport: true
  #Sets when a player joins a configured world to display a title. (Only works with 1.8)
  title-join: true
  #The first line of the title that should be displayed when title-join is true.
  title-join-message-main: '&f&lWelcome <player>!'
  #The first line of the title's display time.
  title-join-message-main-display-time: 5
  #The second line of the title that should be displayed when title-join is true. 
  title-join-message-sub: <world-online>/<world-online-max>
  #The second line of the title's display time.
  title-join-message-sub-display-time: 5


plugins/Config.yml

1
2
3
4
5
6
7
#Worlds the should be loaded upon plugin startup.
worlds-to-load-on-startup: 
- world 
- world_the_end
#Folders and worlds that should not appear on /wc list or a world WorldControl should ignore.
blacklist-worlds: 
- world_nether

Comments

Posts Quoted:
Reply
Clear All Quotes