Anyone know what I would need to edit for this code to work on my 667?
Took this code right off a 718 hoping it might work, and unfortunately it just crashes the 667 I'm using.
Code:public void sendIComponentSprite(int interfaceId, int componentId, int spriteId) {
OutputStream stream = new OutputStream(11);
stream.writePacket(121);
stream.writeInt(spriteId);
stream.writeIntV2(interfaceId << 16 | componentId);
write(player, stream);
}
