This actually is a problem on original release, at-least it was for me as-well.
Or maybe it was OSRS-Pk, not sure.
To fix this, go to your Client class and find something like this;
Code:
if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 1;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 2;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 3;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 4;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 5;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 6;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 7;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 8;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 9;
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(6);
data = 10;
}
There is a total of 4 or 5 of these same 'if else if' statement blocks.
Locate them all, and for each one, make sure you have the 3rd crown data. -> "@
[email protected]"
Code:
} else if (s != null && s.startsWith("@[email protected]")) {
s = s.substring(5);
data = 3;
I posted the same help thread in May, and the first thread regarding this issue was made in April.
I know a couple people I've helped resolve this issue, so it's definitely not uncommon!