Rempass fix, DXL, Plotworld perms
DungeonsXL config upload Perms: - Added LC chest interact permission for members in plotworld - Removed ChestShop perms for plotworld and allowed interaction in LC in plotworld -- So that players can place signs on signs hmm - Allowed pistons in plotworld Jobs db setup (sqlite for conversion)
This commit is contained in:
parent
c004251444
commit
46dc9bd7c2
13 changed files with 152 additions and 63 deletions
|
@ -1,3 +1,5 @@
|
||||||
[filter "rempass"]
|
[filter "rempass"]
|
||||||
smudge = cat
|
smudge = cat
|
||||||
clean = sed -E --expression=\"s/(.*)pass(\\S*)\\\\: '.*'/\\1pass\\2: 'NOPE'/g\"
|
clean = sed -E --expression=\"s/(^\\s*(.*[_-]){0,1})pass(\\S*)\\\\: .*/\\1pass\\3: 'NOPE'/g\"
|
||||||
|
# sed doesn't support (?:) so we're ignoring the 2nd group
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ mysql-host: 127.0.0.1
|
||||||
mysql-port: 3306
|
mysql-port: 3306
|
||||||
mysql-database: database
|
mysql-database: database
|
||||||
mysql-username: root
|
mysql-username: root
|
||||||
mysql-password:
|
mysql-password: 'NOPE'
|
||||||
|
|
||||||
# If enabled, CoreProtect will check for updates when your server starts up.
|
# If enabled, CoreProtect will check for updates when your server starts up.
|
||||||
# If an update is available, you'll be notified via your server console.
|
# If an update is available, you'll be notified via your server console.
|
||||||
|
|
45
DungeonsXL/config.yml
Executable file
45
DungeonsXL/config.yml
Executable file
|
@ -0,0 +1,45 @@
|
||||||
|
configVersion: 15
|
||||||
|
language: en
|
||||||
|
enableEconomy: false
|
||||||
|
tutorial:
|
||||||
|
activated: false
|
||||||
|
dungeon: tutorial
|
||||||
|
startGroup: default
|
||||||
|
endgroup: player
|
||||||
|
sendFloorTitle: true
|
||||||
|
editCommandWhitelist: []
|
||||||
|
default: {}
|
||||||
|
chatEnabled: true
|
||||||
|
chatFormatGame: '&2[Game] %group_color%%player_name%: &r'
|
||||||
|
chatFormatGroup: '&2%group_color%[%group_name%] %player_name%: &r'
|
||||||
|
chatFormatSpy: '&2[Chat Spy] %player_name%: &r'
|
||||||
|
groupColorPriority:
|
||||||
|
- DARK_BLUE
|
||||||
|
- LIGHT_RED
|
||||||
|
- YELLOW
|
||||||
|
- LIGHT_GREEN
|
||||||
|
- PURPLE
|
||||||
|
- ORANGE
|
||||||
|
- WHITE
|
||||||
|
- BLACK
|
||||||
|
- LIGHT_BLUE
|
||||||
|
- DARK_GREEN
|
||||||
|
- DARK_RED
|
||||||
|
- LIGHT_GRAY
|
||||||
|
- CYAN
|
||||||
|
- MAGENTA
|
||||||
|
- DARK_GRAY
|
||||||
|
announcementInterval: 30.0
|
||||||
|
globalDeathMessagesDisabled: true
|
||||||
|
externalMobProviders: {}
|
||||||
|
resourcePacks: {}
|
||||||
|
maxInstances: 10
|
||||||
|
tweaksEnabled: false
|
||||||
|
secureMode:
|
||||||
|
enabled: false
|
||||||
|
openInventories: false
|
||||||
|
dropItems: false
|
||||||
|
checkInterval: 5.0
|
||||||
|
editCommandWhitelist: []
|
||||||
|
backupMode: ON_DISABLE_AND_SAVE
|
||||||
|
editPermissions: []
|
14
DungeonsXL/dungeons/test.yml
Executable file
14
DungeonsXL/dungeons/test.yml
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#The first floor the players enter. Needs at least lobby, ready, start and floor signs.
|
||||||
|
startFloor: MyDungeon_floor_01
|
||||||
|
#The last floor the players enter. Needs at least start and end signs.
|
||||||
|
endFloor: MyDungeon_floor_12
|
||||||
|
#A list of all other floors in the dungeon. Needs at least lobby, ready, start and floor signs.
|
||||||
|
floors:
|
||||||
|
- MyDungeon_floor_02
|
||||||
|
|
||||||
|
|
||||||
|
#How many floors shall be selected randomly from the list before the player gets teleported to the endFloor?
|
||||||
|
floorCount: 1
|
||||||
|
|
||||||
|
#If true, the floors will get removed from the list when finished sothat one floor cannot be selected multiple times.
|
||||||
|
removeWhenPlayed: false
|
|
@ -3,19 +3,17 @@
|
||||||
# to broadcast a message to the server when a user goes up a skill level.
|
# to broadcast a message to the server when a user goes up a skill level.
|
||||||
# It also allows admins to set the maximum number of jobs a player can have at
|
# It also allows admins to set the maximum number of jobs a player can have at
|
||||||
# any one time.
|
# any one time.
|
||||||
|
#
|
||||||
# Default language.
|
# Default language.
|
||||||
# Example: en, ru
|
# Example: en, ru
|
||||||
# File in locale folder with same name should exist. Example: messages_ru.yml
|
# File in locale folder with same name should exist. Example: messages_ru.yml
|
||||||
locale-language: en
|
locale-language: en
|
||||||
storage:
|
storage:
|
||||||
# storage method, can be MySQL or sqlite
|
method: SqLite
|
||||||
method: sqlite
|
mysql-username: jobsreborn
|
||||||
# Requires Mysql.
|
mysql-password: 'NOPE'
|
||||||
mysql-username: root
|
|
||||||
mysql-password: NOPE
|
|
||||||
mysql-hostname: localhost:3306
|
mysql-hostname: localhost:3306
|
||||||
mysql-database: minecraft
|
mysql-database: jobs
|
||||||
mysql-table-prefix: jobs_
|
mysql-table-prefix: jobs_
|
||||||
verify-server-certificate: false
|
verify-server-certificate: false
|
||||||
use-ssl: false
|
use-ssl: false
|
||||||
|
|
|
@ -95,54 +95,6 @@ worlds:
|
||||||
generator: TerrainControl
|
generator: TerrainControl
|
||||||
playerLimit: '-1'
|
playerLimit: '-1'
|
||||||
allowFlight: 'true'
|
allowFlight: 'true'
|
||||||
world_the_end:
|
|
||||||
==: MVWorld
|
|
||||||
hidden: 'false'
|
|
||||||
alias: world_the_end
|
|
||||||
color: WHITE
|
|
||||||
style: NORMAL
|
|
||||||
pvp: 'true'
|
|
||||||
scale: '16.0'
|
|
||||||
respawnWorld: ''
|
|
||||||
allowWeather: 'true'
|
|
||||||
difficulty: EASY
|
|
||||||
spawning:
|
|
||||||
==: MVSpawnSettings
|
|
||||||
animals:
|
|
||||||
==: MVSpawnSubSettings
|
|
||||||
spawn: 'true'
|
|
||||||
spawnrate: '-1'
|
|
||||||
exceptions: []
|
|
||||||
monsters:
|
|
||||||
==: MVSpawnSubSettings
|
|
||||||
spawn: 'true'
|
|
||||||
spawnrate: '-1'
|
|
||||||
exceptions: []
|
|
||||||
entryfee:
|
|
||||||
==: MVEntryFee
|
|
||||||
amount: '0.0'
|
|
||||||
currency: '-1'
|
|
||||||
hunger: 'true'
|
|
||||||
autoHeal: 'true'
|
|
||||||
adjustSpawn: 'true'
|
|
||||||
portalForm: ALL
|
|
||||||
gameMode: SURVIVAL
|
|
||||||
keepSpawnInMemory: 'true'
|
|
||||||
spawnLocation:
|
|
||||||
==: MVSpawnLocation
|
|
||||||
x: -4.710357902146693
|
|
||||||
y: 59.0
|
|
||||||
z: 0.6541565622183771
|
|
||||||
pitch: 2.5500019
|
|
||||||
yaw: -91.005165
|
|
||||||
autoLoad: 'true'
|
|
||||||
bedRespawn: 'true'
|
|
||||||
worldBlacklist: []
|
|
||||||
environment: THE_END
|
|
||||||
seed: '2133291894169730654'
|
|
||||||
generator: 'null'
|
|
||||||
playerLimit: '-1'
|
|
||||||
allowFlight: 'true'
|
|
||||||
world:
|
world:
|
||||||
==: MVWorld
|
==: MVWorld
|
||||||
hidden: 'false'
|
hidden: 'false'
|
||||||
|
@ -191,6 +143,54 @@ worlds:
|
||||||
generator: TerrainControl
|
generator: TerrainControl
|
||||||
playerLimit: '-1'
|
playerLimit: '-1'
|
||||||
allowFlight: 'true'
|
allowFlight: 'true'
|
||||||
|
world_the_end:
|
||||||
|
==: MVWorld
|
||||||
|
hidden: 'false'
|
||||||
|
alias: world_the_end
|
||||||
|
color: WHITE
|
||||||
|
style: NORMAL
|
||||||
|
pvp: 'true'
|
||||||
|
scale: '16.0'
|
||||||
|
respawnWorld: ''
|
||||||
|
allowWeather: 'true'
|
||||||
|
difficulty: EASY
|
||||||
|
spawning:
|
||||||
|
==: MVSpawnSettings
|
||||||
|
animals:
|
||||||
|
==: MVSpawnSubSettings
|
||||||
|
spawn: 'true'
|
||||||
|
spawnrate: '-1'
|
||||||
|
exceptions: []
|
||||||
|
monsters:
|
||||||
|
==: MVSpawnSubSettings
|
||||||
|
spawn: 'true'
|
||||||
|
spawnrate: '-1'
|
||||||
|
exceptions: []
|
||||||
|
entryfee:
|
||||||
|
==: MVEntryFee
|
||||||
|
amount: '0.0'
|
||||||
|
currency: '-1'
|
||||||
|
hunger: 'true'
|
||||||
|
autoHeal: 'true'
|
||||||
|
adjustSpawn: 'true'
|
||||||
|
portalForm: ALL
|
||||||
|
gameMode: SURVIVAL
|
||||||
|
keepSpawnInMemory: 'true'
|
||||||
|
spawnLocation:
|
||||||
|
==: MVSpawnLocation
|
||||||
|
x: -4.710357902146693
|
||||||
|
y: 59.0
|
||||||
|
z: 0.6541565622183771
|
||||||
|
pitch: 2.5500019
|
||||||
|
yaw: -91.005165
|
||||||
|
autoLoad: 'true'
|
||||||
|
bedRespawn: 'true'
|
||||||
|
worldBlacklist: []
|
||||||
|
environment: THE_END
|
||||||
|
seed: '2133291894169730654'
|
||||||
|
generator: 'null'
|
||||||
|
playerLimit: '-1'
|
||||||
|
allowFlight: 'true'
|
||||||
test:
|
test:
|
||||||
==: MVWorld
|
==: MVWorld
|
||||||
hidden: 'false'
|
hidden: 'false'
|
||||||
|
|
|
@ -64,6 +64,11 @@ groups:
|
||||||
- multiverse.core.list.*
|
- multiverse.core.list.*
|
||||||
- plots.use
|
- plots.use
|
||||||
- plots.permpack.basic
|
- plots.permpack.basic
|
||||||
|
worlds:
|
||||||
|
plotworld:
|
||||||
|
permissions:
|
||||||
|
- -essentials.gamemode
|
||||||
|
- -chestshop.shop.*
|
||||||
member:
|
member:
|
||||||
inheritance:
|
inheritance:
|
||||||
- default
|
- default
|
||||||
|
@ -86,6 +91,13 @@ groups:
|
||||||
- plots.plot.1
|
- plots.plot.1
|
||||||
options:
|
options:
|
||||||
rank: '60'
|
rank: '60'
|
||||||
|
worlds:
|
||||||
|
plotworld:
|
||||||
|
permissions:
|
||||||
|
- limitedcreative.nolimit.break
|
||||||
|
- limitedcreative.nolimit.use
|
||||||
|
- limitedcreative.nolimit.interact
|
||||||
|
- limitedcreative.nolimit.chest
|
||||||
donator:
|
donator:
|
||||||
inheritance:
|
inheritance:
|
||||||
- member
|
- member
|
||||||
|
@ -117,6 +129,10 @@ groups:
|
||||||
- multiverse.teleport.other.test
|
- multiverse.teleport.other.test
|
||||||
options:
|
options:
|
||||||
rank: '40'
|
rank: '40'
|
||||||
|
worlds:
|
||||||
|
plotworld:
|
||||||
|
permissions:
|
||||||
|
- -essentials.gamemode
|
||||||
worldeditor:
|
worldeditor:
|
||||||
inheritance:
|
inheritance:
|
||||||
- builder
|
- builder
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# These first 4 aren't configurable
|
# These first 4 aren't configurable
|
||||||
issues: "https://github.com/IntellectualSites/PlotSquared/issues"
|
issues: "https://github.com/IntellectualSites/PlotSquared/issues"
|
||||||
wiki: "https://github.com/IntellectualSites/PlotSquared/wiki"
|
wiki: "https://github.com/IntellectualSites/PlotSquared/wiki"
|
||||||
date: "12 Jul 2018 00:00:00 GMT"
|
date: "18 Jul 2018 00:00:00 GMT"
|
||||||
build: "https://ci.athion.net/job/PlotSquared/2010"
|
build: "https://ci.athion.net/job/PlotSquared/2012"
|
||||||
commit: "https://github.com/IntellectualSites/PlotSquared/commit/6ed6f60"
|
commit: "https://github.com/IntellectualSites/PlotSquared/commit/d454602"
|
||||||
platform: "Bukkit"
|
platform: "Bukkit"
|
||||||
# Show additional information in console
|
# Show additional information in console
|
||||||
debug: true
|
debug: true
|
||||||
|
@ -161,6 +161,7 @@ auto-clear:
|
||||||
required-plots: -1
|
required-plots: -1
|
||||||
confirmation: true
|
confirmation: true
|
||||||
days: 7
|
days: 7
|
||||||
|
skip-account-age-days: -1
|
||||||
worlds:
|
worlds:
|
||||||
- "*"
|
- "*"
|
||||||
# See: https://github.com/IntellectualSites/PlotSquared/wiki/Plot-analysis
|
# See: https://github.com/IntellectualSites/PlotSquared/wiki/Plot-analysis
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
version: PlotSquared-18.6.12-6ed6f60-2010
|
version: PlotSquared-18.6.18-d454602-2012
|
||||||
color:
|
color:
|
||||||
'3': '8'
|
'3': '8'
|
||||||
'4': '3'
|
'4': '3'
|
||||||
|
|
|
@ -445,7 +445,7 @@ plugin:
|
||||||
dbname: towny
|
dbname: towny
|
||||||
table_prefix: towny_
|
table_prefix: towny_
|
||||||
username: root
|
username: root
|
||||||
password: NOPE
|
password: 'NOPE'
|
||||||
ssl: 'false'
|
ssl: 'false'
|
||||||
|
|
||||||
# Flatfile backup settings.
|
# Flatfile backup settings.
|
||||||
|
|
|
@ -28,7 +28,7 @@ regions:
|
||||||
use: false
|
use: false
|
||||||
dsn: jdbc:mysql://localhost/worldguard
|
dsn: jdbc:mysql://localhost/worldguard
|
||||||
username: worldguard
|
username: worldguard
|
||||||
password: worldguard
|
password: 'NOPE'
|
||||||
table-prefix: ''
|
table-prefix: ''
|
||||||
enable: true
|
enable: true
|
||||||
invincibility-removes-mobs: false
|
invincibility-removes-mobs: false
|
||||||
|
|
12
WorldGuard/worlds/.raw/config.yml
Normal file
12
WorldGuard/worlds/.raw/config.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#
|
||||||
|
# WorldGuard's world configuration file
|
||||||
|
#
|
||||||
|
# This is a world configuration file. Anything placed into here will only
|
||||||
|
# affect this world. If you don't put anything in this file, then the
|
||||||
|
# settings will be inherited from the main configuration file.
|
||||||
|
#
|
||||||
|
# If you see {} below, that means that there are NO entries in this file.
|
||||||
|
# Remove the {} and add your own entries.
|
||||||
|
#
|
||||||
|
|
||||||
|
{}
|
|
@ -16,6 +16,7 @@ git add -f 'PlotSquared/*' ':!:PlotSquared/*storage*'
|
||||||
git add -f 'PermissionsEx/permissions.yml'
|
git add -f 'PermissionsEx/permissions.yml'
|
||||||
git add -f 'Multiverse-Core/worlds.yml'
|
git add -f 'Multiverse-Core/worlds.yml'
|
||||||
git add -f 'ServerRunner/config.yml' # Not a plugin
|
git add -f 'ServerRunner/config.yml' # Not a plugin
|
||||||
|
git add -f 'DungeonsXL/dungeons' 'DungeonsXL/scripts'
|
||||||
|
|
||||||
git add -f update.sh download.sh
|
git add -f update.sh download.sh
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue