Link to the related script: http://pastebin.com/ErXQF7y9
Hey there eager programmers! Above is a script for RPG Maker VX Ace, aimed to add a summoning concept to the game.
What is it?
Instead of big talking I'll just give you a short demonstration of what it looks like in-game: http://www.youtube.com/watch?v=DS0zBRYskD8
So, what you can see in this footage is basically everything the script does:
Add actors to your party as "Summon" through the
$game_party.add_summonscript call. They get stored in a separate menu tab, they can be managed as regular party members, e.g. check skills, status and equip them. You can't use items/skills on them though outside of battleIn battle, you can use your designated Summon skills to call a summon to battle. In battle they work like regular Battlers. They will lose a certain amount of MP each turn, once it reaches 0, they get put into a status alignment called Stasis, that renders them unable to act.
This is a public script, "Battle Summon" by Tsukihime. I've asked for permission to modify his script, thus I've had certain functions added already, such as assigning summon_ids to skill_ids, e.g. bind a certain summon to a certain skill.
Oh, I've also asked the creator themselves for help, but they told me to get someone else proficient in scripting to help me out, due to lack of time and interest.
What are my problems now?
Well, basically I still have 2 major issues with the script:
As you can probably see in the video, there is an aesthetic bug regarding the window in battle. The game applies a little frame to whoever's turn it is to choose a command. That functionality is heavily messed up with the summons. For the first 2 summons, as seen in the video, the frame simply jumps back to the one who summoned them when it's their turn to act. For the other 2, for some reason I don't understand at all, it works very differently, it's jumping all over the place seemingly.
The root of this might lie deeper inside the native scripts in RPG Maker. Sadly there is no documentation online for them anymore, but it is possible for me to cross-search across all the scripts in the actual program, so if you have a suspicion about where the problem could lie, I can search for the specific class or term inside the other scripts.
My second problem is the need of an additional functionality.
As demonstrated near the end of my video, once each actor has called a summon, it is impossible to swap them out directly. The only way a summon is removed again is if it either dies, is unsummoned through a specially designated unsummon skill, or you win or lose the battle.
What I would like for the system is for it to be able to directly use another summon skill, removing the other from battle and adding the new one. Kind of like Pokemon games, changing Pokemons only takes 1 turn through the Change Pokemon command.
The main problem I and those who have helped me have so far encountered with this is the fact that the script doesn't really assign a creator for the summons. The script would need to know which summon to remove when calling a new one. For example, if both MC 1 and MC 2 have called a summon, summons 1 and 2 respectively, and MC 1 wants to swap it out for another, the game would need to know that when MC 1 casts summon spell 3, summon 1 needs to be removed for the summon 3.
Most people I've talked with told me that the code is written in a way that it is quite difficult to determine which summon to remove from battle in that case. I've thought about several ways how to work around that. I was wondering if it was possible to simply group the summon skills into two categories, and have the script unsummon something from category 1 if a spell from category 1 is used, same with category 2. It's probably a rather inelegant solution, but considering that I will only have a total of about 8 summons in my game, it wouldn't create too much of a mess.
So why don't you do it yourself then?
I've had many people ask me this already now.
Simply put, I'm not made for scripting. At all. I've spent hours already trying to make sense of the code and Ruby in general, but it's simply not a field I can excel in. I know this may sound stupid for someone who wants to create a game, but this is the exact reason I am utilizing RPG Maker. It's a great tool for people with game ideas, but who lack the programming skills to create them from scratch.
Thank you for reading all of this, I hope that somebody could take a look at my issues and help me out. I've spent several days now trying to work out solutions, together with other people, and I was able to add a lot of stuff to the script already thanks to their great help. Once I get those last issues solved, my battle system will be all ready and set.
Naturally, everyone helping me will be credited once I release my game (it's a non-commercial project of course, in case anyone is wondering); that's the least I can offer for your efforts.
Feel free to ask back about anything. I can provide pastebins of RPG Maker native scripts, videos, a playable demo, etc.