Merge With Project

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

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)

Last updated