WIP: changed project layout | added unified metrics
This commit is contained in:
1
main/.gitignore
vendored
Normal file
1
main/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/data
|
57
main/compose.yml
Normal file
57
main/compose.yml
Normal file
@@ -0,0 +1,57 @@
|
||||
services:
|
||||
server:
|
||||
image: itzg/minecraft-server
|
||||
container_name: new
|
||||
restart: always
|
||||
environment:
|
||||
# What Server
|
||||
EULA: "true"
|
||||
TYPE: FABRIC
|
||||
VERSION: 1.21.1
|
||||
SERVER_NAME: uno
|
||||
ONLINE_MODE: false
|
||||
TZ: Europe/Berlin
|
||||
|
||||
# Server Properties
|
||||
OVERRIDE_SERVER_PROPERTIES: true
|
||||
ENABLE_COMMAND_BLOCK: true
|
||||
GAMEMODE: survival
|
||||
FORCE_GAMEMODE: true
|
||||
LEVEL_TYPE: minecraft:large_biomes
|
||||
|
||||
# RCON Setup
|
||||
RCON_PASSWORD: garde-studios
|
||||
BROADCAST_CONSOLE_TO_OPS: false
|
||||
BROADCAST_RCON_TO_OPS: true
|
||||
|
||||
# Setup
|
||||
FORCE_REDOWNLOAD: true
|
||||
#MEMORY: 2G
|
||||
INIT_MEMORY: 2G
|
||||
MAX_MEMORY: 16G
|
||||
USE_AIKAR_FLAGS: true
|
||||
|
||||
# World & Mod Data
|
||||
#WORLD:
|
||||
SEED: 795488740
|
||||
MODS_FILE: /extras/mods.txt
|
||||
# Whitelisting Players
|
||||
WHITELIST_FILE: https://git.cyperpunk.de/Garde-Studios/Uno-MC/raw/branch/main/whitelist.json
|
||||
OVERRIDE_WHITELIST: true
|
||||
ENFORCE_WHITELIST: false
|
||||
|
||||
# Operator Setup
|
||||
OPS_FILE: https://git.cyperpunk.de/Garde-Studios/Uno-MC/raw/branch/main/ops.json
|
||||
SYNC_SKIP_NEWER_IN_DESTINATION: false
|
||||
ports:
|
||||
- 30066:25565 # Connection Port
|
||||
- 31066:25575 # Rcon
|
||||
- 8090:8080 # Squaremap
|
||||
- 9001:25585 # Fabric Exporter
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./squaremap:/data/squaremap
|
||||
- ./mods.txt:/extras/mods.txt:ro
|
||||
- ./config:/config
|
||||
|
||||
networks: {}
|
4
main/config/FabricProxy-Lite.toml
Normal file
4
main/config/FabricProxy-Lite.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
hackOnlineMode = true
|
||||
hackEarlySend = false
|
||||
hackMessageChain = true
|
||||
secret = "CMhgx3vF17Nu"
|
71
main/config/biomesoplenty/biome_toggles.json
Normal file
71
main/config/biomesoplenty/biome_toggles.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"aspen_glade_enabled": true,
|
||||
"auroral_garden_enabled": true,
|
||||
"bayou_enabled": true,
|
||||
"bog_enabled": true,
|
||||
"cold_desert_enabled": true,
|
||||
"coniferous_forest_enabled": true,
|
||||
"crag_enabled": true,
|
||||
"crystalline_chasm_enabled": true,
|
||||
"dead_forest_enabled": true,
|
||||
"dryland_enabled": true,
|
||||
"dune_beach_enabled": true,
|
||||
"end_corruption_enabled": true,
|
||||
"end_reef_enabled": true,
|
||||
"end_wilds_enabled": true,
|
||||
"erupting_inferno_enabled": true,
|
||||
"field_enabled": true,
|
||||
"fir_clearing_enabled": true,
|
||||
"floodplain_enabled": true,
|
||||
"forested_field_enabled": true,
|
||||
"fungal_jungle_enabled": true,
|
||||
"glowing_grotto_enabled": true,
|
||||
"grassland_enabled": true,
|
||||
"gravel_beach_enabled": true,
|
||||
"highland_enabled": true,
|
||||
"hot_springs_enabled": true,
|
||||
"jacaranda_glade_enabled": true,
|
||||
"jade_cliffs_enabled": true,
|
||||
"lavender_field_enabled": true,
|
||||
"lush_desert_enabled": true,
|
||||
"lush_savanna_enabled": true,
|
||||
"maple_woods_enabled": true,
|
||||
"marsh_enabled": true,
|
||||
"mediterranean_forest_enabled": true,
|
||||
"moor_enabled": true,
|
||||
"muskeg_enabled": true,
|
||||
"mystic_grove_enabled": true,
|
||||
"old_growth_dead_forest_enabled": true,
|
||||
"old_growth_woodland_enabled": true,
|
||||
"ominous_woods_enabled": true,
|
||||
"orchard_enabled": true,
|
||||
"origin_valley_enabled": true,
|
||||
"overgrown_greens_enabled": true,
|
||||
"pasture_enabled": true,
|
||||
"prairie_enabled": true,
|
||||
"pumpkin_patch_enabled": true,
|
||||
"rainforest_enabled": true,
|
||||
"redwood_forest_enabled": true,
|
||||
"rocky_rainforest_enabled": true,
|
||||
"rocky_shrubland_enabled": true,
|
||||
"scrubland_enabled": true,
|
||||
"seasonal_forest_enabled": true,
|
||||
"shrubland_enabled": true,
|
||||
"snowblossom_grove_enabled": true,
|
||||
"snowy_coniferous_forest_enabled": true,
|
||||
"snowy_fir_clearing_enabled": true,
|
||||
"snowy_maple_woods_enabled": true,
|
||||
"spider_nest_enabled": true,
|
||||
"tropics_enabled": true,
|
||||
"tundra_enabled": true,
|
||||
"undergrowth_enabled": true,
|
||||
"visceral_heap_enabled": true,
|
||||
"volcanic_plains_enabled": true,
|
||||
"volcano_enabled": true,
|
||||
"wasteland_enabled": true,
|
||||
"wasteland_steppe_enabled": true,
|
||||
"wetland_enabled": true,
|
||||
"wintry_origin_valley_enabled": true,
|
||||
"withered_abyss_enabled": true,
|
||||
"woodland_enabled": true
|
||||
}
|
3
main/config/biomesoplenty/gameplay.toml
Normal file
3
main/config/biomesoplenty/gameplay.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
[general]
|
||||
#Add various BOP resources to the Wandering Trader trade pool.
|
||||
wandering_trader_trades = true
|
13
main/config/biomesoplenty/generation.toml
Normal file
13
main/config/biomesoplenty/generation.toml
Normal file
@@ -0,0 +1,13 @@
|
||||
[nether]
|
||||
#The weighting of bop biome regions in the nether.
|
||||
bop_nether_region_weight = 13
|
||||
#The weighting of rare bop biome regions in the nether.
|
||||
bop_nether_rare_region_weight = 2
|
||||
|
||||
[overworld]
|
||||
#The weighting of primary bop biome regions in the overworld.
|
||||
bop_primary_overworld_region_weight = 10
|
||||
#The weighting of rare bop biome regions in the overworld.
|
||||
bop_overworld_rare_region_weight = 2
|
||||
#The weighting of secondary bop biome regions in the overworld.
|
||||
bop_secondary_overworld_region_weight = 8
|
48
main/config/fallingtree.json
Normal file
48
main/config/fallingtree.json
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"trees": {
|
||||
"allowedLogs": [],
|
||||
"deniedLogs": [],
|
||||
"allowedLeaves": [],
|
||||
"allowedNonDecayLeaves": [],
|
||||
"deniedLeaves": [],
|
||||
"breakMode": "INSTANTANEOUS",
|
||||
"detectionMode": "WHOLE_TREE",
|
||||
"maxScanSize": 500,
|
||||
"maxSize": 100,
|
||||
"maxLeafDistanceFromLog": 15,
|
||||
"maxSizeAction": "ABORT",
|
||||
"breakOrder": "FURTHEST_FIRST",
|
||||
"minimumLeavesAroundRequired": 1,
|
||||
"includePersistentLeavesInRequiredCount": true,
|
||||
"treeBreaking": true,
|
||||
"leavesBreaking": true,
|
||||
"leavesBreakingForceRadius": 0,
|
||||
"allowMixedLogs": false,
|
||||
"breakNetherTreeWarts": true,
|
||||
"breakMangroveRoots": true,
|
||||
"searchAreaRadius": -1,
|
||||
"allowedAdjacentBlocks": [],
|
||||
"adjacentStopMode": "STOP_ALL",
|
||||
"spawnItemsAtBreakPoint": false
|
||||
},
|
||||
"tools": {
|
||||
"allowed": [],
|
||||
"denied": [],
|
||||
"durabilityMode": "NORMAL",
|
||||
"ignoreTools": false,
|
||||
"damageMultiplicand": 1.0,
|
||||
"damageRounding": "ROUND_DOWN",
|
||||
"speedMultiplicand": 0.0,
|
||||
"forceToolUsage": false
|
||||
},
|
||||
"player": {
|
||||
"allowedTags": []
|
||||
},
|
||||
"enchantment": {
|
||||
"requireEnchantment": false
|
||||
},
|
||||
"sneakMode": "SNEAK_DISABLE",
|
||||
"breakInCreative": false,
|
||||
"lootInCreative": true,
|
||||
"notificationMode": "ACTION_BAR"
|
||||
}
|
55
main/config/friendsandfoes.json
Normal file
55
main/config/friendsandfoes.json
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"checkForNewUpdates": false,
|
||||
"enableCopperGolem": true,
|
||||
"generateCopperGolemAreaStructure": true,
|
||||
"copperGolemAreaStructureWeight": 1,
|
||||
"generateCopperGolemInAncientCity": true,
|
||||
"copperGolemAncientCityCenterWeight": 10,
|
||||
"enableCrab": true,
|
||||
"enableCrabSpawn": true,
|
||||
"crabSpawnWeight": 14,
|
||||
"crabSpawnMinGroupSize": 2,
|
||||
"crabSpawnMaxGroupSize": 4,
|
||||
"reachingStatusEffectModifier": 1,
|
||||
"enableGlare": true,
|
||||
"enableGlareSpawn": true,
|
||||
"enableGlareGriefing": true,
|
||||
"glareSpawnWeight": 4,
|
||||
"glareSpawnMinGroupSize": 1,
|
||||
"glareSpawnMaxGroupSize": 1,
|
||||
"enableMauler": true,
|
||||
"enableMaulerSpawn": true,
|
||||
"maulerDesertSpawnWeight": 8,
|
||||
"maulerDesertSpawnMinGroupSize": 1,
|
||||
"maulerDesertSpawnMaxGroupSize": 1,
|
||||
"maulerBadlandsSpawnWeight": 16,
|
||||
"maulerBadlandsSpawnMinGroupSize": 1,
|
||||
"maulerBadlandsSpawnMaxGroupSize": 1,
|
||||
"maulerSavannaSpawnWeight": 32,
|
||||
"maulerSavannaSpawnMinGroupSize": 1,
|
||||
"maulerSavannaSpawnMaxGroupSize": 1,
|
||||
"enableMoobloom": true,
|
||||
"enableMoobloomSpawn": true,
|
||||
"moobloomSpawnWeight": 4,
|
||||
"moobloomSpawnMinGroupSize": 2,
|
||||
"moobloomSpawnMaxGroupSize": 4,
|
||||
"enableIceologer": true,
|
||||
"enableIceologerSpawn": true,
|
||||
"enableIceologerInRaids": true,
|
||||
"generateIceologerCabinStructure": true,
|
||||
"enableIllusioner": true,
|
||||
"enableIllusionerSpawn": true,
|
||||
"enableIllusionerInRaids": true,
|
||||
"generateIllusionerShackStructure": true,
|
||||
"generateIllusionerTrainingGroundsStructure": true,
|
||||
"enableZombieHorseTrap": true,
|
||||
"enableRascal": true,
|
||||
"enableRascalSpawn": true,
|
||||
"enableTuffGolem": true,
|
||||
"generateTuffGolemInStronghold": true,
|
||||
"enableWildfire": true,
|
||||
"generateCitadelStructure": true,
|
||||
"enableBeekeeperVillagerProfession": true,
|
||||
"generateBeekeeperAreaStructure": true,
|
||||
"beekeeperAreaStructureWeight": 2
|
||||
}
|
91
main/config/frostiful.json
Normal file
91
main/config/frostiful.json
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"clientConfig": {
|
||||
"frostOverlayStart": 0.5,
|
||||
"doColdHeartOverlay": true,
|
||||
"renderDripParticles": true,
|
||||
"disableFrostOverlayWhenWearingFrostologyCloak": true,
|
||||
"shakeHandWhenShivering": true,
|
||||
"handShakeIntensity": 1.0
|
||||
},
|
||||
"updateConfig": {
|
||||
"currentConfigVersion": 2,
|
||||
"enableConfigUpdates": true
|
||||
},
|
||||
"environmentConfig": {
|
||||
"doDryBiomeNightFreezing": true,
|
||||
"nightTemperatureShift": -1,
|
||||
"coldBiomeTemperatureChange": -1,
|
||||
"freezingBiomeTemperatureChange": -3,
|
||||
"rainWetnessIncrease": 1,
|
||||
"touchingWaterWetnessIncrease": 5,
|
||||
"dryRate": 1,
|
||||
"onFireDryDate": 50,
|
||||
"onFireWarmRate": 50,
|
||||
"powderSnowFreezeRate": 30,
|
||||
"warmthPerLightLevel": 2,
|
||||
"minLightForWarmth": 5,
|
||||
"ultrawarmWarmRate": 15,
|
||||
"enableSeasonsIntegration": true
|
||||
},
|
||||
"combatConfig": {
|
||||
"doChillagerPatrols": true,
|
||||
"straysCarryFrostArrows": true,
|
||||
"maxFrostSpellDistance": 25.0,
|
||||
"frostWandCooldown": 120,
|
||||
"frostWandRootTime": 100,
|
||||
"frostologerHeatDrainPerTick": 30,
|
||||
"packedSnowballFreezeAmount": 500,
|
||||
"packedSnowballDamage": 2.0,
|
||||
"packedSnowballVulnerableTypesDamage": 5.0,
|
||||
"frostologerPassiveFreezingPerTick": 2,
|
||||
"frostologerMaxPassiveFreezing": 0.5,
|
||||
"biterFrostBiteMaxAmplifier": 2,
|
||||
"chillagerFireDamageMultiplier": 1.5,
|
||||
"frostologerIntolerableHeat": 9,
|
||||
"furUpgradeTemplateGenerateChance": 0.5,
|
||||
"skateUpgradeTemplateGenerateChance": 0.33,
|
||||
"veryProtectiveFrostResistanceMultiplier": 1.0,
|
||||
"protectiveFrostResistanceMultiplier": 0.5
|
||||
},
|
||||
"freezingConfig": {
|
||||
"doPassiveFreezing": true,
|
||||
"doWindSpawning": true,
|
||||
"windSpawnStrategy": "POINT",
|
||||
"spawnWindInAir": true,
|
||||
"windDestroysTorches": true,
|
||||
"doSnowPacking": true,
|
||||
"passiveFreezingTickInterval": 1,
|
||||
"windSpawnCapPerSecond": 15,
|
||||
"windSpawnRarity": 750,
|
||||
"windSpawnRarityThunder": 500,
|
||||
"maxPassiveFreezingPercent": 1.0,
|
||||
"passiveFreezingWetnessScaleMultiplier": 2.1,
|
||||
"soakPercentFromWaterPotion": 0.5,
|
||||
"sunLichenHeatPerLevel": 500,
|
||||
"sunLichenBurnTime": 60,
|
||||
"campfireWarmthSearchRadius": 10.0,
|
||||
"campfireWarmthTime": 1200,
|
||||
"freezingWindFrost": 160,
|
||||
"conduitPowerWarmthPerTick": 12,
|
||||
"heatFromHotFloor": 12,
|
||||
"shiverBelow": -0.51,
|
||||
"shiverWarmth": 1,
|
||||
"stopShiverWarmingBelowFoodLevel": 10,
|
||||
"warmFoodWarmthTime": 1200
|
||||
},
|
||||
"icicleConfig": {
|
||||
"iciclesFormInWeather": true,
|
||||
"becomeUnstableChance": 0.05,
|
||||
"growChance": 0.02,
|
||||
"growChanceDuringRain": 0.09,
|
||||
"growChanceDuringThunder": 0.15,
|
||||
"frostArrowFreezeAmount": 1000,
|
||||
"thrownIcicleFreezeAmount": 1500,
|
||||
"icicleCollisionFreezeAmount": 3000,
|
||||
"maxLightLevelToForm": 8,
|
||||
"minSkylightLevelToForm": 11,
|
||||
"thrownIcicleDamage": 1.0,
|
||||
"thrownIcicleExtraDamage": 3.0,
|
||||
"thrownIcicleCooldown": 10
|
||||
}
|
||||
}
|
14
main/config/unifiedmetrics/config.yml
Normal file
14
main/config/unifiedmetrics/config.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
server:
|
||||
name: "global"
|
||||
metrics:
|
||||
enabled: true
|
||||
driver: "prometheus"
|
||||
collectors:
|
||||
systemGc: true
|
||||
systemMemory: true
|
||||
systemProcess: true
|
||||
systemThread: true
|
||||
server: true
|
||||
world: true
|
||||
tick: true
|
||||
events: true
|
16
main/config/unifiedmetrics/driver/prometheus.yml
Normal file
16
main/config/unifiedmetrics/driver/prometheus.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
mode: "HTTP"
|
||||
http:
|
||||
host: "0.0.0.0"
|
||||
port: 9100
|
||||
authentication:
|
||||
scheme: "NONE"
|
||||
username: "username"
|
||||
password: "password"
|
||||
pushGateway:
|
||||
job: "unifiedmetrics"
|
||||
url: "http://pushgateway:9091"
|
||||
authentication:
|
||||
scheme: "NONE"
|
||||
username: "username"
|
||||
password: "password"
|
||||
interval: 10
|
20
main/config/villagernames.json5
Normal file
20
main/config/villagernames.json5
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
// Use the custom name list, editable in ./mods/villagernames/customnames.txt, seperated by a comma. If custom names are found, the default name list is ignored.
|
||||
"useCustomNames": true,
|
||||
// Use the list of pre-defined female names when naming villagers.
|
||||
"useDefaultFemaleNames": true,
|
||||
// Use the list of pre-defined male names when naming villagers.
|
||||
"useDefaultMaleNames": true,
|
||||
// Disabled by default. Whether both custom and default names should be used to name villagers. Custom names will probably not be chosen often due to the amount of default names.
|
||||
"useBothCustomAndDefaultNames": true,
|
||||
// If enabled, also gives modded villagers a name. If you've found a 'villager'-entity that isn't named let me know by opening an issue so I can add it in.
|
||||
"nameModdedVillagers": true,
|
||||
// Whether the profession should be added to the villager's trade screen next to their name.
|
||||
"showProfessionOnTradeScreen": true,
|
||||
// If enabled, switches the name and profession on the villager trading screen. Result: <profession> - <name>.
|
||||
"switchNameAndProfessionTradeScreen": true,
|
||||
// Whether the merchant level (novice, apprentice etc.) should be hidden on the trade screen.
|
||||
"hideMerchantLevelTradeScreen": false,
|
||||
// If enabled, the mod capitalizes each word in the custom name list.
|
||||
"shouldCapitalizeNames": true
|
||||
}
|
0
main/config/villagernames/customnames.txt
Normal file
0
main/config/villagernames/customnames.txt
Normal file
85
main/mods.txt
Normal file
85
main/mods.txt
Normal file
@@ -0,0 +1,85 @@
|
||||
# Fabric API
|
||||
https://cdn.modrinth.com/data/P7dR8mSH/versions/thGkUOxt/fabric-api-0.107.0%2B1.21.1.jar
|
||||
|
||||
# Cloth Config API
|
||||
https://cdn.modrinth.com/data/9s6osm5g/versions/7jtvrmVP/cloth-config-15.0.130-fabric.jar
|
||||
|
||||
# Moonlight Lib
|
||||
https://cdn.modrinth.com/data/twkfQtEc/versions/tP7HsFBI/moonlight-1.21-2.14.12-fabric.jar
|
||||
|
||||
# Yungs API
|
||||
https://cdn.modrinth.com/data/Ua7DFN59/versions/Nx7XHO30/YungsApi-1.21-Fabric-5.0.0.jar
|
||||
|
||||
# GlitchCore API
|
||||
https://cdn.modrinth.com/data/s3dmwKy5/versions/lbSHOhee/GlitchCore-fabric-1.21.1-2.1.0.0.jar
|
||||
|
||||
# Cardinal Components API
|
||||
https://cdn.modrinth.com/data/K01OU20C/versions/tVPYyTPV/cardinal-components-api-6.1.1.jar
|
||||
|
||||
# Collective API
|
||||
https://cdn.modrinth.com/data/e0M1UDsY/versions/nwmUrrgY/collective-1.21.1-7.87.jar
|
||||
|
||||
# TerraBlender API
|
||||
https://cdn.modrinth.com/data/kkmrDlKT/versions/yHeHBZPt/TerraBlender-fabric-1.21.1-4.1.0.5.jar
|
||||
|
||||
# CristelLIB
|
||||
https://cdn.modrinth.com/data/cl223EMc/versions/8iGbvXwk/cristellib-fabric-1.2.8.jar
|
||||
|
||||
# Performance
|
||||
https://cdn.modrinth.com/data/gvQqBUqZ/versions/5szYtenV/lithium-fabric-mc1.21.1-0.13.0.jar
|
||||
https://cdn.modrinth.com/data/fALzjamp/versions/dPliWter/Chunky-1.4.16.jar
|
||||
https://cdn.modrinth.com/data/s86X568j/versions/uT1cdd3k/ChunkyBorder-1.2.18.jar
|
||||
https://cdn.modrinth.com/data/LFJf0Klb/versions/7e8Rxgsk/ce-2.1.1.jar
|
||||
|
||||
# Proxy
|
||||
https://cdn.modrinth.com/data/8dI2tmqs/versions/AQhF7kvw/FabricProxy-Lite-2.9.0.jar
|
||||
|
||||
# Monitoring
|
||||
https://cdn.modrinth.com/data/Ha28R6CL/versions/B0fZidZi/fabric-language-kotlin-1.12.3%2Bkotlin.2.0.21.jar
|
||||
https://cdn.modrinth.com/data/p1ewR5kV/versions/xwRVtqbA/unifiedmetrics-platform-fabric-0.3.8.jar
|
||||
|
||||
# World Edit
|
||||
https://cdn.modrinth.com/data/1u6JkXh5/versions/vBzkrSYP/worldedit-mod-7.3.6.jar
|
||||
|
||||
# Squaremap
|
||||
https://cdn.modrinth.com/data/PFb7ZqK6/versions/RerxbGKf/squaremap-fabric-mc1.21.1-1.3.2.jar
|
||||
|
||||
# World Guard
|
||||
https://cdn.modrinth.com/data/py6EMmAJ/versions/xpvSS4oW/yawp-0.0.2.10-alpha2.jar
|
||||
https://cdn.modrinth.com/data/ohNO6lps/versions/gtorYSGm/ForgeConfigAPIPort-v21.1.0-1.21.1-Fabric.jar
|
||||
|
||||
# Permission Management
|
||||
#https://cdn.modrinth.com/data/Vebnzrzj/versions/oLykW1F8/LuckPerms-Fabric-5.4.139.jar
|
||||
|
||||
# Custom
|
||||
#https://cdn.modrinth.com/data/HjmxVlSr/versions/2Z4xpeH5/YungsBetterMineshafts-1.20.4-Fabric-4.4.0.jar
|
||||
#https://cdn.modrinth.com/data/o1C1Dkj5/versions/4RpKnxDR/YungsBetterDungeons-1.20.4-Fabric-4.4.0.jar
|
||||
#https://cdn.modrinth.com/data/3dT9sgt4/versions/V46v23Uz/YungsBetterOceanMonuments-1.20.4-Fabric-3.4.0.jar
|
||||
#https://cdn.modrinth.com/data/kidLKymU/versions/Y05JQWx3/YungsBetterStrongholds-1.20.4-Fabric-4.4.0.jar
|
||||
#https://cdn.modrinth.com/data/Z2mXHnxP/versions/QplnGAIz/YungsBetterNetherFortresses-1.20.4-Fabric-2.4.0.jar
|
||||
#https://cdn.modrinth.com/data/t5FRdP87/versions/3CEVoaSN/YungsBetterWitchHuts-1.20.4-Fabric-3.4.0.jar
|
||||
#https://cdn.modrinth.com/data/XNlO7sBv/versions/Rnvv7pHS/YungsBetterDesertTemples-1.20.4-Fabric-3.4.0.jar
|
||||
#https://cdn.modrinth.com/data/Ht4BfYp6/versions/tx2e5Fjp/YungsBridges-1.20.4-Fabric-4.4.0.jar
|
||||
#https://cdn.modrinth.com/data/ZYgyPyfq/versions/F1adMKW8/YungsExtras-1.20.4-Fabric-4.4.0.jar
|
||||
#https://cdn.modrinth.com/data/z9Ve58Ih/versions/DIG3Vtjv/YungsBetterJungleTemples-1.20.4-Fabric-2.4.0.jar
|
||||
#https://cdn.modrinth.com/data/2BwBOmBQ/versions/mRCm0pL5/YungsBetterEndIsland-1.20.4-Fabric-2.4.0.jar
|
||||
|
||||
https://cdn.modrinth.com/data/HXF82T3G/versions/qtNTr7tS/BiomesOPlenty-fabric-1.21.1-21.1.0.7.jar
|
||||
|
||||
https://cdn.modrinth.com/data/lWDHr9jE/versions/mSYrCaov/tectonic-fabric-1.21.1-2.4.1a.jar
|
||||
|
||||
https://cdn.modrinth.com/data/POQ2i9zu/versions/eUncYB8D/friendsandfoes-fabric-mc1.21.1-3.0.5.jar
|
||||
|
||||
https://cdn.modrinth.com/data/9TbXlAut/versions/GLzzUE5s/thermoo-4.2.3.jar
|
||||
https://cdn.modrinth.com/data/Ae6qoBj3/versions/4Fr1WkWJ/frostiful-1.3.3.jar
|
||||
https://cdn.modrinth.com/data/SZQ5qcdn/versions/sCgkEPPh/scorchful-0.12.1.jar
|
||||
|
||||
https://cdn.modrinth.com/data/Fb4jn8m6/versions/c04fsPim/FallingTree-1.21.1-1.21.1.2.jar
|
||||
|
||||
https://cdn.modrinth.com/data/gqRXDo8B/versions/WPsLTKwG/villagernames-1.21.1-8.1.jar
|
||||
|
||||
https://cdn.modrinth.com/data/cnIatHrN/versions/BfXSBkjs/universal_shops-1.7.1%2B1.21.jar
|
||||
|
||||
https://cdn.modrinth.com/data/8oi3bsk5/versions/81gyNzd0/Terralith_1.21.x_v2.5.6.jar
|
||||
|
||||
https://cdn.modrinth.com/data/DjLobEOy/versions/MntMLupc/t_and_t-neoforge-fabric-1.13.2.jar
|
32
main/ops.json
Normal file
32
main/ops.json
Normal file
@@ -0,0 +1,32 @@
|
||||
[
|
||||
{
|
||||
"uuid": "61ec0d1b-0dc2-45bd-930e-ab45bcaa4386",
|
||||
"name": "Athro_Hiro",
|
||||
"level": 4,
|
||||
"bypassesPlayerLimit": false
|
||||
},
|
||||
{
|
||||
"uuid": "d3dd297f-0c08-45a0-8260-f1ac46af490a",
|
||||
"name": "Der_Grumpf",
|
||||
"level": 4,
|
||||
"bypassesPlayerLimit": false
|
||||
},
|
||||
{
|
||||
"uuid": "2f1de2e1-9fe8-457c-9a99-26c611fc6b64",
|
||||
"name": "mlgChaostom44",
|
||||
"level": 4,
|
||||
"bypassesPlayerLimit": false
|
||||
},
|
||||
{
|
||||
"uuid": "f42bbaa6-b2e7-4573-8092-13fbddf2544d",
|
||||
"name": "Deltayquaza",
|
||||
"level": 4,
|
||||
"bypassesPlayerLimit": false
|
||||
},
|
||||
{
|
||||
"uuid": "c76e4802-7f01-47cb-bc1b-16cadd736078",
|
||||
"name": "Weizenkumpel",
|
||||
"level": 4,
|
||||
"bypassesPlayerLimit": false
|
||||
}
|
||||
]
|
6
main/rclone.conf
Normal file
6
main/rclone.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
[onedrive]
|
||||
type = onedrive
|
||||
region = global
|
||||
token = {"access_token":"EwBoA8l6BAAUAOyDv0l6PcCVu89kmzvqZmkWABkAASUHLs2pxdUsz/OBUq9YwiZ2M84/Gav+Ji8RcwvFjpyjp5u+wCa2uIrU3WBuGQagVhUpAAdiqsnwTs5xWer76QeZ8IvrTxfbNDAQCbnG8LxVTSUYO4cWjOdiD1uyVEpvLD6SzNLDqrSJwJ93hKf8wKvHj8g1LCBLHC7+GdsCUBeexyX+/nZPRptSI8IqTdPgm5/ltrStAcQUh94ATHV/2OT/NwJevIxhVo20RZ3/aPsNY2TCXP8qkkdHGhvNYfNfl8tGtVIx8VQiHRB5JzI6KobrHG42eANuZbKdN3TnXv4GeAs5oKpI6bYwhEKv0vpTmx+OAdIXE3cICK3kxYW41y0DZgAACGy0H8e6tLTcOAIYMOOAcTA4ntykkx1euTFyAjVFK9iVdFA89Zn0kFuwKWtuEeX7emupQDSGtKtSNn7ynWewPVURp/LAmf81oiN08klaVB9WoBUbnbC9f1QwZIMJ4EuWqouzHS1RWQ7LBQzfEM/+xyH4DMZk69hTEyLuK+Y3Vqcgv6OaRfDfXKH5CT8S5y5/Hpm5w4qyh5fC+GfdI6TWutk/o78cqvcBWP3ocsdZi5pl4+bhXBkpcfk5h7DvivbNubvjWcQAVCGQTvPYCpxSVnEkd0WXu2xL4OO6nbQdXvatDMJ2iGifbyF+tp9AFCQllh3njVBObHf2EFdbLiC2spaQB16S7k3nZNxYuk5M71A/stzqwqyH15QnPvAmg9C+aClGz+WC5CzvGQwvcTFSC+HFQv5h7IVdvPScJ+aIXEZZuR6aj51BR3EilAagTWJP1yJZgWuQaGLMtEs/ANEKN7sPONJX/bX7kroNpne2n3zIGl/X59eA3EMJUjz0D1WkB74gLD96djCekYC86sRU994Hwc0JyKbSQ575rGfB1P1+oajroIpxuK6Fp//J9YN3k9yDtLWhNaHmEOMj448PTTU1xcbmnL/xTyhvW/DeMzHujZYTLIfJkhiW9LOj62aSzhnFqNKk+iQiCLjJqQuxxDLUZdDKsFpAwtzfc/mvAC99TRt89lkZw0nkT0YAbyCGeV6FxteKYpFU01kDemAedDcmoFcAH6ZhYTV3bKXnSdZvRL0O3XcyBA1GKArd0K+oVZ5SdAI=","token_type":"Bearer","refresh_token":"M.C105_BAY.-CWj5bdamRNRYBCr4SA7W1iaPJ83heEpMwlzvZLvxgVE2JDvcI4pctL!PpoOlhm!FPwtoJoniQdrxA0Kdrgt9WUn*gtBFAyRk4PtjtUrnmOWFyd7a8eTIRpr2rONWjmn2o1onFqzGzYKLy1anMmrjr8vXzatrrhOPuzgJtr0H39CHGftXIPmnAuhSd8D5RUbI1qAtpQbJHiGD4bf9zCMRfbKn2r8Ku87qIRwUgOXfsoybmFlJWmEMzzF1tW!RHvmW9wVbwLJxHVwIm9hGbWcwlvoBi84NYZDO2hhrxyWmnIvpeB55Kxt7DOKguRCOxlkuQROTmcshoyeOoukjpoMn0Nu5uf9*82Ie6IMQLUPhzLI7","expiry":"2023-08-02T16:42:19.646936273+02:00"}
|
||||
drive_id = 9c20a38ad15c6707
|
||||
drive_type = personal
|
59
main/squaremap/advanced.yml
Normal file
59
main/squaremap/advanced.yml
Normal file
@@ -0,0 +1,59 @@
|
||||
config-version: 3
|
||||
world-settings:
|
||||
default:
|
||||
invisible-blocks:
|
||||
- minecraft:tall_grass
|
||||
- minecraft:fern
|
||||
- minecraft:short_grass
|
||||
- minecraft:large_fern
|
||||
iterate-up-base-blocks:
|
||||
- minecraft:netherrack
|
||||
- minecraft:glowstone
|
||||
- minecraft:soul_sand
|
||||
- minecraft:soul_soil
|
||||
- minecraft:gravel
|
||||
- minecraft:warped_nylium
|
||||
- minecraft:crimson_nylium
|
||||
- minecraft:nether_gold_ore
|
||||
- minecraft:ancient_debris
|
||||
- minecraft:nether_quartz_ore
|
||||
- minecraft:magma_block
|
||||
- minecraft:basalt
|
||||
color-overrides:
|
||||
biomes:
|
||||
foliage:
|
||||
minecraft:jungle: '#1f8907'
|
||||
minecraft:mangrove_swamp: '#6f9623'
|
||||
minecraft:sparse_jungle: '#1f8907'
|
||||
minecraft:bamboo_jungle: '#1f8907'
|
||||
minecraft:dark_forest: '#1c7b07'
|
||||
grass: {}
|
||||
water: {}
|
||||
blocks:
|
||||
minecraft:azure_bluet: '#F7F7F7'
|
||||
minecraft:oxeye_daisy: '#D6E8E8'
|
||||
minecraft:glass: '#FFFFFF'
|
||||
minecraft:white_tulip: '#D6E8E8'
|
||||
minecraft:mycelium: '#6F6265'
|
||||
minecraft:spruce_leaves: '#619961'
|
||||
minecraft:pink_tulip: '#EBC5FD'
|
||||
minecraft:rose_bush: '#9B221A'
|
||||
minecraft:blue_orchid: '#2ABFFD'
|
||||
minecraft:orange_tulip: '#BD6A22'
|
||||
minecraft:peony: '#EBC5FD'
|
||||
minecraft:sunflower: '#FFEC4F'
|
||||
minecraft:allium: '#B878ED'
|
||||
minecraft:wither_rose: '#211A16'
|
||||
minecraft:birch_leaves: '#80A755'
|
||||
minecraft:lava: '#EA5C0F'
|
||||
minecraft:lily_of_the_valley: '#FFFFFF'
|
||||
minecraft:poppy: '#ED302C'
|
||||
minecraft:attached_melon_stem: '#E0C71C'
|
||||
minecraft:red_tulip: '#9B221A'
|
||||
minecraft:dandelion: '#FFEC4F'
|
||||
minecraft:pink_petals: '#FFB4DB'
|
||||
minecraft:attached_pumpkin_stem: '#E0C71C'
|
||||
minecraft:lilac: '#B66BB2'
|
||||
minecraft:cornflower: '#466AEB'
|
||||
minecraft:terracotta: '#9E6246'
|
||||
minecraft:lily_pad: '#208030'
|
95
main/squaremap/config.yml
Normal file
95
main/squaremap/config.yml
Normal file
@@ -0,0 +1,95 @@
|
||||
config-version: 2
|
||||
settings:
|
||||
commands:
|
||||
main-command-label: squaremap
|
||||
main-command-aliases:
|
||||
- map
|
||||
render-progress-logging:
|
||||
enabled: true
|
||||
interval-seconds: 1
|
||||
language-file: lang-en.yml
|
||||
debug-mode: false
|
||||
update-checker: false
|
||||
web-address: http://localhost:8080
|
||||
web-directory:
|
||||
path: web
|
||||
auto-update: true
|
||||
image-quality:
|
||||
compress-images:
|
||||
enabled: true
|
||||
value: 0.5
|
||||
internal-webserver:
|
||||
enabled: true
|
||||
bind: 0.0.0.0
|
||||
port: 8080
|
||||
flush-json-immediately: false
|
||||
ui:
|
||||
coordinates:
|
||||
enabled: true
|
||||
link:
|
||||
enabled: true
|
||||
sidebar:
|
||||
pinned: pinned
|
||||
world-settings:
|
||||
default:
|
||||
map:
|
||||
enabled: true
|
||||
display-name: '{world} @ Garde Studios'
|
||||
order: 0
|
||||
icon: ''
|
||||
max-render-threads: -1
|
||||
iterate-up: false
|
||||
max-height: -1
|
||||
biomes:
|
||||
enabled: true
|
||||
blend-biomes: 3
|
||||
glass:
|
||||
clear: true
|
||||
lava:
|
||||
checkerboard: true
|
||||
water:
|
||||
clear-depth: true
|
||||
checkerboard: false
|
||||
zoom:
|
||||
maximum: 3
|
||||
default: 3
|
||||
extra: 2
|
||||
background-render:
|
||||
enabled: true
|
||||
max-chunks-per-interval: 1024
|
||||
interval-seconds: 15
|
||||
max-render-threads: -1
|
||||
markers:
|
||||
update-interval-seconds: 5
|
||||
spawn-icon:
|
||||
enabled: true
|
||||
show-controls: true
|
||||
default-hidden: false
|
||||
layer-priority: 0
|
||||
z-index: 0
|
||||
world-border:
|
||||
enabled: true
|
||||
show-controls: true
|
||||
default-hidden: false
|
||||
layer-priority: 1
|
||||
z-index: 1
|
||||
visibility-limits:
|
||||
- type: world-border
|
||||
enabled: 'false'
|
||||
player-tracker:
|
||||
enabled: true
|
||||
update-interval-seconds: 1
|
||||
show-controls: true
|
||||
default-hidden: false
|
||||
layer-priority: 2
|
||||
z-index: 2
|
||||
nameplate:
|
||||
enabled: true
|
||||
show-head: true
|
||||
heads-url: https://mc-heads.net/avatar/{uuid}/16
|
||||
show-armor: true
|
||||
show-health: true
|
||||
hide:
|
||||
invisible: true
|
||||
spectators: true
|
||||
use-display-names: false
|
22
main/whitelist.json
Normal file
22
main/whitelist.json
Normal file
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"uuid": "61ec0d1b-0dc2-45bd-930e-ab45bcaa4386",
|
||||
"name": "Athro_Hiro"
|
||||
},
|
||||
{
|
||||
"uuid": "d3dd297f-0c08-45a0-8260-f1ac46af490a",
|
||||
"name": "Der_Grumpf"
|
||||
},
|
||||
{
|
||||
"uuid": "9b0fa43a-9c43-45bc-8e36-c282e87a3c69",
|
||||
"name": "Keanu2010Profi"
|
||||
},
|
||||
{
|
||||
"uuid": "2f1de2e1-9fe8-457c-9a99-26c611fc6b64",
|
||||
"name": "mlgChaostom44"
|
||||
},
|
||||
{
|
||||
"uuid": "c76e4802-7f01-47cb-bc1b-16cadd736078",
|
||||
"name": "Weizenkumpel"
|
||||
}
|
||||
]
|
Reference in New Issue
Block a user