03-10-2013, 04:17 PM
I didn't think the skill order mattered at first either. But I did confirm that it did matter last night when I made the post yesterday. I'm at work, so I cannot be exact, but I failed when I created this skill tree for Aluxes... just as you did:
...but succeeded when I did this...
Again... I'm at work and don't have my actual RMXP up at this time... but this is what I did. And I had to add 'Greater Heal' to his skill list in the Class database.
HOWEVER... I had to remember to link the skills too. That comes to the skill dependencies... requirements... whatever. That's the part where you say 'skill 2 can become skill 57 after updating:
This was required and confirmed. I did have your issue, but I found that the IDs did need to be in order and that the 'requirement' feature had to be set.
I do hear you about the whole 'change the whole skill to another being a pain, but I don't think MicKo thought about how to approach the idea without hampering or changing the same skill if used by another actor. There is are other scripts out there that upgrades the skills as you practice them, but combining two scripts probably would not work together.
Well, it would be funny if Aluxes learned Crosscut... practiced enough to be Spiral Blade without needing the skill tree (automatically upgrading the tree by accident)... then could just use the points to go to Hurricane slash. But that's hopeful, and I am uncertain the two scripts would actually function together.
Code:
0 >= [nil, 57, nil],
1 >= [nil, nil, 58],
2 >= [nil, nil, 59],
3 >= [nil, 60, nil],
4 >= [nil, 2, nil]
Code:
0 >= [nil, 2, nil],
1 >= [nil, 57, nil],
2 >= [nil, nil, 58],
3 >= [nil, nil, 59],
4 >= [nil, 60, nil]
HOWEVER... I had to remember to link the skills too. That comes to the skill dependencies... requirements... whatever. That's the part where you say 'skill 2 can become skill 57 after updating:
Code:
... =[ 57 => 2, 58 => 57, 59 => 58....
I do hear you about the whole 'change the whole skill to another being a pain, but I don't think MicKo thought about how to approach the idea without hampering or changing the same skill if used by another actor. There is are other scripts out there that upgrades the skills as you practice them, but combining two scripts probably would not work together.
Well, it would be funny if Aluxes learned Crosscut... practiced enough to be Spiral Blade without needing the skill tree (automatically upgrading the tree by accident)... then could just use the points to go to Hurricane slash. But that's hopeful, and I am uncertain the two scripts would actually function together.