NextLevelPlugins
Visit NextLevelPluginsContact
  • 😁Introduction
  • Any Questions?
  • Plugins
    • Server Manager
      • Step 1 - Setup
      • How Tos
        • Merge With Project
        • Server Manager Application
      • Blueprints
        • Find Session
        • Server Browser
        • Create Session
        • Join Session
    • Ranked Server Manager
      • Step 1 - Setup
      • How Tos
        • Merge With Project
    • Advanced Chat System
      • Step 1 - Setup
      • How Tos
        • Merge With Project
    • Advanced Steam Party
      • Step 1 - Setup
      • How Tos
        • Example Project
        • Merge With Project
Powered by GitBook
On this page
  1. Plugins
  2. Server Manager
  3. How Tos

Merge With Project

You may need to go into View Options and make sure "Show Plugin Content, and Show Engine Content is checked"

PreviousHow TosNextServer Manager Application

Last updated 10 months ago

Parenting GameMode

You must open your game mode, go to Class Settings, click Parent Class, and search for NLPManagerGameMode. After you have parented, you must copy some code into your own. NLPManager Content > Manager > Common > Game > GameGameMode Then, back in your game mode, paste the code you found in the GameGameMode. Then, on Event Begin Play, right-click and click "Add call to the parent function." You will also need to do the same if you have any of these events in your game mode: OnPreLogin, BeginPlay, OnPostLogin, and OnLogout.

Adding GameMode Events

  • OnBeforeServerStart (This is when the server is starting, and you want to load all your data before users actually join.)

  • OnServerStarted (This is when the server has been posted and is ready for users.)

  • OnServerError (This is when any errors occur)

  • OnMatchmakingPlayerJoined (When a player joins, you can also get their custom matchmaking data)