L2Off / PTS

Show item and skill names

Load L2Off catalog ids and give the portal human-readable client names

The catalog lets admins find items and skills while creating products and bundles. It is required for item authoring. The server scripts provide valid ids; optional client name uploads provide the text players actually read.

Load the server scripts

Point [catalog] at the exact files loaded by this server:

portal.toml
[catalog]
items = "C:/L2/YOUR_SERVER/CacheDScript/itemdata.txt"
skills = "C:/L2/YOUR_SERVER/Script/skill_pch.txt"

The connector loads them at startup and logs the number of records. This includes custom ids because the source is the server's own script set. Remove the skill path if you do not sell or deliver skills.

Upload readable names

The server scripts normally contain slugs such as blessed_scroll_of_escape, while display names live in the client. In Admin → Game Servers, upload text exports of itemname-e and skillname-e for this specific server.

With an upload, the picker searches the client names. Without it, the picker uses prettified server slugs. The id still comes from the live server catalog.

Verify

  1. Restart the connector and confirm non-zero loaded item/skill counts.
  2. Search the Admin item picker for Adena and confirm id 57.
  3. Search one custom id and one localized client name.
  4. Create a test product and confirm the selected id is delivered in game.

On this page