RPGMaker MZ – Make partymember/follower face a certain direction

$gamePlayer.followers().follower(0).setDirection(2);

follower(0): first party member (zero based index).

Use 1 for second follower, 2 for third follower, 3 for fourth follower

setDirection(2): down

The direction is based on the numpad, so down=2,up=8, left=4, right=6.

Example: make three followers look up.

$gamePlayer.followers().follower(0).setDirection(8);
$gamePlayer.followers().follower(1).setDirection(8);
$gamePlayer.followers().follower(2).setDirection(8);

Or, make follower 1 and 2 look at each other:

$gamePlayer.followers().follower(0).setDirection(6);
$gamePlayer.followers().follower(1).setDirection(4);

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *