08-02-2014, 07:09 PM
I've have some problems with this script. I followed all the instructions and this is my configuration:
The issue I've got is the skill taught by spellbook 1 (element 13) can only be learned by the 13th class.
EDIT: Nevermind, it works now. I had forgotten to tag the skill elements.
Code:
# Spellbook Elements
SPBOOK_ID_START = 13 # Start of element list
SPBOOK_ID_NUMBER = 4 # Number of elements
# Class Limitations
SPBOOK_CLASSES = {10 => [13, 14, 15, 16],
11 => [13, 14, 15, 16],
12 => [13, 14, 15, 16],
13 => [13, 14, 15, 16],
14 => [13, 14, 15, 16],
15 => [13, 14, 15, 16],
16 => [13, 14, 15, 16],
17 => [13, 14, 15, 16] }
The issue I've got is the skill taught by spellbook 1 (element 13) can only be learned by the 13th class.
EDIT: Nevermind, it works now. I had forgotten to tag the skill elements.