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.

1group 'com.jagex.runescape' 2 3apply plugin: 'java' 4apply plugin: 'idea' 5 6repositories { 7 mavenCentral() 8} 9 10dependencies { 11 compile 'org.yaml:snakeyaml:1.25' 12 testImplementation('org.junit.jupiter:junit-jupiter:5.5.2') 13} 14 15test { 16 useJUnitPlatform() 17 testLogging { 18 events "passed", "skipped", "failed" 19 } 20}