Magic Units
Author: Tsukihime
Overview
This script converts skill types to "units". In the default engine, skill use consumes MP or TP. A "unit of magic" is treated like an item; in order to use the magic, you must have one, and each time you use it, you consume as many units as required.
Features
Usage
You can determine how many units of each skill you can have using
For some integer n
You can also determine which skill types should be treated as
units by specifying it in the configuration.
You can add/remove magic units by using script calls
scope is either "actor" or "party".
If the scope is "party", then the scope_id is the number representing
the position of an actor in your party. 1 will be the first person,
2 will be the second person, etc
If the scope is actor, then the scope_id is the actor_id.
By default, the scope is "party"
Download
Script: http://db.tt/47ySZhca
Demo: http://db.tt/5UCTLMZH (copy rgss30x.dll to the System folder to run it)
Author: Tsukihime
Overview
This script converts skill types to "units". In the default engine, skill use consumes MP or TP. A "unit of magic" is treated like an item; in order to use the magic, you must have one, and each time you use it, you consume as many units as required.
Features
- Specify skill types that should be treated as units
- Consume units of skill rather than MP or TP
- Gain or lose units through script calls
- Anyone can use the skill as long as they have units
Usage
You can determine how many units of each skill you can have using
Code:
<max-units: n>
You can also determine which skill types should be treated as
units by specifying it in the configuration.
You can add/remove magic units by using script calls
Code:
add_units(skill_id, amount, scope_id, scope)
lose_units(skill_id, amount, scope_id, scope)
If the scope is "party", then the scope_id is the number representing
the position of an actor in your party. 1 will be the first person,
2 will be the second person, etc
If the scope is actor, then the scope_id is the actor_id.
By default, the scope is "party"
Download
Script: http://db.tt/47ySZhca
Demo: http://db.tt/5UCTLMZH (copy rgss30x.dll to the System folder to run it)

