Jump to content
Existing user? Sign In

Sign In



Sign Up

DruggedCamels

Members
  • Posts

    92
  • Joined

  • Last visited

Everything posted by DruggedCamels

  1. Pretty interesting I want too see what's in this if it's the original it's all dats
  2. Welcome and be safe not everyone is here for fun. Just like all other things online.
  3. Drugscape and cheatskape yeah I'm an oldie but they where the best.
  4. After posting the links dead and this is an OSRS based cache not the original 377 if you are loading 85. Still would have liked to see the package though.
  5. Glad to be here, Also hi Administrator not many forums have the staff commenting that's nice to see.
  6. Leave it up to Jire to have the fun stuff, Also i assume you are Jire originally from Moparscape?
  7. Lets home the link is still valid and guess what guys it is.
  8. Okay Curiosity has me i hope the stuff still is visable after the comment
  9. Assuming your source is compatable with Java 13 you could use enhanced Switch as shown below and if your using java 17 LTS you could move to using Switch Expressions they are very beautiful even more so if you are using Arrays with named types. Fun fact for anyone that is Beginner to Intermediate with the Java Programming Language did you know that Switch Cases are typically faster once compiled into byte code assuming you are using java conventions and using a modern JVM similar to Java 17. Just using one or two if statements will be faster than using Switch or Switch Expressions but if you look at most Server Applications they are riddled with if statements paired with ugly outdated and depressingly complex for a simple task. Meet Easier public boolean isDemon() { switch (Defender.npcType) { case 1531, 3134, 2006, 2026, 7244, 1432, 415, 7410, 135, 3133, 484, 1619, 7276, 3138, 7397, 7398, 11, 22978 -> { //Dragon Hunter Lance if (attacker.lastWeaponUsed == 22978 && defender.isDragon()) { damage *= 1.2; accuracy *= 1.2; } } } The First Part public boolean isDemon() { return switch (npcType) { case 1531, 3134, 2006, 2026, 7244, 1432, 415, 7410, 135, 3133, 484, 1619, 7276, 3138, 7397, 7398, 11 -> true; default -> false; }; } This assumes you have added anything useful yet here is the first switch statement switch (Defender.npcType) { case 1531: case 3134: case 2006: case 2026: case 7244: case 1432: case 415: case 7410: case 135: case 3133: case 484: case 1619: case 7276: case 3138: case 7397: case 7398: case 11: case 2978: { //Dragon Hunter Lance if (attacker.lastWeaponUsed == 22978 && defender.isDragon()) { damage *= 1.2; accuracy *= 1.2; } } return true; } return false; } yes this works just fine but its freaking ugly also not using break; or return; on each case also slows down the byte code optimizations as it skips and moves threw each case.
  10. I find this layout to be very appealing.
  11. Pretty cool i don't think i will use it but again collecting and archiving.
  12. Hmm i am assuming you mean the theme? sure ill post
  13. Oh do i love collecting free stuff based on rsps, then updating it as a hobby.
  14. I would love to have this in my collection, and yes the link is working
  15. This explains why the original store hated me i knew i needed to update it but PHP 7.2 is nice most PHP Software is moving to 7.4 and then keeping updated with the 8.x i think the latest being 8.2 at the moment. Kinda important but you should know your link has died? Would you update it?
  16. I was having trouble understanding what the site even was googled it and found out. Someone likes ripping random websites don't we I mean i keep a very documented archive of old 317 source code broken down by class name, handler, time created, time rewritten, and so on. We all got hobbies 😛
  17. Yet another amazing share on this forum, I should have joined RuneSuite before now.
  18. UPDATE: yes still downloadable threw media fire Hopefully these are still downloadable.
  19. UPDATE: Yes everything is here but some of the PHP Source code needs updated along with the server sided source code some of its pretty rough around the edges. I hope most of this is still here seeing its offline now and Fox2007 is no more?

Contact

[email protected]

astra.security

What is a RSPS?

A RSPS, also known as RuneScape private server, is an online game based on RuneScape, and controlled by independent individuals.

Popular RSPS Servers

Runewild Ikov RedemptionRSPS

Disclaimer

Runesuite is not affiliated with runescape, jagex in any way & exists solely for educational purposes.

×
×
  • Create New...