Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Server Version


hisherwin
 Share

Recommended Posts

Do you want to make a Server that the clients can only connect if their Version are Completely the same? It is suck when your version is 1 . 0 . 5 if the client version that logining is 1.5.5

Find this

```

If Buffer.ReadLong < CLIENT_MAJOR Or Buffer.ReadLong < CLIENT_MINOR Or Buffer.ReadLong < CLIENT_REVISION Then

```

Replace it with

```

If Buffer.ReadLong <> CLIENT_MAJOR Or Buffer.ReadLong <> CLIENT_MINOR Or Buffer.ReadLong <> CLIENT_REVISION Then

```

Fixed
Link to comment
Share on other sites

The thing that amaze's me is how easy you can exploit this via a resource hacker. Basically you can take an old client and edit it's version enabling it to connect to the server. This make's it harder atleast since it has to be exact the version number's so higher version's cannot connect.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...