_implementation error

There are a few rules/conventions that you need to be aware of when using C++ in Unreal which are enforced by the macro system. One such rule is that functions declared as Server in the header file should be implemented in the corresponding cpp file with an “_Implementation” suffix added to the function name. So your Character.cpp should look like this:

  Character::ServerFunction_Implementation()
   {
            // do something
   }

This is explained here in the docs, which has also added a great intro to multiplayer in C++ recently that covers all this and more. I recommend that you start with this to get familiar with these coding conventions (look for how HandleFire() is implemented). Hope that helps.