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

TFS 0.4.3777 /reload not working

Paulix

Active Member
Joined
Sep 13, 2012
Messages
129
Solutions
7
Reaction score
26
My /reload weapons is not working because it is not coded on sources

C++:
case RELOAD_WEAPONS:
        {
            //TODO
            std::clog << "[Notice - Game::reloadInfo] Reload type does not work." << std::endl;
            done = true;
            break;
        }
looks like the devs hasn't finished it or didn't want this info to be reloaded, but I really need this reload on my server. does anyone know how to "fix" this?
 
tfs 0.4 is really old and the support has dropped a long time ago, you probably won't even get a response
just restart your server there's not much else you can do if you're not really good at c++ or move to a new version like that downgraded tfs 1.3
 
Wanna share it with us?
im not sure if this is the only part i edited, but here it is
C++:
case RELOAD_WEAPONS:
        {
            //TODO
            if(g_weapons->reload())
                done = true;
            else
               
                std::clog << "[Notice - Game::reloadInfo] Reload type does not work." << std::endl;

            break;
        }
 
Back
Top