paper towels Posted January 16, 2016 Report Share Posted January 16, 2016 (edited) public static int getBlockEmote(Client c) { String shield = c.getItems() .getItemName(c.playerEquipment[c.playerShield]).toLowerCase(); String weapon = c.getItems() .getItemName(c.playerEquipment[c.playerWeapon]).toLowerCase(); if (shield.contains("defender")) return 4177; if (shield.contains("2h")) return 7050; if (shield.contains("book") && (weapon.contains("wand"))) return 420; if (shield.contains("shield")) return 1156; switch (c.playerEquipment[c.playerWeapon]) { case 4755: return 2063; case 15241: return 12156; case 13899: return 13042; case 18355: return 13046; case 14484: return 397; case 11716: return 12008; case 4153: return 1666; case 4151: return 1659; case 15486: return 12806; case 18349: return 12030; case 18353: return 13054; case 18351: return 13042; case 11694: case 11698: case 11700: case 11696: case 11730: return 7050; case -1: return 424; default: return 424; } } you need this today, not hard to add The lunar interface needs a fix, (veng, null), would take 20 mins to fix properly... Edited January 16, 2016 by paper towels Link to comment
Recommended Posts