Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

FFX Style Party Ordering?

Is this possible?

well what I want is on the normal menu I need to be able to re-order party memers by selecting the 1st actor to swap in Window_menustatus
then selecting the 2nd actor to swap Window_menustatus as well and then they switch positions e.g
[Arshes/Arluxes]
Basil
Gloria
Hilda
then:
>Arshes/Arluxes
Basil
[Gloria]
Hilda
and finally:
Gloria
Basil
Arshes/Arluxes
Hilda
if possible could you make it fit into the the "When 6" Menu case?
e.g
case @command_window.index
when 1 # スキル
# このアクターの行動制限が 2 以上の場合
if $game_party.actors[@status_window.index].restriction >= 2
# ブザー SE を演奏
$game_system.se_play($data_system.buzzer_se)
return
end
# 決定 SE を演奏
$game_system.se_play($data_system.decision_se)
# スキル画面に切り替え
$scene = Scene_Skill.new(@status_window.index)
when 2 # 装備
# 決定 SE を演奏
$game_system.se_play($data_system.decision_se)
# 装備画面に切り替え
$scene = Scene_Equip.new(@status_window.index)
when 3 # ステータス
# 決定 SE を演奏
$game_system.se_play($data_system.decision_se)
# ステータス画面に切り替え
$scene = Scene_Status.new(@status_window.index)
when 6
party_switching_method_here
# end
return
end
end
 

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top