07-09-2009, 10:50 AM
habs11 Wrote:Hey Charlie, have a simple question for you. Would it be possible to create a summon that summons the character for with a full super art gauge? I guess what I'm referring to is Yuna's "Grand Summon" in FFX. So the ultimate goal would be that for example Kaiser's super art is summoning Adel with a full super art gauge, the same effect as grand summon. Just a thought. If it would be too time consuming, don't worry about it. Plus I'm not sure how many more FFX characteristics you want keep adding to the script. Thanks for your time.
Habs11
That's actually very easy.
You can create an additional skill, let's call it "Adel+", which btw may be a superart itself (Yuna could do a grand summon only with the gauge filled), and link it to a common event that is:
Code:
$game_actors[13].super_arts_points=
SUPER_ARTS_MAX
$game_party.summon(1,["Adel"])
EDIT: no, wait, it's not that simple... give me some minutes, I'm testing it.
EDIT2: ok, this is the correct code:
Code:
$game_actors[13].
super_arts_points=200;
$game_party.summon(1,["Adel"])
Notice that you must specify the numeric value 200, instead of SUPER_ARTS_MAX, and that you must use a semicolon to separate the two instructions.
Then, in some initialization event, you must put an instruction like "$game_actors[13].super_arts_points=0", this is because this code produces the side-effect of filling the gauge of the summoned character at the beginning of the game. Btw, if you're ok with that, you don't need this initialization event.
EDIT3: ok, you can also use SUPER_ARTS_MAX, I had mispelled it and I had got an error...
ballroomblitz15 Wrote:This script looks really cool, but I got a problem. I put every script that it had in the demo and when I tested it and right when I got into battle I got this error "Script 'CTB by Charlie - Scene Battle' line 54:NoMethodError occurred. undefined method 'update_size' for #<Game_Party:0x3dfb708>" How do I fix this? Can someone please help?
You must have missed some script pages. That definition is in Summons.