April 19, 201312 yr i've ran across a problem i've tried many ways to get the player animation but they all giive errors tried getClient().getMyPlayer().getAnimation()getMyPlayer().getAnimation()getAnimation()
April 19, 201312 yr client.getMyPlayer().getAnimation() ^^^ What he said, or if you are doing this in another class, you can pass the script over and then use it like so: public class Test1 extends Script{ private final Test2 someOtherClass = new Test2(this); } public class Test2 { private final Script script; public Test2(final Script script){ this.script = script; } private void doSomething(){ script.getBot().getClient().getMyplayer().getAnimations(); } } Lol, sorry just a little tip there. Edited April 19, 201312 yr by zeejfps