Skills Learning System by Charlie Fleed Version 2.3 (8-8-2010)
Introduction
Hi all. This script started as a Skills Learning System modeled after the system featured in Final Fantasy 9, but it now offers a lot more.
With this system you can:
1) learn skills by using weapons and armors/accessories and earning weapon/armor exp points;
2) set up skills that are immediately available once the corresponding weapon/armor/accessory is equipped;
3) set some skills to require a specified equipment in order to be used during battles;
4) set some skills to require a minimum character level before they can be learned;
5) limit the skills a character can learn to the only ones listed as available for his/her class in the database;
6) teach skills or give skill exp points for specific skills to characters by using items.
Methods have been added to give characters exp points with events, using the script event command. See the examples in the demo.
The following screen shows the learning status.
The character has mastered "Cross Cut", and is learning Barrier and Spiral Blade. Barrier can be permanently learned from the shield, Spiral Blade from the sword.
The skills however are already available as they also are equipment skills, as indicated by the yellow dot over the equipment icons.
As usual I would like you to try it, and report bugs, give comments, suggestions...
Enjoy!
It doesn't use the SDK. Almost everything is done through aliasing, I think it should have good compatibility with other scripts.
Features
Features
Full support of learning from weapons, all armor types and items.
Learning of skills can be limited on a class basis.
Learning of skills can be limited based on the character's level.
Configurable amount of exp_points needed for each skill.
A learning status screen that shows the exp points for the learning process.
Shop Add-On, Equip Add-On and Item Add-On: display animated window with information about skills.
Skills that cannot be learned are shown in disabled color (applies to learning status scene, equip scene, shop scene and item scene).
Screenshots
Screenshots
Instructions
Inside the demo.
FAQs
How to add a Learning Status entry in the menu.
Q:How to add a Learning Status entry in the menu. A:Since version 1.7 the Learning Status is not accessible from the Status scene by pressing a key. In order to access the Learning Status from the main menu you can do the following.
when 4 # save
# If saving is forbidden
if $game_system.save_disabled
# Play buzzer SE
$game_system.se_play($data_system.buzzer_se)
return
end
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to save screen
$scene = Scene_Save.new
when 5 # end game
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to end game screen
$scene = Scene_End.new
end
and replace it with
Code:
when 4 # learning status
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Make status window active
@command_window.active = false
@status_window.active = true
@status_window.index = 0
when 5 # save
# If saving is forbidden
if $game_system.save_disabled
# Play buzzer SE
$game_system.se_play($data_system.buzzer_se)
return
end
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to save screen
$scene = Scene_Save.new
when 6 # end game
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to end game screen
$scene = Scene_End.new
end
In Scene_Menu::update_status find
Code:
when 3 # status
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to status screen
$scene = Scene_Status.new(@status_window.index)
end
and replace it with
Code:
when 3 # status
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to status screen
$scene = Scene_Status.new(@status_window.index)
when 4 # learning status
# Play decision SE
$game_system.se_play($data_system.decision_se)
# Switch to status screen
$scene = Scene_Learning_Status.new(@status_window.index)
end