This commit is contained in:
Colbster937
2026-01-09 18:07:40 -06:00
parent eab1eb27e7
commit 430653a4ab
48 changed files with 2690 additions and 1201 deletions

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -1,7 +1,10 @@
name: OriginBlacklist
version: ${version}
main: dev.colbster937.originblacklist.bungee.OriginBlacklistBungee
description: ${description}
author: Colbster937
depends:
- EaglercraftXServer
name: ${plugin_name}
version: ${plugin_vers}
main: xyz.webmc.${plugin_iden}.bungee.${plugin_name}Bungee
description: ${plugin_desc}
website: ${plugin_site}
author: [${plugin_athr}]
contributors: [${plugin_ctbr}]
depends: [${plugin_depb}]
provides: [${plugin_prov}]
softdepend: [${plugin_sdpb}]

View File

@@ -1,69 +0,0 @@
messages:
# Valid Placeholders:
# - %blocked% - The player's origin/brand that was blocked
# - %blocktype% - Shows what the player was blocked for
# - %easyblocktype% - Shows what the player was blocked for in an eagler-kid readable form
# - %notallowed1% - Longer "not allowed" message
# - %notallowed2% - Shorter "not allowed" message
# - %host% - The IP the player pinged
# - %help% - The configured help message for the block type
kick: |
<red>This %easyblocktype% is %notallowed1%!</red>
<dark_gray>»</dark_gray> <gray>%blocked%</gray> <dark_gray>«</dark_gray>
%help%
<gray>Think this is a mistake? Join our discord:</gray>
<blue>discord.gg/changethisintheconfig</blue>
# Please note that help is only supported in the kick message, not the MOTD
help:
generic: "<gray>Please switch to a different %easyblocktype%.</gray>"
player: "<gray>Please change your %easyblocktype%.</gray>"
ip: "<gray>Please contact staff for assistance.</gray>"
motd:
enabled: true
text: |
<red>This %easyblocktype% is %notallowed2%!</red>
<dark_gray>»</dark_gray> <gray>%blocked%</gray>
icon: "blacklisted.png"
# Origin + Brand blacklist supports wildcards
# Everything should be lowercase
blacklist:
origins:
- "*eagler-clients.vercel.app*"
- "*eaglerhackedclients.vercel.app*"
- "*eaglerhacks.github.io*"
brands:
- "*dragonx*"
- "*piclient*"
players:
- "Admin"
ips:
- "192.0.2.0/24"
discord:
webhook: ""
# :>

View File

@@ -1,9 +1,12 @@
name: OriginBlacklist
version: ${version}
main: dev.colbster937.originblacklist.bukkit.OriginBlacklistBukkit
description: ${description}
author: Colbster937
depend:
- EaglercraftXServer
name: ${plugin_name}
version: ${plugin_vers}
main: xyz.webmc.${plugin_iden}.bukkit.${plugin_name}Bukkit
description: ${plugin_desc}
website: ${plugin_site}
authors: [${plugin_athr}]
contributors: [${plugin_ctbr}]
depend: [${plugin_depa}]
provides: [${plugin_prov}]
softdepend: [${plugin_sdpa}]
commands:
originblacklist:

View File

@@ -1,14 +1,10 @@
{
"id": "originblacklist",
"name": "OriginBlacklist",
"version": "${version}",
"description": "${description}",
"main": "dev.colbster937.originblacklist.velocity.OriginBlacklistVelocity",
"authors": ["Colbster937"],
"dependencies": [
{
"id": "eaglerxserver",
"optional": false
}
]
}
"id": "${plugin_iden}",
"name": "${plugin_name}",
"version": "${plugin_vers}",
"description": "${plugin_desc}",
"website": "${plugin_site}",
"main": "xyz.webmc.${plugin_iden}.velocity.${plugin_name}Velocity",
"authors": [${plugin_athr}],
"dependencies": [${plugin_depc}]
}