rsc: please read the commit message for my neverending descent into madness

how do i stop making castles
every time i go to the beach i make a castle
every time i open blender i model castles
every time i play chess i castle
i just cant stop making castles dude
This commit is contained in:
ThatGamerBlue
2021-02-26 00:33:45 +00:00
parent 62df7e0ff1
commit 563587e6b0
346 changed files with 84175 additions and 82557 deletions

View File

@@ -6,56 +6,59 @@ import net.runelite.mapping.ObfuscatedSignature;
@ObfuscatedName("ko")
@Implements("Friend")
public class Friend extends Buddy {
@ObfuscatedName("ce")
@ObfuscatedSignature(
descriptor = "Lbb;"
)
@Export("mouseRecorder")
static MouseRecorder mouseRecorder;
@ObfuscatedName("n")
boolean field3663;
@ObfuscatedName("v")
boolean field3661;
@ObfuscatedName("ce")
@ObfuscatedSignature(
descriptor = "Lbb;"
)
@Export("mouseRecorder")
static MouseRecorder mouseRecorder;
@ObfuscatedName("n")
boolean field3663;
@ObfuscatedName("v")
boolean field3661;
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "(Lko;I)I",
garbageValue = "-1403484495"
)
@Export("compareToFriend")
int compareToFriend(Friend var1) {
if (super.world == Client.worldId && Client.worldId != var1.world) {
return -1;
} else if (Client.worldId == var1.world && super.world != Client.worldId) {
return 1;
} else if (super.world != 0 && var1.world == 0) {
return -1;
} else if (var1.world != 0 && super.world == 0) {
return 1;
} else if (this.field3663 && !var1.field3663) {
return -1;
} else if (!this.field3663 && var1.field3663) {
return 1;
} else if (this.field3661 && !var1.field3661) {
return -1;
} else if (!this.field3661 && var1.field3661) {
return 1;
} else {
return super.world != 0 ? super.int2 - var1.int2 : var1.int2 - super.int2;
}
}
Friend() {
} // L: 9
@ObfuscatedName("at")
@ObfuscatedSignature(
descriptor = "(Ljn;I)I",
garbageValue = "642739557"
)
@Export("compareTo_user")
public int compareTo_user(User var1) {
return this.compareToFriend((Friend)var1);
}
@ObfuscatedName("n")
@ObfuscatedSignature(
descriptor = "(Lko;I)I",
garbageValue = "-1403484495"
)
@Export("compareToFriend")
int compareToFriend(Friend var1) {
if (super.world == Client.worldId && Client.worldId != var1.world) { // L: 12
return -1;
} else if (Client.worldId == var1.world && super.world != Client.worldId) { // L: 13
return 1;
} else if (super.world != 0 && var1.world == 0) { // L: 14
return -1;
} else if (var1.world != 0 && super.world == 0) { // L: 15
return 1;
} else if (this.field3663 && !var1.field3663) { // L: 16
return -1;
} else if (!this.field3663 && var1.field3663) { // L: 17
return 1;
} else if (this.field3661 && !var1.field3661) { // L: 18
return -1;
} else if (!this.field3661 && var1.field3661) { // L: 19
return 1;
} else {
return super.world != 0 ? super.int2 - var1.int2 : var1.int2 - super.int2; // L: 20 21 24
}
}
public int compareTo(Object var1) {
return this.compareToFriend((Friend)var1);
}
@ObfuscatedName("at")
@ObfuscatedSignature(
descriptor = "(Ljn;I)I",
garbageValue = "642739557"
)
@Export("compareTo_user")
public int compareTo_user(User var1) {
return this.compareToFriend((Friend)var1); // L: 29
}
public int compareTo(Object var1) {
return this.compareToFriend((Friend)var1); // L: 33
}
}