Table of Contents
Palcon is a CLI tool for interacting with dedicated Palworld servers using the RCON protocol. It currently supports the below features:
Command | Implemented? | Description |
---|---|---|
ban | ✅ | Ban a player given a Palworld UID or Steam ID |
broadcast | ✅ | Broadcast a message to the server |
exit | ✅ | Save the server, and then shut down the server |
info | ✅ | Get info about the server |
kick | ✅ | Kick a player given a Palworld UID or Steam ID |
save | ✅ | Save the server |
start | ✅ | Start a server on the local computer |
I included binaries for both AMD64 and 386 architectures in the
releases page. I still suggest to install Palcon through go install
, though.
Installing executables is risky, even on an open source codebase. These executable files exist for convenience.
Most users should download and use the AMD64 release.
- Download released binary from releases page
- After stepping through Microsoft warnings, open a shell (like PowerShell or Command Prompt)
- Run the executable
<PATH TO EXECUTABLE> <FLAGS> <COMMAND>
# install Go https://go.dev/doc/install
# clone repo
git clone [email protected]:DavidJS01/palcon.git
# build executable
go build -o palcon.exe
go install github.com/DavidJS01/palcon@latest
> palcon
Palcon is a CLI tool that lets you interact with dedicated palworld servers.
After cloning the project locally and changing your terminal's directory into the project's root:
# clone project
git clone [email protected]:DavidJS01/palcon.git
# change working directory
cd palcon
# install project
go install
# run palcon
> palcon
Palcon is a CLI tool that lets you interact with dedicated palworld servers.
# CLI format:
# palcon --host <SERVER IP> --port <SERVER PORT> --password <ADMIN PASSWORD> COMMAND
# get info on server (good for checking if server is online)
palcon --host 173.194.0.0 --port 25575 --password PASSWORD info
# start a local Palworld server
palcon start
# save a server
palcon --host 173.194.0.0 --port 25575 --password PASSWORD save
# get help message with ALL commands
palcon
- Add file based configuration for default host, port, and password
See the open issues for a full list of proposed features and known issues.
Contributions are appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/featureName
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/featureName
) - Open a Pull Request
Distributed under the GPL V3 License. See LICENSE.txt
for more information.
David Shipman - [email protected]