Currently I'm experiencing a problem with numerous items creating errors in the world thread due to missing opcodes/client keys. I'm trying to find a 876 item definitions dump to pack and see if its fixes it.
In particular its Chaotic weaponry and a few others.
[Only registered and activated users can see links. Click Here To Register...]
This thread unfortunately contains a downed link else I would try repacking with these definitions.
Can anyone either
a) link me to updated defs.
b) or explain how I can acquire them myself from various ways.
-Thanks
ItemDefinitions
EquipmentCode:public int getCombatStyle() {
return getCombatOpcode(2853);
}
Error:Code:public int getWeaponStance() {
boolean combatStance = player.getCombatDefinitions().isCombatStance();
Item weapon = items.get(3);
if (weapon == null) {
Item offhand = items.get(SLOT_SHIELD);
if (offhand == null)
return combatStance ? 2688 : 2699;
int emote = offhand.getDefinitions().getCombatOpcode(combatStance ? 2955 : 2954);
return emote == 0 ? combatStance ? 2688 : 2699 : emote;
}
int emote = weapon.getDefinitions().getCombatOpcode(combatStance ? 2955 : 2954);
if (weapon.getId() == 4084) //sled exception
return 1119;
return emote == 0 ? combatStance ? 2688 : 2699 : emote;
}
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
