• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

failed loading symbols,forgottenserver.map file not found

carre

Advanced OT User
Joined
Apr 23, 2013
Messages
881
Solutions
1
Reaction score
157
Location
Sweden
Hi otland
I trying run a server data pack and I get this message error
and I got the map file,
Is there a way I can fix it?

Screenshot_1.png
Screenshot_2.png
 
C++:
bool ExceptionHandler::LoadMap()
{
    #ifdef __GNUC__
    if(mapLoaded)
        return false;

    functionMap.clear();
    installed = false;
    //load map file if exists
    char line[1024];
    FILE* input = fopen("forgottenserver.map", "r");
    offMin = 0xFFFFFF;
    offMax = 0;
    int32_t n = 0;
    if(!input)
    {
        MessageBoxA(NULL, "Failed loading symbols, forgottenserver.map file not found.", "Error", MB_OK | MB_ICONERROR);
        std::cout << "Failed loading symbols, forgottenserver.map file not found. " << std::endl;
        exit(1);
        return false;
    }
According to the source you have most likely compiled server with exception handler that needs file forgottenserver.map in main folder of server, this is file with symbolic llinks.
When you compile this server it should create exe and that map file also if I remember correctly(?).
 
Back
Top