> For the complete documentation index, see [llms.txt](https://docs.tip4serv.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tip4serv.com/games/palworld.md).

# Palworld

Connect and monetize your Palworld server by linking your store to it. The Tip4Serv mod checks whether a player has donated, then automatically delivers their order (exp, items, etc.)

### Connect your Palworld Server

#### 1. Make sure UE4SS is installed

Tip4Serv requires **UE4SS** to work.&#x20;

If UE4SS is **already installed** on your Palworld server, skip to Step 3.

1. Download [UE4SS-Palworld.zip](https://github.com/Okaetsu/RE-UE4SS/releases/tag/experimental-palworld)
2. Unzip the downloaded file.
3. Open the extracted folder, then **copy the `ue4ss` folder and the `.dll` file** into your server’s `Pal\Binaries\Win64\` folder.

<figure><img src="https://2187496599-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrJFlpzFF4M0XjvFfIMsk%2Fuploads%2Fqg79VLXGtt5esPfUhydM%2F0dc7a164658256a7d013bd8f151b4518.png?alt=media&amp;token=8bc2850e-6b66-460b-963f-e4bb1faa9972" alt=""><figcaption></figcaption></figure>

Reboot your server and wait for it to load.

***

#### 2. Connect Your Palworld Server to Tip4Serv

1. Navigate to the [**My Servers**](https://tip4serv.com/dashboard/my-servers) section of your Tip4Serv dashboard.
2. Click **Connect a Game Server**, and choose **Palworld**.
3. Enter your **server name,** then continue and **follow the instructions provided**.

***

### Configure Automatic Reward Delivery

Next, you’ll need to configure the console commands that the Tip4Serv mod should execute after each successful purchase.

This is done directly through the [**Command Editor**](https://docs.tip4serv.com/store-setup/server-commands) in your Tip4Serv dashboard, under each product.

You’ll find some examples below.

**📣 Broadcast**

Send a public thank-you message in the server chat.

```
say A big thank you to {palworld_username} for their donation of {total_paid} {currency}
```

🎁 **Give Item, Pal, XP**

You can retrieve the item IDs here: <https://www.palmods.gg/docs/authors/game-ids/items>

**Give 20 Wood to the player.**

```
give {player_id} Wood 20
```

**Give 1 Pal Sphere to the player.**

```
give {player_id} PalSphere 1
```

**Give 10 Pal Metal Ingot to the player.**

```
give {player_id} StealIngot 10
```

**Gives a male WoolFox (level 52) and places it directly in the player's Palbox.**

```
givepal {player_id} WoolFox 52 male
```

**Give 3000 XP to the player.**

```
givexp {player_id} 3000
```

### How it work?​

The Tip4Serv Palworld mod automatically displays a message in the in-game chat whenever a player joins the server, showing their unique **Palworld Player ID**.

<figure><img src="https://2187496599-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrJFlpzFF4M0XjvFfIMsk%2Fuploads%2FRRfQpRlDfw1HpLPkHtkL%2F4fff1e87043e9f6dc8a0df45f6e533f4.png?alt=media&amp;token=60230072-0fad-4cd3-964e-9a816f5e2b63" alt=""><figcaption></figcaption></figure>

When making a purchase, the player simply enters this **Player ID** in the Tip4Serv checkout.

Once the payment is completed, the purchased product is **automatically delivered directly to the player in-game**.

This system also allows **console players to make purchases and receive in-game rewards**, without requiring a Steam account.

Players can type the command `!webstore` to see the link to the store and their player ID:

<figure><img src="https://2187496599-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrJFlpzFF4M0XjvFfIMsk%2Fuploads%2FBe1fLmyOhBQb6HKzqk1g%2Fef4d8cd52a7f7243fdb6bb05e55164d6.png?alt=media&amp;token=c7b63197-49ae-40fd-a147-9c380bc85438" alt=""><figcaption></figcaption></figure>

#### Mod configuration

The `config.json` file allows you to customize the Tip4Serv Palworld mod, including messages, delays, your store URL, and other options.

```json
{
  "interval": 1,
  "command_delay": 1,
  "messageSuccess": "[Tip4Serv] You have just received your purchase, thank you!",
  "storeLink": "https://tip4serv.com",
  "storeMessage": "Link to the store: {storeLink}",
  "welcomeEnabled": true,
  "welcomeDelay": 5,
  "welcomeMessage": "===== [ TIP4SERV ] =====\nBuy server items: {storeLink}\nYour Player ID: {playerId}\n========================",
  "log_verbose": false
}
```

**Configuration options:**

* `interval` — How often the mod checks Tip4Serv for new purchases to deliver, in minutes.
* `command_delay` — Delay between the execution of delivery commands, in seconds.
* `messageSuccess` — Message displayed to the player after their purchase has been successfully delivered.
* `storeLink` — URL of your Tip4Serv store.
* `storeMessage` — Message displayed when a player uses the `!webstore` command. Use `{storeLink}` to automatically insert your store URL.
* `welcomeEnabled` — Enables or disables the welcome message when a player joins the server (`true` or `false`).
* `welcomeDelay` — Delay, in seconds, before displaying the welcome message after a player joins.
* `welcomeMessage` — Message displayed when a player joins the server. Use `{storeLink}` to insert your store URL and `{playerId}` to display the player's unique Palworld Player ID. Use `\n` to create a new line.
* `log_verbose` — Enables or disables detailed logging for debugging (`true` or `false`).
