Thread: How To Make Only YOUR Client Connect To The Server [No Cheat Clients]

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 How To Make Only YOUR Client Connect To The Server [No Cheat Clients] 
    Banned

    Join Date
    Jan 2011
    Posts
    3,273
    Thanks given
    345
    Thanks received
    545
    Rep Power
    0
    Client Sided:

    First things first, these methods probably already exist in your files, but some clients are different than others, so I'll just tell you the methods anyway and if you already have them just make the appropriate changes to them.
    Open signlink class and find your run method

    Find:

    Code:
     public final void run() {
    Or

    Code:
     public void run() {
    If you already have:

    Code:
    uid = #;
    EX: 26342

    That # should be random numbers Any sort you want

    Save and Close.

    Now Open Client.java

    Find Your Login Method:

    Code:
     private void login(String s, String s1, boolean flag)
    If you scroll down you should realize this:

    Code:
    stream.writeDWord(/*signlink.uid*/999999);
    9999999 Is the UID.

    Replace:

    [CODE]stream.writeDWord(/*signlink.uid*/999999);/CODE]

    With:

    stream.writeDWord(signlink.uid);

    If you locate it just put:

    Code:
    stream.writeDWord(ai[3]);


    Server Sided:

    Find: RS2LoginProtocolDecoder.java and Open it

    Then Proceed and Locate:

    long clientSessionKey = in.getLong();
    long serverSessionKey = in.getLong();

    Under this proceed and add:

    Code:
     int uid = in.getInt();
                                                    if(uid != #) {
                                                            session.close();
                                                            return false;
                                                    }
    Make sure that that # is the same one you added into signlink.



    Compile And Your Finished
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Sep 2011
    Posts
    1,140
    Thanks given
    385
    Thanks received
    398
    Rep Power
    474
    This has been released many times, and it does not stop cheat clients.
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Banned

    Join Date
    Jan 2011
    Posts
    3,273
    Thanks given
    345
    Thanks received
    545
    Rep Power
    0
    Quote Originally Posted by Thee Null View Post
    This has been released many times, and it does not stop cheat clients.
    Really Cause I used it for my server worked fine.
    Reply With Quote  
     

  5. #4  
    Registered Member

    Join Date
    Sep 2011
    Posts
    1,140
    Thanks given
    385
    Thanks received
    398
    Rep Power
    474
    Quote Originally Posted by EvolvedBlitz View Post
    Really Cause I used it for my server worked fine.
    Maybe a stupid 12 year old, but its very easy to get your uid, then add it into the cheat client.
    Reply With Quote  
     

  6. #5  
    Banned

    Join Date
    Jan 2011
    Posts
    3,273
    Thanks given
    345
    Thanks received
    545
    Rep Power
    0
    Quote Originally Posted by Thee Null View Post
    Maybe a stupid 12 year old, but its very easy to get your uid, then add it into the cheat client.
    Then i'll come out with a more secure way soon Thanks for telling me
    Reply With Quote  
     

  7. #6  
    Registered Member DestriX's Avatar
    Join Date
    Nov 2008
    Posts
    1,323
    Thanks given
    490
    Thanks received
    152
    Rep Power
    257
    Did you really just say "PI" only... this can apply to any client. Nonetheless, thanks.
    Attached image
    Reply With Quote  
     

  8. Thankful user:


  9. #7  
    Banned

    Join Date
    Jan 2011
    Posts
    3,273
    Thanks given
    345
    Thanks received
    545
    Rep Power
    0
    Quote Originally Posted by DestriX View Post
    Did you really just say "PI" only... this can apply to any client. Nonetheless, thanks.
    Sorry
    Reply With Quote  
     

  10. #8  
    How To Make Only YOUR Client Connect To The Server [No Cheat Clients]



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,307
    Thanks given
    7,215
    Thanks received
    12,308
    Rep Power
    5000
    Quote Originally Posted by Kurdz View Post
    Chill your fucking balls out, the guys trying.
    So? He's right. It takes literally seconds for me to get the UID and add it to any cheat client. Only a stupid 12 year old would get stuck on it.

    Attached image
    Reply With Quote  
     

  11. #9  
    Fuckin PRO

    Damien's Avatar
    Join Date
    Feb 2008
    Age
    32
    Posts
    2,658
    Thanks given
    928
    Thanks received
    82
    Rep Power
    369
    This was in my Battlescape 317 fixed up release. so bloody easy.
    Reply With Quote  
     

  12. #10  
    Registered Member
    Brady's Avatar
    Join Date
    Apr 2009
    Posts
    1,714
    Thanks given
    354
    Thanks received
    368
    Rep Power
    1633
    It's not hard for somebody to decompile your client and find out what UID you're using. :/







    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. make client connect to my server?
    By mr zipper in forum Help
    Replies: 1
    Last Post: 06-01-2011, 08:33 AM
  2. Replies: 1
    Last Post: 08-25-2010, 11:29 AM
  3. how to make 508 Client Connect to 525 server
    By asdqwe2311 in forum Help
    Replies: 0
    Last Post: 12-04-2009, 07:58 AM
  4. Replies: 14
    Last Post: 07-20-2009, 08:56 AM
  5. make client only connect to my server
    By b1untma/\/ in forum Help
    Replies: 1
    Last Post: 10-17-2008, 09:08 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •