Thread: Project Aeolus | Entity | Clipping | Reworked | Sounds | JSON | Clean

Page 4 of 6 FirstFirst ... 23456 LastLast
Results 31 to 40 of 55
  1. #31  
    Ex Rune-Scaper

    Join Date
    Jun 2008
    Posts
    3,534
    Thanks given
    457
    Thanks received
    1,257
    Rep Power
    990
    Quote Originally Posted by arham 4 View Post
    Was playing around with this.

    1. The combat doesn't seem to work?
    2. The wilderness ditch can't be hopped over lol.
    I removed the combat a while back because it's PI crap so hopefully encourage someone to redo it lol The client for some reason has a weird ditch model so the clicking area over the ditch is extremely small. Not sure how to really fix that. I got bored today so I started redoing flag-based updates, implemented my own dialogue, and some other stuff.
    Attached image
    Reply With Quote  
     

  2. Thankful user:


  3. #32  
    Registered Member
    Join Date
    Nov 2015
    Posts
    409
    Thanks given
    122
    Thanks received
    41
    Rep Power
    17
    Love your work great job! nice release, Thanks
    Reply With Quote  
     

  4. #33  
    Extreme Donator

    Kiana's Avatar
    Join Date
    May 2015
    Posts
    1,050
    Thanks given
    147
    Thanks received
    187
    Rep Power
    223
    Could I use the client for different source?
    Reply With Quote  
     

  5. #34  
    Registered Member
    Join Date
    Oct 2014
    Posts
    26
    Thanks given
    0
    Thanks received
    10
    Rep Power
    11
    Has anybody added combat to this? If so, could someone post a snippet or tutorial?
    Reply With Quote  
     

  6. #35  


    RS Wiki's Avatar
    Join Date
    Mar 2011
    Age
    29
    Posts
    9,688
    Thanks given
    1,752
    Thanks received
    3,103
    Rep Power
    5000
    Anyone know the fix?

    Code:
    false
    Map Amount: 737
    Images Loaded: 61
    java.lang.ArrayIndexOutOfBoundsException: 7692
    Error: loaderror Unpacking media 80
    	at com.runescape.net.Buffer.readUnsignedByte(Buffer.java:140)
    	at com.runescape.cache.media.Sprite.<init>(Sprite.java:225)
    	at com.runescape.Game.startUp(Game.java:8438)
    	at com.runescape.GameShell.run(GameShell.java:109)
    	at com.runescape.Game.run(Game.java:5536)
    	at java.lang.Thread.run(Thread.java:745)
    All the best,
    Wiki




    coming soon
    Reply With Quote  
     

  7. #36  
    Registered Member
    Join Date
    Dec 2009
    Age
    23
    Posts
    408
    Thanks given
    193
    Thanks received
    39
    Rep Power
    10
    I want to remove the RSA encryption on login so I can login using most standard clients that have encryption disabled. How do I do this?
    Reply With Quote  
     

  8. #37  
    Ex Rune-Scaper

    Join Date
    Jun 2008
    Posts
    3,534
    Thanks given
    457
    Thanks received
    1,257
    Rep Power
    990
    Quote Originally Posted by Zakawer2 View Post
    I want to remove the RSA encryption on login so I can login using most standard clients that have encryption disabled. How do I do this?
    Or you can just toggle RSA?

    I would never remove this because then you're prone to packet sniffers.

    In your Buffer or Stream class.

    Code:
    	public void encodeRSA(BigInteger exponent, BigInteger modulus) {
    		int length = position;
    		position = 0;
    		byte[] buffer = new byte[length];
    		readData(buffer, 0, length);
    		byte[] rsa = buffer;
    
    		if (Configuration.ENABLE_RSA) {
    			rsa = new BigInteger(buffer).modPow(exponent, modulus).toByteArray();
    		}
    
    		position = 0;
    		writeByte(rsa.length);
    		writeBytes(rsa, 0, rsa.length);
    	}
    If you have no clue where that's at then go to Client -> void login

    You should see something like this

    Code:
    				outgoing.setPosition(0);
    				outgoing.writeByte(10); // Secure id
    				outgoing.writeInt(seed[0]);
    				outgoing.writeInt(seed[1]);
    				outgoing.writeInt(seed[2]);
    				outgoing.writeInt(seed[3]);
    				outgoing.writeInt(SignLink.getUid());
    				outgoing.writeJString(name);
    				outgoing.writeJString(password);
    				outgoing.encodeRSA(RSA_EXPONENT, RSA_MODULUS);
    If you're using eclipse, you can hit CTRL + CLICK on the encodeRSA method and it will bring you to where that method is.

    If you toggle RSA via the Client, then you need to do the same for the server. There's already a toggle in the server for that.
    Attached image
    Reply With Quote  
     

  9. #38  
    Registered Member
    Join Date
    Dec 2009
    Age
    23
    Posts
    408
    Thanks given
    193
    Thanks received
    39
    Rep Power
    10
    I'm using an old version. Gonna upgrade to the current version.
    Reply With Quote  
     

  10. #39  
    Registered Member vox96's Avatar
    Join Date
    Jan 2016
    Posts
    45
    Thanks given
    8
    Thanks received
    0
    Rep Power
    3
    this was ripped from ardi im guessing as teles, item drops, and combat is removed just like the ardi release
    Reply With Quote  
     

  11. #40  
    Banned Project Aeolus | Entity | Clipping | Reworked | Sounds | JSON | Clean Market Banned


    Join Date
    Jan 2011
    Age
    26
    Posts
    3,112
    Thanks given
    1,198
    Thanks received
    1,479
    Rep Power
    0
    Quote Originally Posted by vox96 View Post
    this was ripped from ardi im guessing as teles, item drops, and combat is removed just like the ardi release
    have you even looked at the code? this has nothing to do with ardi stop making baseless assumptions
    Reply With Quote  
     

Page 4 of 6 FirstFirst ... 23456 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. [Project Rebirth, PI]All Weapon Sounds
    By sly__ in forum Snippets
    Replies: 9
    Last Post: 04-28-2012, 02:16 PM
  2. [Project Rebirth]All special weapon sounds
    By sly__ in forum Snippets
    Replies: 3
    Last Post: 03-27-2012, 09:59 AM
  3. Player/NPC[Entity] Clipping/Pathfinding
    By Galkon in forum Show-off
    Replies: 25
    Last Post: 01-10-2012, 05:24 AM
  4. Replies: 33
    Last Post: 07-23-2011, 02:59 PM
  5. [PI] Project Insanity with Clipped Following
    By RuneFocus in forum Selling
    Replies: 2
    Last Post: 06-22-2011, 09:35 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
  •