@AboutDegree9 I am talking exactly about that. What you need there is either to get the right actor as "hero" or the right "ID". A possible solution (not the only one, there are at least three other equivalent solutions) would be the following:
Code:
hero = $game_actors[1]
$game_actors.each do |actor|
if actor.state?(your_dummy_state_id)
hero = actor
hero.remove_state(your_state_id) # This line might be unnecessary but I recommend using it
end
end
After that you can simply use the same script call you have added to your post. Even the variable name (hero) is the same so you only have to change file name and face index according to the new face you want to show.