Swizzbeat Posted October 11, 2014 Posted October 11, 2014 Because people keep annoying me about it (copy/pasted from my OSBot 1 script so obviously modify to your liking): /** * Created with IntelliJ IDEA * User: Anthony * Date: 2/24/14 */ public enum JadAttackStyle { MAGE(2656, Prayer.PROTECT_FROM_MAGIC, Color.BLUE), MELEE(2655, Prayer.PROTECT_FROM_MELEE, Color.RED), RANGE(2652, Prayer.PROTECT_FROM_MISSILES, Color.GREEN); private int animationId; private Prayer prayer; private Color textColor; private JadAttackStyle(int animationId, Prayer prayer, Color textColor) { this.animationId = animationId; this.prayer = prayer; this.textColor = textColor; } public int getAnimationId() { return animationId; } public Prayer getPrayer() { return prayer; } public Color getTextColor() { return textColor; } } 2
Awesome Posted October 22, 2014 Posted October 22, 2014 (INCOMING NOOB) i dont really get this but is this a script for jad and if it is what to do with it? (lol ik i am a noob dont tell me)
Apaec Posted October 23, 2014 Posted October 23, 2014 (INCOMING NOOB) i dont really get this but is this a script for jad and if it is what to do with it? (lol ik i am a noob dont tell me) Nope, this is just the data to save you going all the way to jad to find them x)