SeaCogs/pterodactyl/config.py

32 lines
1.6 KiB
Python
Raw Normal View History

from redbot.core import Config
config: Config = Config.get_conf(None, identifier=457581387213637448123567, cog_name="Pterodactyl", force_registration=True)
2025-03-28 10:17:43 -05:00
def register_config(config_obj: Config) -> None:
config_obj.register_global(
base_url=None,
server_id=None,
console_channel=None,
console_commands_enabled=False,
2025-03-28 10:17:43 -05:00
current_status="",
2024-03-02 15:30:47 -05:00
chat_regex=r"^\[\d{2}:\d{2}:\d{2}\sINFO\]: (?!\[(?:Server|Rcon)\])(?:<|\[)(\w+)(?:>|\]) (.*)",
2024-03-02 12:40:25 -05:00
server_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]:(?: \[Not Secure\])? \[(?:Server|Rcon)\] (.*)",
join_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]: ([^<\n]+) joined the game$",
leave_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]: ([^<\n]+) left the game$",
2024-03-01 00:46:51 -05:00
achievement_regex=r"^\[\d{2}:\d{2}:\d{2} INFO\]: (.*) has (made the advancement|completed the challenge) \[(.*)\]$",
2025-03-28 10:17:43 -05:00
chat_command='tellraw @a ["",{"text":".$N ","color":".$C","insertion":"<@.$I>","hoverEvent":{"action":"show_text","contents":"Shift click to mention this user inside Discord"}},{"text":"(DISCORD):","color":"blue","clickEvent":{"action":"open_url","value":".$V"},"hoverEvent":{"action":"show_text","contents":"Click to join the Discord Server"}},{"text":" .$M","color":"white"}]', # noqa: E501
topic="Server IP: .$H\nServer Players: .$P/.$M",
topic_hostname=None,
topic_port=25565,
api_endpoint="minecraft",
chat_channel=None,
2025-03-28 10:17:43 -05:00
startup_msg="Server started!",
shutdown_msg="Server stopped!",
join_msg="Welcome to the server! 👋",
leave_msg="Goodbye! 👋",
mask_ip=True,
invite=None,
regex_blacklist={},
)