Reldens - Documentation
Go to websiteCheck our demo!Source GitHub
  • Documentation
  • What is Reldens?
  • Admin Panel
  • System Configuration
  • Contents creation
  • Customize your game
  • Demo server setup - Amazon Linux (2024)
  • Generators and import
  • Installation
  • Known issues
  • How to create a new Room/Scene?
  • Maps Wizard
  • System requirements
  • assets
    • object-sprite
    • player-sprite
    • skill-sprite
  • entities
    • Class Path
    • Item
    • Level Modifiers
    • Level
    • Levels Set
    • Objects
    • Respawn Areas
    • Rooms
    • Skill Types
    • Skill
    • Stats
    • Target Options
  • general
    • Actions
    • Create and configure a player spritesheet
    • Events Manager
    • Operations
    • Plugins
    • Project structure
  • generators
    • Attributes per level generator
    • Enemies experience rewards per level
    • map-composite-file
    • maps-elements
    • Generate multiple maps by loader generator
    • Generate multiple maps with associations by loader generator
    • Generate a single map by elements composite loader
    • Generate a single map by elements object loader
    • Players experience per level generator
  • importers
    • Objects Importer
    • Skills Importer
  • packages
    • tile-map-generator
      • The "composite" approach
      • Tile Map Generator
      • The "objects" approach
Powered by GitBook
On this page
  • - Connection errors with MySQL:
  • - Imported class paths are disabled by default
  • - Known missing feature:

Known issues

- Connection errors with MySQL:

If NodeJS can't connect to your MySQL server is highly likely you are using a new version of MySQL authentication (schema vs native). In that case make sure to have mysql2 been set as your RELDENS_DB_CLIENT environment variable in the .env and in the knexfile.js files.

If you still see the issue, you can try by updating your DB user to use the old MySQL "native" password:

ALTER USER '<YOUR_USERNAME>'@'<YOUR_HOST>' IDENTIFIED WITH mysql_native_password BY '<YOUR_PASSWORD>';

Or create a new one with it:

CREATE USER '<YOUR_USERNAME>'@'<YOUR_HOST>' IDENTIFIED WITH 'mysql_native_password' BY '<YOUR_PASSWORD>';

- Imported class paths are disabled by default

As temporary solution, you need to fix the records directly in the database with a query like the following:

UPDATE `skills_class_path` SET `enabled` = 1;

- Known missing feature:

In the maps wizard when you create a map with association we need to display the sub-maps as well.

PreviousInstallationNextHow to create a new Room/Scene?

Last updated 3 months ago