Installation Guide
Prerequisites
Step 1: Database Setup
Tables Created
-- Main XP storage table
CREATE TABLE IF NOT EXISTS cas_hunting_xp (
charid INT NOT NULL,
xp INT NOT NULL DEFAULT 0,
trace INT NOT NULL DEFAULT 0,
language VARCHAR(10) NOT NULL DEFAULT 'en',
language_selected TINYINT(1) NOT NULL DEFAULT 0,
PRIMARY KEY (charid)
);
-- Legacy progress table (optional)
CREATE TABLE IF NOT EXISTS hunter_progress (
charidentifier VARCHAR(64) NOT NULL,
level INT UNSIGNED NOT NULL DEFAULT 1,
xp INT UNSIGNED NOT NULL DEFAULT 0,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (charidentifier)
);Items Added
Item Name
Label
Limit
Step 2: Add Hunting Map Item
Step 3: Resource Installation
Step 4: Server Configuration
Step 5: Verify Installation
Common Installation Issues
"cas_fwlibs export cannot be fetched"
Database errors
NUI not loading
Items not working
Last updated