I had this script at one time but cant find it and could not find here or runuo.
Does anyone have the script that extends in game book pages to 100 page and 200 page books?
 
Two easy ways to do this yourself.

1. give someone a book through script using ...
Code:
BlueBook book = new BlueBook( 200, true );

2. Create a new copy of the BlueBook (or any of the books) using this in the constructor:
Code:
  [Constructable]
  public LargeBlueBook()
  : base(0xFF2, 200, true) // 200 page book
  {
  }
 
Back