Jeff the Green
Member
Okay, I've been re-arranging the status screen, and I realized that when you press right or left, it's supposed to change characters. It doesn't when I playtest or when I run the game's RGSS Player. I also added this at the end of update in Scene_Status
and it doesn't work either. Am I missing something, or is there some bug in the original code?
Code:
if Input.trigger?(Input::ALT)
$game_system.se_play($data_system.decision_se)
$scene = Scene_Skill.new(@actor_index)
return
end
if Input.trigger?(Input::CTRL)
$game_system.se_play($data_system.decision_se)
$scene = Scene_Equip.new(@actor_index)
end