Hi there.
I am new to the RMVX and new to Ruby and RMVX's database.
However I am not new to scripting in itself.
I've gone through the basic RMVX tutorials on how to make a really simple quest and dungeon just to familiarize myself with the system.
Now my goal is to actually make a script package to allow the players and rpg-crafters out there to use their skills/spells just like in magicka.
If you are not familiar with magicka go out and play it. It is a lot of fun, especially playing it with friends.
The core idea behind its magic system is that it allows you to combine 5 basic elements and create more powerful spells. It ends up being many many fun spells etc.
Anyways back on topic, I've gone through the script editor and the database or at least looked through it.
These are my current thoughts on the project and I was hoping to get some feed back from more experienced Scripter in RMVX to see if what I intend to do is on the right track.
#===============================================================================
==
#Script: Skill Compination Magicka
#The goal of this script is to allow the player to use skill combinations
#just like it works in Magicka
#That means you are able to queue up to 5 skills; 10 skills if they use
# combiniation skills
#Those 5 skills should scale appropriately and then be executed at the same time
#===============================================================================
==
#Reference:
# Game_Actor:
# defines how to fetch data from the database
# Game_Actors:
# initializes the Object Game_Actor for global use in RMVX Script
#===============================================================================
==
#Classes Needed
# Game_Actor will need to be redefined to Game_Actor_Magicka
# it will be easiest to redefine the script and functions if done so at the
# base Object
# Game_Actors_Magicka will initialize Game_Actor_Magicka
# Window_Skill_Magicka/Window_SkillStats_Magicka will be needed so players can look up their skills in the
# menu
# Scene_Skill_Magicka may need to be created. I am still not quiet sure where/
# how it is best to queue up 5 skills/10 skills
#===============================================================================
==
Another question is how am I able to write into the database itself without having to pull out the RMVX user interface. There should be a way to access the database through an editor.