First of all, as far as I know this script is still in its development stage, but I haven't found any info anywhere relating to whether or not this has been implemented or not. Basically, I'm having trouble figuring out how to 'mount' skills & items in the system, and inevitably how to use them.
The script has it's own Game_Interpreter section which has this in it;
Code:
And when I call the script command 'assign_skill (1, 5, 8)', I get an error stating that 'skill_keys' is an undefined method. def assign_skill(actor, skill, button)
$game_party.members[actor].skill_keys[button] = $data_skills[skill]
endThe instructions that came with the script don't have any documentation specifying what's going on or how to do anything, and this is the only thing I've seen in the big bundle of scripts used for the system that remotely apply to using skills. So what am I doing wrong? I have a feeling it's either because it's incomplete, or I'm just overlooking something stupid.