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

Discussion in 'RuneScape Miscellaneous' started by Paralysisâ„¢, Nov 17, 2011.

How To Make Only YOUR Client Connect To The Server [No Cheat Clients]
  1. Unread #1 - Nov 17, 2011 at 12:02 AM
  2. Paralysisâ„¢
    Joined:
    Sep 16, 2011
    Posts:
    1,033
    Referrals:
    1
    Sythe Gold:
    0

    Paralysisâ„¢ Guru
    Banned

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

    PI ONLY



    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 :)
     
  3. Unread #2 - Nov 25, 2011 at 11:35 AM
  4. Voltdax
    Joined:
    Nov 13, 2011
    Posts:
    416
    Referrals:
    0
    Sythe Gold:
    0

    Voltdax Forum Addict
    Banned

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

    Ahh thanks, ill try this out.
     
  5. Unread #3 - Nov 25, 2011 at 12:11 PM
  6. Paralysisâ„¢
    Joined:
    Sep 16, 2011
    Posts:
    1,033
    Referrals:
    1
    Sythe Gold:
    0

    Paralysisâ„¢ Guru
    Banned

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

    Enjoy thanks for looking over it :)
     
< Live commentary PK MARATHON | Sharing Server Files With Others! >

Users viewing this thread
1 guest


 
 
Adblock breaks this site