Is it possible to remove the 'kick' command when servuo fires up? I have a player who was working fine but now his client is being kicked off when he logs in.
 
I don't know about removing the "Kick", but it will only kick people if you update the client the server uses. And then all they have to do is update theirs and it will be fine. There are some "perks" to using the most up to date client, ie. having the newest art work available.
 
ClientVerification.cs
change
C#:
private static readonly OldClientResponse m_OldClientResponse = OldClientResponse.LenientKick;
to
C#:
private static readonly OldClientResponse m_OldClientResponse = OldClientResponse.Ignore;

that should do it
 
Thanks guys. As soon as I get home i will test
Post automatically merged:

Well, it works for the standard client but I'm still getting a kick notice for the enhanced client. I scrolled through the script but couldn't see anything I could change.
 
Last edited:
Back