Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 CTB - A Final Fantasy X-like Battle System, Version 3.2
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.
Reply }


Messages In This Thread
CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - by Charlie Fleed - 07-09-2009, 10:50 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
   Battle Item Count kyonides 4 856 02-04-2024, 05:49 AM
Last Post: kyonides
   Super Simple Vehicle System - Enhanced DerVVulfman 65 83,006 06-02-2023, 06:16 PM
Last Post: Sujabes467
   Dalissa's Battle Cry DerVVulfman 2 6,638 05-09-2023, 03:07 AM
Last Post: DerVVulfman
   Zenith Tactical Battle System Plus (ZTBS+) DerVVulfman 0 2,025 05-10-2022, 10:42 PM
Last Post: DerVVulfman
   Actor Battle Items DerVVulfman 4 4,940 11-08-2020, 12:36 PM
Last Post: Melana
   Battle Report Raziel 1 6,233 05-29-2020, 02:27 AM
Last Post: Whisper
   Commercial System Package DerVVulfman 11 12,063 01-04-2020, 12:37 AM
Last Post: Pelip
   KItemDesc XP & VX Zilsel Version kyonides 4 6,535 12-01-2019, 06:11 AM
Last Post: kyonides
   ZLSL's Battle Portraits DerVVulfman 4 6,478 11-12-2019, 04:10 AM
Last Post: DerVVulfman
   ACBS - Atoa Custom Battle System 3.2 Victor Sant 150 224,547 03-02-2019, 04:47 AM
Last Post: dragonprincess44



Users browsing this thread: