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.

fix: stop dumping objects lol

+3 -3
+3 -1
.gitignore
··· 57 57 58 58 # Config 59 59 config/client-config.yaml 60 - DumpedData 60 + 61 + # Debug dumps (research artifacts written by client code that's been removed) 62 + DumpedData/ 61 63 62 64 # jdtls LSP 63 65 .classpath
-2
src/main/kotlin/com/jagex/runescape/cache/def/GameObjectDefinition.kt
··· 374 374 fun load(archive: Archive) { 375 375 buffer = Buffer(archive.getFile("loc.dat")!!) 376 376 val idxBuffer = Buffer(archive.getFile("loc.idx")!!) 377 - FileOperations.WriteFile("DumpedData/377_OBJECTS.dat", archive.getFile("loc.dat")!!) 378 - FileOperations.WriteFile("DumpedData/377_OBJECTS.idx", archive.getFile("loc.idx")!!) 379 377 definitionCount = idxBuffer.getUnsignedShortBE() 380 378 bufferOffsets = IntArray(definitionCount) 381 379 var offset = 2