Skip to content

v0.0.58

Latest

Choose a tag to compare

@github-actions github-actions released this 31 Mar 15:12
f0d1a94

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!

  1. Download the appropriate archive for your platform
  2. Extract the archive
  3. Set up your MySQL database (see README.md)
  4. Run in dev mode:
./Valhalla -type dev -config config_dev.toml -channels 4

Dev 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.toml

For more details, see README.md

Changelog

  • f0d1a94 Fix cash shop inventory slot increase packet opcode structure (#270)