A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
0

Configure Feed

Select the types of activity you want to include in your feed.

just a little modification to one of the buffer tests

+3
+3
src/test/java/com/jagex/runescape/net/BufferTests.java
··· 55 55 Assertions.assertNotEquals(0, buffer.currentPosition, "buffer position should not be 0"); 56 56 buffer.currentPosition = 0; 57 57 Assertions.assertEquals(input, buffer.getShortBE(), "getShortBE should be the same as putShortBE"); 58 + buffer.putShortBE(0x2801); 59 + buffer.currentPosition--; 60 + Assertions.assertEquals(256, buffer.getShortBE(), "expect big endian behavior"); 58 61 } 59 62 60 63