pulp is make from logs via cooking
but like i said - if you do not want to use it - can delete it and the reference in cooking for it
I then also made papyrus - iut is made in carpenty from pulp
then in cartography, i have them make blank scrolls using the papyrus
papyrus is an easy script to make, just have to add how you want it on the carp menu

i will leave that up to you
same with adding blank scroll making on cartography
I also limited the blank scrolls sales on the shard also
this way - it gives more meaning for cooking and cartography, and some one has to learn them if people want blank scrolls
Code:
using System;
namespace Server.Items
{
public class PapyrusSheet : Item
{
[Constructable]
public PapyrusSheet() : base( 5991 )
{
Weight = 2.0;
Stackable = true;
Hue = 2340;
Name = "Sheet of Papyrus";
}
public PapyrusSheet( Serial serial ) : base( serial ) { }
public override void Serialize( GenericWriter writer ) { base.Serialize( writer ); writer.Write( (int) 0 );}
public override void Deserialize( GenericReader reader ) { base.Deserialize( reader ); int version = reader.ReadInt(); }
}
}