How do I change the main hero during a cutscene so that the player can't notice it?

From OHRRPGCE-Wiki
Jump to navigation Jump to search

To change the main hero (leader) in a cutscene (plotscript), use the following commands. This example replaces the hero named Vegeta with the hero named Super Saiyan

plotscript, my cutscene, begin
  add hero(hero:Super Saiyan)
  swap by name(hero:Vegeta, hero:Super Saiyan)
  swap out hero(hero:Vegeta)
  lock hero(hero:Vegeta)
end

You can do the same thing with no plotscripting by using text box conditionals, but because it takes several boxes, there is a noticeable delay when both heroes may be in the party at the same time before the first hero gets swapped out.

See Also[edit]