Adding OSRS Animations to Matrix 718
So I added the animations via something_catchy.
Where would I go about getting the animations after them being added? I have this command too.
case "emote":
if (cmd.length < 2) {
player.getPackets().sendPanelBoxMessage("Use: ::emote id");
return true;
}
try {
player.setNextAnimation(new Animation(Integer
.valueOf(cmd[1])));
} catch (NumberFormatException e) {
player.getPackets().sendPanelBoxMessage("Use: ::emote id");
}
return true;
but no ::anim (to test newly added animations)
Also tried packing new models and animations via galkons way, but when adding the code to client.java i get errors.
Any help would be lovely mates. Please :)