Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 CTB - A Final Fantasy X-like Battle System, Version 3.2
All those are debug messages, I forgot to remove them... :P
Here's the cleaned version:
Content Hidden

You have use the "Summon" tag again, like you did.
That error shouldn't be there...
Reply }
Hey Charlie, thank you for removing those debug messages, much appreciated. Ok, so I still had the error, but I think I might have fixed it.

So take a look at the error line:
715 ((aeon.invoked_during_last_battle)?(INVOKED_AEON_EXP_MULTIPLIER):(NOT_INVOKED_AEON_EXP_[]MULTIPLIER)))

Now for whatever reason, on my script there was a symbol that looks like a square in front of the last Multiplier. I drew it with brackets ([]) above. I don't know what the symbol is, I have never seen it in any other scripts, and it looked out of place so I tried deleting it and it worked! No more error! I guessing that this is not in the original script because I don't see it in the one you posted above. Any ideas where it came from? And is it ok to leave off? There is another one on line 722 right before the last Transformation. I denoted it with the ([]) again. Should I get rid of it?

722 ((transformation.invoked_during_last_battle)?(INVOKED_TRANSFORMATION_EXP_MULTIPLIER):(NOT_INVOKED _[]TRANSFORMATION_EXP_MULTIPLIER)))?

Again I don't see it in the script above here, so I don't know why it would be in the game script when I pasted it into the summons script. I hope this helps. Let me know if I'm messing things up. Sorry that this little problem has taken much of your time. Thanks for the help.
Reply }
I don't know where these "[]" come from... you did right by getting rid of them.
I'm glad to hear everything is working now. Cya.
Reply }
charlie i have a problem again when i want to swith a actor in battle

then is writing
script super arts1.7 line351 type error occured
no implicit conversion from nil to integer
Reply }
Make sure you created a skill named with the name defined in:
SWITCH_NAME="Switch"
and that it calls a common event with "$scene.switch()" in it.
Reply }
it will not run in my xp it says "project could not read due to incompatibility between software versions"
plz help
Reply }
Hey Charlie, I just joined the forums to ask you a question on the "Superarts" section of the script

I've fiddled around with the script a bit, changing the status screen slightly to a different input button and some other small details.

Now, in my game, I would prefer if only one kind Super Arts was available. I assume I would remove the following the lines to prevent toggling and such, but how would I actually remove some of the methods of filling the bar, i.e, I only want the bar to be filled by "rage".

I know I have to get rid of the following code, but I don't know what else. I don't want to accidently delete something I needed :P
Code:
class Scene_Status
  alias sa_update update
  def update
    if Input.trigger?(Input::A)
      @actor.toggle_superart_type
      @status_window.refresh
      return
    end
    sa_update
  end
end
Reply }
@pman6666: I'm not sure but maybe the problem is the dll you have installed in your system. Open Game.ini in the demo folder and locate the line that says Library=RGSS102E.dll, you can change it to reflect the dll you have.

@Indignation: You can just remove that section. The code for the other filling methods will never be executed, you don't need to actually remove it.
Reply }
Alright thanks a lot, but how can I set what method of super art filling is default instead of it being the damage inflicted one?
Reply }
Here you decide, it's in the configuration:

Code:
SUPER_ARTS_TYPE_DEFAULT=1
# 0 - Earn SA points by suffered damage (SA=TYPE_0_RATE*SUPER_ARTS_MAX*damage/(MaxHp))
# 1 - Earn SA points by inflicted damage (SA=TYPE_1_RATE*SUPER_ARTS_MAX*damage/(AttackerMaxHP))
# 2 - Earn SA points by suffered damage by allies (SA=TYPE_2_RATE*SUPER_ARTS_MAX*damage/(AllyMaxHp))
# 3 - Earn SA points when skills belonging to given categories are used (SA=TYPE_3_RATE*SUPER_ARTS_MAX)
# 4 - Earn SA points when hp <= max_hp / 4 (SA=TYPE_4_RATE*SUPER_ARTS_MAX)
Reply }


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



Users browsing this thread: