• 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!

Problems with blacklist?

amoeba13

New Member
Joined
Jan 7, 2011
Messages
10
Reaction score
2
Hello guys, i'm having such an annoying problem... Everytime I open my TFS i receive this message "Unable to fetch blacklist. Continue? y/n". I know all I have to do is press y and enter but I use an auto restarter and I'm not always on PC to do this.

I've been told that blacklist is an OtLands website and this error appears when this website is offline. So I want to know if it will stay offline for a long time....

Thanks in advance.
 
otserv.cpp

Code:
    std::cout << ">> Fetching blacklist" << std::endl;
    #if defined(WINDOWS) && !defined(__CONSOLE__)
    SendMessage(GUI::getInstance()->m_statusBar, WM_SETTEXT, 0, (LPARAM)">> Fetching blacklist");
    #endif
    if(!g_game.fetchBlacklist())
    {
        #if defined(WINDOWS) && !defined(__CONSOLE__)
        if(MessageBox(GUI::getInstance()->m_mainWindow, "Unable to fetch blacklist! Continue?", "Blacklist", MB_YESNO) == IDNO)
        #else
        std::cout << "Unable to fetch blacklist! Continue? (y/N)" << std::endl;
        char buffer = getchar();
        if(buffer == 10 || (buffer != 121 && buffer != 89))
        #endif
            startupErrorMessage("Unable to fetch blacklist!");
    }
 
Back
Top