- Joined
- Nov 19, 2013
- Messages
- 272
- Reaction score
- 114
- First Language
- Russian
- Primarily Uses
I wonder.. is it possible to change/delete basic status parameters like str, def, etc. and add other, new parameters?
hmmm. it looks a little bit complicated, but, what if I add all my own stats with formulas, which will work between each other, is it possible to replace all default stats using this way and hide them from characters-status menu afterwards?There are several scripts on the master script list that allows you to implement additional stats
SP/EX-Parameters do have internal functions, and you can't change that without replacing big parts of the engine with your own scripts.
Everything is possible - there are scripts available that turn Ace into a platformer-jump n'run Game, into Action-RPGs with on-map-battles like Diablo, into visual novels without combat and much more.hmmm. it looks a little bit complicated, but, what if I add all my own stats with formulas, which will work between each other, is it possible to replace all default stats using this way and hide them from characters-status menu afterwards?
So, how should look like other scripts, scripts where I will be able to write formulas for new stats?def draw_parameters(x, y)
12.times {|i| draw_actor_param(@actor, x, y + line_height * i, i + 0) }
end
BD I understand it too, but hardly."you'd have to use an array and select element i, where that line says i+2"
Yes! that's exactly what I what to do!If you want to add more, you'd have to define how they're set up, define how they're used, define how they're displayed.