James Member Feb 10, 2015 #1 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?
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?
Lokai Moderator Feb 10, 2015 #2 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 { }
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 { }
OP James Member Feb 10, 2015 #3 Maybe thats why I dont have a a script anywhere it was an edit thank you very much