Skip to content
Games by Hyper
Sign Up / Login
Games by Hyper

Generic

  • QuickStart
  • Support
  • Purchase Options
  • Roadmap
  • FAQ
  • Learning
  • For Professional Studios

Templates

  • Template Logic and flexibility

Shared Infrastructure

  • Gameplay Tags
  • Datamanagement
  • Folder Structure

Item Management

  • Inventory
  • Jigsaw Inventory
  • List Inventory
  • Respawn Actor Manager
  • Hotbar
  • Crafting
  • Item Allocator
  • Vendor
  • Icon Creator
  • Interactive Foliage
  • Inspection System

Interaction and Feedback

  • Interaction System
  • Outliner System

UI

  • Main Menu
  • HUD
  • Information Prompt

Locomotion

  • Animation Framework
  • Extended Movement Component
  • Leader Posing
  • Custom-Skeletal-Meshes

Combat

  • Attribute Manager
  • Team Affiliation
  • Equipment Manager
  • Ragdoll System
  • Ability System
  • Target Locking
  • Weapon Attachment System
  • Limb System
  • Combat-framework

Construction and Survival Mechanics

  • Building System
  • Mineable Rocks
  • Tree Cutting
  • Farming System
  • Fishing System
  • Swimming System

Game Management

  • Global Save System
  • Respawn System
  • Session Manager
  • Game Mode System
  • Spectate System
  • Player Manager
  • Team Manager
  • Score Manager
  • Guild Manager
  • Party Manager

Multiplayer

  • Online Multiplayer Framework
  • Replication Subsystem
  • Chat System
  • Console Command Manager

AI

  • Basic AI
  • NPC Behavior System
  • Perception System
  • Companion System

Exploration and Narrative

  • Dialogue System
  • Memory System
  • Quest Manager
  • Map System
  • Teleport System
  • Guide System
  • Event Manager
  • Visual Novel System
  • Dungeon Adventure Kit
  • Region Manager

Progression and Leveling

  • Level Manager
  • Unlock System
  • Reputation System

Security and Control Systems

  • Drone System
  • Lock System
  • Security System
  • Defense System
  • Defense System – Modern
  • Defense System – Primitive

Character and Player Systems

  • Character Creator
  • Class System
  • Mount System
  • First Person

Environmental Control and Immersion

  • Time and Day Night Cycle management
  • Weather System
  • Background Music System
  • Footstep System

Environment Building

  • Mesh to Actor Swap System
  • Auto Landscape
  • Cave
  • Deform
  • Ditch
  • Exclusion
  • Forest
  • Forest-Basic
  • Lake
  • Level Instances
  • Mesh
  • Path
  • Props
  • Spline
  • Village
View Categories
  • Home
  • Docs
  • QuickStart

QuickStart

3 min read

QuickStart #

Games by Hyper – Quickstart Guide #

Introduction

Thank you for choosing a Games by Hyper module! Games by Hyper is a small, dedicated team led by Eric Ruts, with over 50,000 hours invested in building modular, production-quality systems for Unreal Engine. Our focus is on delivering robust, original, and highly extensible tools, helping you build your game faster, smarter, and with fewer roadblocks.
We really hope you enjoy our systems. Feel free to reach out anytime.

With gratitude and warmth, Eric Ruts


Resources & Support #

Video Tutorials (Recommended)

  • YouTube Channel – Games by Hyper
    Tutorials are frequently updated and often made based on community requests.
    • Example of quickly combining V3 systems How to add the ability, level manager and unlock system to MST Pro?
    • Adapting Hyper modules to your own systems (Mineable Rocks Example)
    • Detailed migrating and combining Hyper systems example (Level Manager Example)
    • First hour in MST Pro

Documentation

  • Official Docs
    Documentation is available but may be less up to date than the video tutorials. For the latest guidance, please check our videos first. Documentation will continue to be updated and expanded.

Courses

Udemy courses by Eric Ruts

  • UE5 Fundamentals Course
  • Multiplayer Survival Framework Course

Community & Support

  • Join our Discord for community-driven support, quick questions, or to connect directly with the team:
    https://discord.gg/gamesbyhyper


Migration #

  1. Before You Begin
  • Back up your project.
    This includes any Data Tables that might be affected during migration.
  1. Plugins
  • Check which plugins are required for this module.
    You can right-click the .uproject file and choose “Edit with Notepad” to view all plugins used in the project.
  • Most Hyper modules use the Common UI plugin for widgets.
  1. Project Settings
  • Review the config files of this project.
    Pay special attention to gameplay tags, physical surfaces, and all trace and object channels.
    These settings are important for correct integration and may differ from your current project setup.
Examples:
    • Physical Surfaces:
      Some modules use custom physical surfaces. Copy the setup from the config file and ensure the order and numbers match those in the demo project.
    • Damageable Trace Channel:
      Used for correct hit detection. Check the config file for the correct number and response settings.
    • Interaction Trace Channel:
      All interactables use this channel. By default, set to “Ignore.” Only set to “Block” for items you want to be interactable. Again, match numbers as in the config.


  1. Migration Steps
  • Migrate from the content folder of the module to the content folder of your target project.
  • Do not choose to overwrite existing files when prompted–this will overwrite your data tables.
  • Always use the Unreal migration tool. Never copy-paste files manually; it ensures references remain correct.
  • Close your target project before migrating.
  1. Testing
  • Open the Example map and test if everything works without any problems.
    Do not continue if it does not.
  • For minimal file migration, select only the actor component you want, right-click, and select “Migrate” for that specific component.

Additional Notes

  • Always migrate into your most complete project with the largest data tables (such as MST Pro).
  • If you have multiple data tables with unique values from different systems, combine them by exporting as JSON, merging, and re-importing as needed.
  • To restore original data tables (for example, if DT_Items is overwritten), download the correct data table file (available after verification), re-import it as JSON, and you’re set (ignore warnings).
  • Always back up your data tables before starting migration or making changes.

If you encounter any issues, ensure your project has no errors and reach out for support. Following these steps will help migration and integration go smoothly.


Integration #

  1. Open the Example Map and check for components

After a successful migration, open the provided Example Map in your target project.
Test thoroughly: Play around in this map and ensure everything works as expected. If there are issues, resolve them before continuing.

Check the following assets for assigned actor components:

  • Pawn
  • Player Controller
  • Game Mode
  • Game State

Make sure to implement these components in your own system, or add them together with other Hyper modules as needed.

  1. Components
  • You can integrate this system into any project, usually in any order.
    Exception: Some systems (like the Unlock System and Ability System) may require a specific order in the Actor Component list. For example, the Unlock System should be below the Ability System if you want them to work together for unlocking features.
  • Add the required actor components to the appropriate assets (such as Pawn, Player Controller, Game Mode, or Game State) in your own project.
    • If you have an advanced version of a component, use that one instead of the basic or example version.
    • If you already added a component during a previous migration, only keep one instance.
  • You do not need to use all components. Advanced users can swap components for their own implementations, but for most users, it’s best to use the provided setup.
    • Refer to video materials for practical integration examples.
  • If you use your own skeleton and want to utilize the equipment logic, add the following sockets (as needed) to your skeletal mesh:
    weapon_r, weapon_l, ring_r, ring_l, head, body, necklace, backpack
What are your Feelings
Still stuck? How can we help?

How can we help?

Table of Contents
  • QuickStart
    • Games by Hyper - Quickstart Guide
    • Resources & Support
    • Migration
    • Integration

© 2025 Games by Hyper

X Reddit Patreon Discord Linkedin YouTube

Review Cart

No products in the cart.

We noticed you're visiting from Netherlands. We've updated our prices to Euro for your shopping convenience. Use United States (US) dollar instead. Dismiss

  • Hyper Bundle Configurator
  • Shop
    • Game Templates
    • Courses
    • Loyalty Store
    • Survival Modules
    • RPG Modules
    • Environment Building
    • Browse All
  • My account
  • Become a Member
  • Cart
  • Get Help
    • FAQ
    • Upgrade your Game Template
    • Documentation
  • About Hyper
  • News & Updates