CodeSpartan
(CodeSpartan)
January 11, 2016, 12:52pm
756
Now I have edited my own main menu ang login screen to this mmo starter kit. I have also 2 own levels. How i can get from main menu to my own level. I mean when i am registered and made my own character i press Enter World button, but nothing happens. I want that it open other level which i have made??? I have made blueprint to start level blueprint section, but not working
Hi, are you testing that in editor? You can’t go from main menu to the game level in editor. For the server to use your new map instead of the old “desert” one, you have to set the default server map in Settings > Project Settings > Maps & Modes
I don’t have a screenshot example for that, I can only give this general advice:
To use specific coordinates (for example, spawn next to the dungeon door) you can do this: add a “map” column to the ‘characters’ table in the db and save the map as a string or int (as explained in “adding your own persistent stats” part of the guide). Then, in OnResponseGetCharacter spawn the character according to its “map” value. For example: if the character travels from a different map, spawn in the correct entrance location. If the character’s saved map == this map, then just use the coordinates from the db (this is the current default behaviour).