Eliminates previous client -> http://www.rune-server.ee/runescape...ore-fixes.html
Here's what I've done. Keep note that I didn't want to jam so much content that the fps would be impacted.
I didn't want to pack any newer data, for the sake of people wanting this to have the same data as previous client.
I was going to also rename the client entirely, but for the sake of people adding more stuff to this client I let it be.
- Additional Cleaner code
- Packaging (Easily find classes now)
- Camera Gliding
- Player Shadows (Fixed version, before shadow wouldn't appear until you equip an item)
- HD Minimap
- Smooth shading w/ fix
- Middle mouse movement
- All interfaces scrollable
- Constants class (stored all the variables for client toggles, etc..)
- Documentation in the constants class (i'm starting to document stuff now, it'll help people understand the functions easier)
- Changed cache directory to user.home
- No eclipse warnings (I prefer it this way imo)
Small example of cleaning code if those were curious (basics, but one of the best examples to probably give)
Code:
if (statusInt >= 75 && statusInt <= Integer.MAX_VALUE)
return 0x00FF00;
else if (statusInt >= 50 && statusInt <= 74)
return 0xFFFF00;
else if (statusInt >= 25 && statusInt <= 49)
return 0xFF981F;
else
return 0xFF0000;
Code:
return statusInt >= 75 && statusInt <= Integer.MAX_VALUE ? 0x00FF00 : statusInt >= 50 && statusInt <= 74 ? 0xFFFF00 : statusInt >= 25 && statusInt <= 49 ? 0xFF981F : 0xFF0000;
Pictures I guess.
Mopar package has the client.java in it and a few misc classes


Download: https://mega.nz/#!ZZdkBRRa!NcRLeqgar...wDnPEfw2SJTYQ8
Server?
Use any PI netty