Valhalla v0.0.58 Release
This release includes pre-built binaries for multiple platforms and architectures.
What's included
- Valhalla server binary for your platform
- Required JSON data files (drops.json, reactors.json, reactor_drops.json)
- Sample configuration files (config_*.toml)
- NPC scripts (scripts/)
- LICENSE and README
Quick Start (Dev Mode - All-in-One)
Dev mode allows you to run all servers (login, world, channel, cashshop) in a single process!
- Download the appropriate archive for your platform
- Extract the archive
- Set up your MySQL database (see README.md)
- Run in dev mode:
./Valhalla -type dev -config config_dev.toml -channels 4Dev mode features:
- ✅ All servers in one process
- ✅ Auto-register enabled (no need to create accounts)
- ✅ 2x EXP/Drop/Mesos rates for faster testing
- ✅ Perfect for solo play and testing
Production Deployment
For production environments, run each server type separately:
# Login Server
./Valhalla -type login -config config_login.toml
# World Server
./Valhalla -type world -config config_world.toml
# Channel Server(s)
./Valhalla -type channel -config config_channel_1.toml
# CashShop Server
./Valhalla -type cashshop -config config_cashshop.tomlFor more details, see README.md