Allows you to hang more items on lamp hooks.
If you cast the line first and then attach the rod, fishing will continue. The rate at which you catch fish will be lower than if were holding the fishing rod. The rate while in the fishing rod holder will be higher when you are out to sea.
The idle fishing mod is not needed, however this mod is compatible with it. The catch rate when in the holder is higher than if the rod is loose on the deck.
If you throw the log line in the water first and then attach the chip log, speed measurement will continue.
Fish will dry while hung on a lamp hook. They will not dry out completely before rotting if unsalted. You can salt a fish before or after hanging it.
This is compatible with CookedInfo. If you have it installed you will see the drying status.
These items must be emptied before you hang them.
If you wish to use this to be able to hang a custom item you made:
Example:
public override void OnLoad()
{
initialHoldDistance = holdDistance;
var attachable = gameObject.AddComponent<HolderAttachable>();
attachable.PositionOffset = new Vector3(0.02f, -0.15f, -0.12f);
attachable.RotationOffset = new Vector3(270f, 270f, 0f);
}
public override bool AllowOnItemClick(GoPointerButton lookedAtButton)
{
if (lookedAtButton.GetComponent<ShipItemHolder>() != null && !lookedAtButton.GetComponent<ShipItemHolder>().IsOccupied)
return true;
return false;
}
If updating, remove HooksHangMore folders and/or HooksHangMore.dll files from previous installations.
Extract the downloaded zip. Inside the extracted HooksHangMore-<version> folder copy the HooksHangMore folder and paste it into the Sailwind/BepInEx/Plugins folder.