-
-
Notifications
You must be signed in to change notification settings - Fork 9
Home
Kozejin edited this page Feb 11, 2024
·
27 revisions
Welcome to the palworld-bot wiki!
This bot supports multiple servers. You do not need to utilize all the features the bot has to offer, so I'll provide a full configuration and a basic configuration.
Basic Configuration:
-
Server Name
: Just the name in the configuration and embeds. -
RCON_HOST
: The IP that connects to your game server. -
RCON_PORT
: The port assigned to your server for RCON user. -
RCON_PASS
: The server admin password used to access the in-game admin.
{
"PALWORLD_SERVERS": {
"Server Name": {
"RCON_HOST": "127.0.0.1",
"RCON_PORT": 25575,
"RCON_PASS": "rcon_password"
}
}
}
Advanced Configuration:
-
QUERY_CHANNEL
: Channel ID that will post server query information. -
CONNECTION_CHANNEL
: Channel ID that will post the server connection logs. -
SERVER_PORT
: The connection port that will display in the query embed. Shutdown Configuration: -
enabled
: True/False statement for server shutdown schedule. -
times
: Set restart times based on the 24 hour clock. -
timezone
: Set your timezone for the 24 hour clock.
{
"PALWORLD_SERVERS": {
"Server Name": {
"RCON_HOST": "127.0.0.1",
"RCON_PORT": 25575,
"RCON_PASS": "rcon_password",
"SERVER_PORT": 8211,
"QUERY_CHANNEL": 123456789,
"CONNECTION_CHANNEL": 123456789
}
},
"SHUTDOWN_SCHEDULE": {
"enabled": false,
"times": ["06:30", "18:30"],
"timezone": "America/New_York"
}
}