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.

Adam

Members
  • Joined

  • Last visited

Everything posted by Adam

  1. Can't believe I'm back in this shit but a mate wants link so ty from him
  2. yeetus the feetus
  3. Adam posted a topic in 317
    The client/cache is not included. This is an ArkCane leak leech and comes with the attached issues of that leak, you can retrieve a client/cache from there. It has not been checked too much so proceed with caution. NO support will be given with this, you can rip from it or whatever but it's on you https://mega.nz/file/MjEyUKZL#vJtB-mkuwYlUjtDj0377aYolynXp09kZ7Hi9yQSWWvI This is being released with Luke's(Ark) permission.
  4. ty for caches
  5. checking if safe now skimmed through, no external libs used and looks safe to use
  6. Lmao funny, is just a couple more bytes to skip on some opcodes for animations/objects relating to sounds
  7. Confirmed working with OSRS cache on #221 rev [hide]https://mega.nz/file/5m9VDJAT#cz3ZboizPD0Ly3evyZaTAwn3k6CumF-bap3lfhhzVj4[/hide]
  8. A lot of servers are starting to use OSRS spawn dumps + have their own custom NPC spawns/instances, issue is most 317 clients are still only allowing 16k or 32k npcs, this is how to increase it too 65k(what OSRS currently uses) Client side: Change npc array size npcs = new Npc[65536]; Find the following still in Client.java = new Npc(); Above it change the while() loop/break + the first bit read to match while (stream.bitsRemaining(i) >= 28) { int k = stream.readBits(16); if (k == 65535) { break; } if (npcs[k] == null) { npcs[k] = new Npc(); } Server Side Again change your npc collection to support 65k npc's Find where your npc update packet sends the npc index, below is for Xeros public void addNewNPC(NPC npc, Stream str, Stream updateBlock, boolean flag) { int id = npc.getIndex(); npcList[npcListSize++] = npc; str.writeBits(14, id); Change the writeBits(14, id) too writeBits(16, id); Next server side you'll want to find the following writeBits(14, 16383); Change this too writeBits(16, 65535); And this should be it, you can now properly support 65k npcs. The examples used here are for Xeros, but it shouldn't be hard to replicate for other bases
  9. someones asked me a few things on this so taking a look
  10. LF Working link
  11. LF Working link
  12. Adam replied to Jack's topic in 317
    taking few things
  13. Adam posted a topic in OSRS
    This was dumped using OsrsQuery found @ https://github.com/osrsquery/OsrsQuery Credits to @Mark_ Includes everything you'll need, including config files for 317 caches https://mega.nz/file/ZjFXlb7b#ac5Z3Oz06_RbzNVEgx_dx8LVzQlte1dn3ptlp7hWXbY If this is in wrong section, feel free to move it, I'm lazy and didnt' look I'm sorry
  14. Just a warning for anyone thinking of using this, don't, full of issues that should not exist
  15. Yoink if its still up
  16. Thanks for this boss
  17. wonder who put this up
  18. Was sent here to see what was fixed >.>

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.