I agree with this guy , the only thing keeping ds running is a bunch of kids who use there moms credit cards which keeps it alive.
Dont use this shitty source please.
False , You can exploit it for sure, get the login packet out of the client and malform it for what ever you wanna use it , altought i gotta say , it wont do you any good , but some soft of exploit is definitly possible.
Would agree with him , just set up postgreSQL , Import the sql file and make sure your host is open for remote sql , just make sure to add your server ip in there and you should be good to go.
Make sure you import the file tree extenting the source method.
If the problem still exsists check if the file tree is in order , if not something might be missing and would need to be backed up
Make sure your read value's are up-to-date , If this doesnt work , it might be the model your using , or the anim definitions of the npc.
private void readValues(Stream stream) {
while(true) {
int i = stream.readUnsignedByte();
if (i == 0) {
return;
}
if (i == 1) {
modelId = stream.readUnsignedWord();
} else if (i == 2) {
anInt406 = stream.readUnsignedWord();
if (AnimationDefinition.anims != null) {
aAnimation_407 = AnimationDefinition.anims[anInt406];
}
} else if (i == 4) {
anInt410 = stream.readUnsignedWord();
} else if (i == 5) {
anInt411 = stream.readUnsignedWord();
} else if (i == 6) {
anInt412 = stream.readUnsignedWord();
} else if (i == 7) {
anInt413 = stream.readUnsignedWord();
} else if (i == 8) {
anInt414 = stream.readUnsignedWord();
} else if (i == 40) {
int j = stream.readUnsignedByte();
for (int k = 0; k < j; k++) {
anIntArray408[k] = stream.readUnsignedWord();
anIntArray409[k] = stream.readUnsignedWord();
}
} else {
System.out.println("Error unrecognised spotanim config code: " + i);
}
}
}