Hi,
I advertised the game project me and a couple of friends are making in the RMVX Projects section. We are in need of an easy-to-use script, however, that allows us to create an ability identified by skill ID that targets specific party members in combat identified by actor ID.
This ability is basically draining X% MP from an eligible party member and adding it to the caster's MP.
The problem is that a mechanic in the game is called "Genotype Energy Sharing" for a reason. Every actor has a genotype. Now, making a script that also identifies the genotype is asking too much. So instead, we'll use actor ID's (I'll just make separate abilities for each character).
I need the script to be able to affect as many spells as I need by their ID's, and that also allows me to determine which actors in the party are eligible for its effect by their ID's.
Here's the general outline:
Actor1 has m^Fm^F genotype.
Actor2 has m^Am^A genotype.
Actor3 has m^Fm^A genotype.
Actor4 has m^Wm^E genotype.
The capital letters signify what skills they can use. A = Air, F = Fire, E = Earth, W = Water.
Actor1 runs out of MP.
Actor3 has MP left.
Actor1 begins to cast MP share. Out of 4 actors in the battle, only Actor3 is eligible to that character, because he shares at least one genotype with Actor1 (I'll just use actor ID's for this),
Actor1 selects Actor3.
Actor3's MP decreases by X%.
Actor1's MP increases by the % drained from Actor3.
Actor3 now has little MP left.
Actor3 begins to cast MP share.
Now Actor1 and Actor2 are eligible for the skill.
Actor3 selects Actor2.
Actor2's MP decreases by X%.
Actor3's MP is recovered.
Etc. etc.
Remember, I'll manually identify which actors are eligible for MP share's caster through the use of Actor ID's in the script itself, so you don't have to worry about compatibility issues on that end; although the script must be compatible with the Tankentai Sideview Battle System.
I hope I'm clear enough =S