View Single Post
Old 04-17-2008, 05:31 PM   #13 (permalink)
Lord_Greywolf
Forum Master
 
Lord_Greywolf's Avatar
 
Join Date: Dec 2005
Posts: 6,741
Send a message via Yahoo to Lord_Greywolf
Default

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(); }
	}
}
__________________
http://www.AoAUO.com

:) ..... Come for the Customs, Play for the Fun. Return to see your new Friends ..... :)
Lord_Greywolf is offline   Reply With Quote