Jump to content
View in the app

A better way to browse. Learn more.

RuneSuite RSPS Development

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

DruggedCamels

Members
  • Joined

  • Last visited

Everything posted by DruggedCamels

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.