I was looking at the gun code and found this
//function BowItem::onUse(%this, %player, %InvPosition)
//{
// //check for quiver
// //if you dont have it, regular bow
// //if you do, super bow
//
// %client = %player.client;
//
// %mountPoint = %this.image.mountPoint;
// %mountedImage = %player.getMountedImage(%mountPoint);
//
//
// if(%mountedImage)
// {
// if(%mountedImage == bowImage.getId() || %mountedImage == superbowImage.getId())
// {
// //some kind of bow mounted so, unmount it
// %player.unMountImage(%mountPoint);
// messageClient(%client, 'MsgHilightInv', '', -1);
// %player.currWeaponSlot = -1;
// }
// else
// {
// //something other than bow mounted, so do bow selection and mount
// if(%player.getMountedImage($BackSlot))
// {
// if(%player.getMountedImage($BackSlot) == quiverImage.getId())
// {
// %player.mountimage(superBowImage, $RightHandSlot, 1, %skin);
// messageClient(%client, 'MsgHilightInv', '', %InvPosition);
// %player.currWeaponSlot = %invPosition;
// }
// else
// {
// %player.mountimage(bowImage, $RightHandSlot, 1, %skin);
// messageClient(%client, 'MsgHilightInv', '', %InvPosition);
// %player.currWeaponSlot = %invPosition;
// }
// }
// else
// {
// %player.mountimage(bowImage, $RightHandSlot, 1, %skin);
// messageClient(%client, 'MsgHilightInv', '', %InvPosition);
// %player.currWeaponSlot = %invPosition;
// }
// }
//
// }
// else
// {
// //nothing mounted so do bow selection and mount
// //something other than bow mounted, so do bow selection and mount
// if(%player.getMountedImage($BackSlot))
// {
// if(%player.getMountedImage($BackSlot) == quiverImage.getId())
// {
// %player.mountimage(superBowImage, $RightHandSlot, 1, %skin);
// messageClient(%client, 'MsgHilightInv', '', %InvPosition);
// %player.currWeaponSlot = %invPosition;
// }
// else
// {
// %player.mountimage(bowImage, $RightHandSlot, 1, %skin);
// messageClient(%client, 'MsgHilightInv', '', %InvPosition);
// %player.currWeaponSlot = %invPosition;
// }
// }
// else
// {
// %player.mountimage(bowImage, $RightHandSlot, 1, %skin);
// messageClient(%client, 'MsgHilightInv', '', %InvPosition);
// %player.currWeaponSlot = %invPosition;
// }
// }
//}
Anyone else find this?
also, this was in the gun code not the bow code