Jump to content

DruggedCamels

Members
  • Joined

  • Last visited

Everything posted by DruggedCamels

  1. DruggedCamels replied to noone123456789's post in a topic in 317
    sweet
  2. Thanks for sharing, But Dead link
  3. Pretty cool looking
  4. Pretty interesting to say the least
  5. Pretty interesting I want too see what's in this if it's the original it's all dats
  6. DruggedCamels replied to davey_huijben's post in a topic in RSPS Help
    Welcome and be safe not everyone is here for fun. Just like all other things online.
  7. Drugscape and cheatskape yeah I'm an oldie but they where the best.
  8. The links dead
  9. DruggedCamels replied to Tiller's post in a topic in OSRS
    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.
  10. Glad to be here, Also hi Administrator not many forums have the staff commenting that's nice to see.
  11. Leave it up to Jire to have the fun stuff, Also i assume you are Jire originally from Moparscape?
  12. Lets home the link is still valid and guess what guys it is.
  13. Okay Curiosity has me i hope the stuff still is visable after the comment
  14. 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.
  15. I find this layout to be very appealing.
  16. Pretty cool i don't think i will use it but again collecting and archiving.
  17. Hmm i am assuming you mean the theme? sure ill post
  18. Oh do i love collecting free stuff based on rsps, then updating it as a hobby.
  19. I would love to have this in my collection, and yes the link is working
  20. 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?
  21. DruggedCamels replied to Jack's post in a topic in RSPS WEB Downloads
    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 😛
  22. Yet another amazing share on this forum, I should have joined RuneSuite before now.
  23. UPDATE: yes still downloadable threw media fire Hopefully these are still downloadable.
  24. 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?