There is not working hook for multiplying crop gather:
if (player != null)
{
player.GiveItem(item, BaseEntity.GiveItemReason.PickedUp);
Interface.CallHook("OnGrowableGathered", this, item, player);
return;
}For working must be:
if (player != null)
{
Interface.CallHook("OnGrowableGathered", this, item, player);
player.GiveItem(item, BaseEntity.GiveItemReason.PickedUp);
return;
}With hook OnGrowableGather it is impossible to change the number of gathered resources.