mirror of
https://github.com/IPTFreedom/iptfreedom.git
synced 2025-02-17 06:10:14 -05:00
More work
This commit is contained in:
parent
ba2da480bd
commit
1b52a61a93
10 changed files with 1312 additions and 3 deletions
16
Dockerfile
16
Dockerfile
|
@ -7,4 +7,20 @@ FROM eclipse-temurin:17-alpine
|
|||
USER 1000:1000
|
||||
WORKDIR /server
|
||||
COPY --from=builder --chown=1000:1000 /server/server/ /server
|
||||
VOLUME /server/cache \
|
||||
/server/plugins/Essentials/warps \
|
||||
/server/plugins/Essentials/kits.yml \
|
||||
/server/plugins/Essentials/usermap.bin \
|
||||
/server/plugins/Essentials/uuids.bin \
|
||||
/server/plugins/FastAsyncWorldEdit/schematics \
|
||||
/server/plugins/FastAsyncWorldEdit/sessions \
|
||||
/server/plugins/TotalFreedomMod/activitylog.yml \
|
||||
/server/plugins/TotalFreedomMod/database.db \
|
||||
/server/plugins/TotalFreedomMod/indefinitebans.yml \
|
||||
/server/plugins/TotalFreedomMod/permissions.yml \
|
||||
/server/plugins/TotalFreedomMod/punishments.yml \
|
||||
/server/plugins/WorldGuard/cache \
|
||||
/server/worlds
|
||||
/server/ops.json
|
||||
|
||||
ENTRYPOINT [ "/server/start.sh" ]
|
19
PLUGINS_TODO.txt
Normal file
19
PLUGINS_TODO.txt
Normal file
|
@ -0,0 +1,19 @@
|
|||
CoreProtect
|
||||
CrackShot
|
||||
EmotesTF
|
||||
Essentials
|
||||
EssentialsSpawn
|
||||
GSit
|
||||
HolographicDisplays
|
||||
ItemizerX
|
||||
LiftReloaded
|
||||
Marriage
|
||||
OpenInv
|
||||
Plan
|
||||
PlotSquared
|
||||
ProtocolLib
|
||||
spark
|
||||
ViaVersion
|
||||
Vivecraft-Spigot-Extensions
|
||||
Votifier
|
||||
WorldGuardExtraFlags
|
33
config/bukkit.yml
Normal file
33
config/bukkit.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
settings:
|
||||
allow-end: true
|
||||
warn-on-overload: true
|
||||
permissions-file: permissions.yml
|
||||
update-folder: update
|
||||
plugin-profiling: false
|
||||
connection-throttle: 4000
|
||||
query-plugins: true
|
||||
deprecated-verbose: default
|
||||
shutdown-message: Server closed
|
||||
minimum-api: none
|
||||
use-map-color-cache: true
|
||||
world-container: worlds
|
||||
spawn-limits:
|
||||
monsters: 70
|
||||
animals: 10
|
||||
water-animals: 5
|
||||
water-ambient: 20
|
||||
water-underground-creature: 5
|
||||
axolotls: 5
|
||||
ambient: 15
|
||||
chunk-gc:
|
||||
period-in-ticks: 600
|
||||
ticks-per:
|
||||
animal-spawns: 400
|
||||
monster-spawns: 1
|
||||
water-spawns: 1
|
||||
water-ambient-spawns: 1
|
||||
water-underground-creature-spawns: 1
|
||||
axolotl-spawns: 1
|
||||
ambient-spawns: 1
|
||||
autosave: 6000
|
||||
aliases: now-in-commands.yml
|
1188
config/plugins/Essentials/config.yml
Normal file
1188
config/plugins/Essentials/config.yml
Normal file
File diff suppressed because it is too large
Load diff
29
config/plugins/Essentials/kits.yml
Normal file
29
config/plugins/Essentials/kits.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
kits:
|
||||
tools:
|
||||
delay: 10
|
||||
items:
|
||||
- stonesword 1
|
||||
- stoneshovel 1
|
||||
- stonepickaxe 1
|
||||
- stoneaxe 1
|
||||
dtools:
|
||||
delay: 600
|
||||
items:
|
||||
- dpickaxe 1 efficiency:1 durability:1 fortune:1 name:&4Gigadrill lore:The_drill_that_&npierces|the_heavens
|
||||
- dshovel 1 digspeed:3 name:Dwarf lore:Diggy|Diggy|Hole
|
||||
- lhelm 1 color:255,255,255 name:Top_Hat lore:Good_day,_Good_day
|
||||
- daxe:780 1
|
||||
notch:
|
||||
delay: 6000
|
||||
items:
|
||||
- playerhead 1 player:Notch
|
||||
color:
|
||||
delay: 6000
|
||||
items:
|
||||
- writtenbook 1 title:&4Book_&9o_&6Colors author:KHobbits lore:Ingame_color_codes book:Colors
|
||||
firework:
|
||||
delay: 6000
|
||||
items:
|
||||
- fireworkrocket 1 name:Angry_Creeper color:red fade:green type:creeper power:1
|
||||
- fireworkrocket 1 name:Starry_Night color:yellow,orange fade:blue type:star effect:trail,twinkle power:1
|
||||
- fireworkrocket 2 name:Solar_Wind color:yellow,orange fade:red shape:large effect:twinkle color:yellow,orange fade:red shape:ball effect:trail color:red,purple fade:pink shape:star effect:trail power:1
|
4
config/plugins/Essentials/tpr.yml
Normal file
4
config/plugins/Essentials/tpr.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
min-range: 0.0
|
||||
max-range: 50000.0
|
||||
find-attempts: 3
|
||||
excluded-biomes: []
|
4
config/plugins/Essentials/upgrades-done.yml
Normal file
4
config/plugins/Essentials/upgrades-done.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
newUidCacheBuilt: true
|
||||
updateSpawnsToNewSpawnsConfig: true
|
||||
updateJailsToNewJailsConfig: true
|
||||
warnMetrics: true
|
|
@ -21,7 +21,7 @@ enabled-components:
|
|||
# Leave it off if you don't need it, it can spam your console.
|
||||
debug: false
|
||||
# Whether or not FAWE should notify you on startup about new versions available.
|
||||
update-notifications: true
|
||||
update-notifications: false
|
||||
|
||||
clipboard:
|
||||
# Store the clipboard on disk instead of memory
|
||||
|
@ -245,7 +245,7 @@ history:
|
|||
store-redo: true
|
||||
# Assumes all edits are smaller than 4096x256x4096:
|
||||
# - Reduces history size by ~10%
|
||||
small-edits: true
|
||||
small-edits: false
|
||||
|
||||
# Paths for various directories
|
||||
paths:
|
||||
|
|
|
@ -165,7 +165,7 @@ coreprotect:
|
|||
host: db
|
||||
port: '3306'
|
||||
username: root
|
||||
password: 2EN25VPtpCKxRowtpw5oyPkR4Av3Qedk # TODO
|
||||
password: 2EN25VPtpCKxRowtpw5oyPkR4Av3Qedk
|
||||
database: freedom
|
||||
|
||||
# ForceIP configuration
|
||||
|
|
16
server.toml
16
server.toml
|
@ -62,3 +62,19 @@ url = "https://github.com/IPTFreedom/BukkitTelnet/releases/download/4.9-IPT/Bukk
|
|||
[[plugins]]
|
||||
type = "url"
|
||||
url = "https://github.com/IPTFreedom/Addendum/releases/download/1.0.0/Addendum-1.0.0.jar"
|
||||
|
||||
[[plugins]]
|
||||
type = "spigot"
|
||||
id = "carz.56255"
|
||||
|
||||
[[plugins]]
|
||||
type = "url"
|
||||
url = "https://github.com/IPTFreedom/ESP/releases/download/1.1/ESP-1.1.jar"
|
||||
|
||||
[[plugins]]
|
||||
type = "url"
|
||||
url = "https://github.com/IPTFreedom/TF-EssentialsX/releases/download/2.20.1/EssentialsX-2.20.1-dev+395-92d7f94.jar"
|
||||
|
||||
[[plugins]]
|
||||
type = "url"
|
||||
url = "https://github.com/IPTFreedom/TF-EssentialsX/releases/download/2.20.1/EssentialsXSpawn-2.20.1-dev+395-92d7f94.jar"
|
||||
|
|
Loading…
Reference in a new issue