Hey everyone and thank you for taking the time to read this!

Hey I was wondering if there is a way or at least a .cs that I would need to take a look at in order to modify the inscription craft menu to add FullSpellBook to it?

May basis is that instead of crafting each scroll one by one, the resources used takes a specific amount of each resource say 100 of each magery/Necro plus the normal amount needed for crafting a blank spellbook and combine them to craft a full spell book?

Any ideas are greatly welcomed!
 
Hey Lokai,

So I finally got the time to test this out. I can create it by using the [add command, but I haven't been able to make it so the inscriptioner's can craft it. Do I need to alter something for it?
 
DefInscription: Scripts\Services\Craft\DefInscription.cs

towards the bottom of the script, but before this.MarkOption = true;

you could add something like this

Code:
index = this.AddCraft(typeof(FullRegularSpellbook), 1044294, ("Full Spellbook"), 45.0, 95.0, typeof(BlankScroll), 1044377, 8, 1044378);
            this.AddRes(index, typeof(RecallScroll), 1044445, 1, 1044253);
            this.AddRes(index, typeof(GateTravelScroll), 1044446, 1, 1044253);

I just copied the Runebook and changed it to spellbook
 
Awesome, thank you zero I have been toying around for awhile on this one. Would this apply to anything script was that would craft anything similar to the fullspellbook?
 
Back