Other
All snippets without a respective section goes here
16 topics in this forum
-
Hello i will be sharing how to update the client to load 211+ maps everything your going to be editing is in ObjectManager. underlays and underlays got changed from a byte to a short. you will see something like this [Hidden Content] for this [Hidden Content] same thing for overlays the & 0xff needs to be & 0x3FFF Make sure you do both overlays and underlays you will see something like this [Hidden Content] make sure it looks like this [Hidden Content] }that should do it
-
0
Reputation Points
- 2 replies
- 656 views
-
-
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…
-
0
Reputation Points
- 0 replies
- 384 views
- 1 follower
-
-
No media, live version @Innova (not sure if they even changed this) Maps made by its.teewhy, all paid for... I hold every single right to these. John (current owner of Innova) scammed me in our old partnership as he saw $$$.. Therefor these no longer have use. [Hidden Content]
-
0
Reputation Points
- 25 replies
- 3.8k views
-
-
A better guide for runesuite This will add anti-aliasing feature to any 317 client, the naming may be different, thats up to you to sort. Step 1: Mouse Click Area Fix Search for 'l == 519' in client.java [Hidden Content] Step 2: Anti Aliasing Rendering 1/2 [Hidden Content] [Hidden Content] Search for 'method146'; Directly under 'int [] offsets = null'; Add the following int[] offsets = null; [Hidden Content] Step 3: Anti Aliasing Render 2/2 Directly under 'worldController.method313'; Add the following; Note if you have fog rendering, the fog rendering should be just above this new code your adding and under 'me…
-
0
Reputation Points
- 9 replies
- 1.8k views
-
-
This is a program that backups up the listed folders, I've made some example below in the String array, over how you'd list the folders, very simple to use, there is no task schedule (data consuming), but upon initiating it, it'll determine wherever or not the zip of the date has been created. [Hidden Content]
-
0
Reputation Points
- 6 replies
- 2.3k views
-
-
I have not tested this yet. feel free to leave some notes if using. Step 1: WorldController (or Scene) Tiles; Add the following... [Hidden Content] Search for the following, where its defined. [Hidden Content] Adjust it to the following [Hidden Content] Search for the following, where its defined. [Hidden Content] Adjust it to the following [Hidden Content] Finally, the op stated to find all the "25" in WorldController, replace it with TILE_DRAW_DISTANCE Step 2: Model class; Add the following... [Hidden Content] k2 is a standard variable in most clients so should be able to find, replace the following model dr…
-
0
Reputation Points
- 11 replies
- 2.6k views
-
-
-
Search for this: Code: [Hidden Content] replace the if statement with: Code: [Hidden Content] Then search for: Code: [Hidden Content] Replace the first if statement with: Code: [Hidden Content] Then also in the following else block: Code: [Hidden Content] replace the else line with: Code: [Hidden Content]
-
1
Reputation Points
- 4 replies
- 1.5k views
-
-
Have not tested. OP notes (Madara) 'this is just a base, modify the size of the item container and the item lists yourself' Skillguide Interace: [Hidden Content] 508 Scrollbar: [Hidden Content] Transparent Background: [Hidden Content]
-
0
Reputation Points
- 7 replies
- 1.6k views
-
-
You know those pesky little rocks and bushes that you'd like to add around for some more aesthetic appeal? But there is an issue ...you aren't quite sure as to how to obtain the idea of the object, being that you cannot right-click and examine in debug-mode. Well, here you go! Hope this helps. [Hidden Content]
-
0
Reputation Points
- 2 replies
- 1.2k views
-
-
This is for the Underwall Tunnel at the Grand Exchange. In your ObjectHandler, you will want to place these two methods (preferably under HandleOption5, somewhere): [Hidden Content] Then, in your HandleOption1 method, inside ObjectHandler, add this: [Hidden Content]
-
0
Reputation Points
- 5 replies
- 1.5k views
-
-
Hello guys, its been a while since i posted my last snippet. So i decided to make one. This one is an improved dialogue system. I was looking at the dialogue system (after not having used it for a while) and decided it needed a change. It is not smaller, more compact and easier to use. It still needs work but its like 95%.Difficultly: 2 / 10 - C+P. extending classes.First of all if you do not have the class Node. Make a class called nodes in the models package. You can just leave it blank for now or add a method to check which type of node it is.With this class that you have now made go into the following classes and extend Node.Item.javaEntity.javaIt would have looked li…
-
0
Reputation Points
- 5 replies
- 1.9k views
-
-
-
0
Reputation Points
- 2 replies
- 1.4k views
-
-
-
0
Reputation Points
- 4 replies
- 2.6k views
-
-
-
0
Reputation Points
- 10 replies
- 2.9k views
-
-
First you'll need to declare your packets+size inside WPD: [Hidden Content] Then add this under processPackets method: [Hidden Content] Inside WPE: [Hidden Content]
-
0
Reputation Points
- 2 replies
- 1k views
-