Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 CTB - A Final Fantasy X-like Battle System, Version 3.2
#83
Ok, I don't have the time to answer to all your requests right now.
I'll begin with the command windows.

I can see that you successfully moved the two command windows, then you must have found that the x-coordinate of the "secondary" window is controlled by line 107 in CTB by Charlie - Scene_Battle

Code:
@left_actor_command_window.set_x(0)

which you could turn into

Code:
@left_actor_command_window.set_x(0-ACTOR_COMMAND_WINDOW_WIDTH)

However, with the positions you want, the command that enables the "secondary" window should be RIGHT instead of LEFT...

line 948
Code:
if Input.trigger?(Input::LEFT)
should become
Code:
if Input.trigger?(Input::RIGHT)

while line 1037
Code:
if Input.trigger?(Input::RIGHT)
should become
Code:
if Input.trigger?(Input::LEFT)

Then, you must make the windowskin completely transparent by setting

Code:
ACTOR_COMMAND_WINDOWSKIN_OPACITY=0
LEFT_ACTOR_COMMAND_WINDOWSKIN_OPACITY=0

in the configuration.

Finally to make the two windows appear one at a time, you need to find all the places where there is
Code:
@left_actor_command_window.visible=true/false
and put the opposite instruction for
Code:
@actor_command_window.visible
just after it.
I count five places, use CTRL+F to find them.

EDIT: oh, and just change
Code:
ACTOR_COMMAND_BG_PICTURE_NAME="actor_command_bg_2_bw2"
putting that picture's name instead of "actor_command_bg_2_bw2".
Reply }


Messages In This Thread
CTB - A Final Fantasy X-like Battle System, version 3.1 (NEW Jul 4 2010) - by Charlie Fleed - 05-29-2009, 03:16 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,062 01-04-2020, 12:37 AM
Last Post: Pelip
   KItemDesc XP & VX Zilsel Version kyonides 4 6,533 12-01-2019, 06:11 AM
Last Post: kyonides
   ZLSL's Battle Portraits DerVVulfman 4 6,477 11-12-2019, 04:10 AM
Last Post: DerVVulfman
   ACBS - Atoa Custom Battle System 3.2 Victor Sant 150 224,542 03-02-2019, 04:47 AM
Last Post: dragonprincess44



Users browsing this thread: