A few months ago, a forumer made a request for a script that could let the hero use a random skill. Even if there gotta be a way to do it via events or some other settings, I preferred to write a script that could handle that swiftly.
NOTE: Both Actors and Troopers can make good / terrible use of this wonderful feature!
Configure the RANDOM_SKILLS Constant by adding as many Random Skills as needed!
For the Original Release
Ruby:
RANDOM_SKILLS[81] = [7, 10, 13, 16, 19, 22]
复制代码
For the 2026 Release
Ruby:
RANDOM_SKILLS[81] = skills = {}
skills[1] = [7, 10, 13, 16]
skills[2] = [19, 22, 24, 27]
skills[3] = [30, 33, 36, 40]
复制代码
And my script will pick a random skill for you in battle!