perromercenary00 Posted June 20, 2016 Posted June 20, 2016 good days im trying to do something a little complex here, and its a pistol whith the posibility to hold two pistol at same time in each hand and fire one of other presing left or right click whell to disable the ReequipAnimation is supouse you @override the method shouldCauseReequipAnimation(ItemStack oldStack, ItemStack newStack, boolean slotChanged) and use your logic to deside when to play the animation or not but if you set this method return false the item kinda stucks you can switch slot but item dont go unstuck and all the items from the hotbar now display as the gun unless you select and empty slot this unstuck the gun from the players hand all this wass using this code in the gun class @Override public boolean shouldCauseReequipAnimation(ItemStack oldStack, ItemStack newStack, boolean slotChanged) { //Boolean b = oldStack.equals(newStack); //System.out.println("B="+!b); //return !b; return false; } well now this is more or least how the vainilla works now the animations for the pistol shooting works, the unload reload works , the downside the original trouble its that is playing ReequipAnimation every time the item writes or chang and NBTtag value to the gun and this become extremely anoying. More in the case of the dual guns becoze i need to constantely write nbts to ensuser the animation of the offhand gun as you could see in the first video this little feature of reequip animation end ruining all the dual pistol experience this wass the code i use in the video @Override public boolean shouldCauseReequipAnimation(ItemStack oldStack, ItemStack newStack, boolean slotChanged) { Boolean b = oldStack.equals(newStack); System.out.println("B="+!b); return !b; } to avoid minecraft to treat the newStack whith diferent NBT as a completely diferent item i set a serialnumber system in mi guns so a could know if its the same gun or its another gun from the same kind or its a competely diferent item geting this the guns stucks again but its little diferent, if i change of selected slot the gun unstuck and the other slot item render normaly and this time do something like this @Override public boolean shouldCauseReequipAnimation(ItemStack oldStack, ItemStack newStack, boolean slotChanged) { Boolean b = oldStack.equals(newStack); if(!b) { int oldSN = util.getInttag(oldStack, "serial"); int newSN = util.getInttag(newStack, "serial"); System.out.println("new="+newSN+" = "+oldSN+"=old"); if ( newSN == oldSN) { return false; } } return !b; } int the console outpot i get this when the gun stuck [13:08:26] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:26] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:26] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:26] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:26] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:27] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:28] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:29] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:30] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:31] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:32] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:33] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old ass isee this means the client side get stuck and never replace the old stack for the newstack geting locked in an infinite blucle but when i change of slot this happend [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=50763212 = 50763212=old [13:08:34] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=0 = 50763212=old [13:08:35] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=0 = 50763212=old [13:08:35] [Client thread/INFO] [sTDOUT]: [mercenarymod.items.armasdefuego.pistolaMercenaria:shouldCauseReequipAnimation:1187]: new=0 = 50763212=old it stop the bucle and play reequip animation whith new stack >> and this is way i calll BUG << acoirding to this you can change of item stack whithout play the switch animation whiout geting stuck whith the item in hand sorry it is not to clear, english is not native languague as i try to say at the beginig it must be safe to just set return of shouldCauseReequipAnimation() to false whiout geting and stuck item in your hands i also try to replicated what is in this other post http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/modification-development/2350120-can-i-disable-the-animation-of-item-at-right-click but the more i could wait from it, is to just reduce the up down move of the hand a little, becose i can cancell the animation just triger it and wait for the next tick to use reflection to force the process to end but either have luck whith it just end whith a bunch of stucked guns thanks for reading : Quote
perromercenary00 Posted June 21, 2016 Author Posted June 21, 2016 por si acaso i alredy test it whith the last forge forge-1.9.4-12.17.0.1968-mdk i have a glimp or hope afther see the chanlog Build 1.9.4-12.17.0.1964: williewillus: Fix AnimationItemOverrideList not falling back to super (#2990) but naaa this hass nothing to do whith mi issue Quote
perromercenary00 Posted July 8, 2016 Author Posted July 8, 2016 is this adead request actualy im using 10.2 and the problem remain orr soo this is more like a feature than and issue ?? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.