I don't build the standalone dedicated server, but I see what the problem is - I had the g_stepheight defined in a client .c file, so it works when you build the whole thing but won't work for a dedicated server. If you change "extern float g_stepheight;" to "float g_stepheight = 0.0f", it should work.