I know how to make all followers face in one direction, using the script call
$game_player.followers.each {|follower|follower.set_direction(x)}
where x is 2, 4, 6 or 8 depending on which direction I want.
However, I want to make one specific follower (follower 4) face a different direction to the others. I've tried tinkering with the above script call, but nothing I've tried works.
Could someone please tell me what that script call should be?
Thanks.
Make a specific follower face a specific direction
● ARCHIVED · READ-ONLY
-
-
Did you try $game_player.followers[4].set_direction(x) ?
I am not sure I haven't test it before. xD -
You'd have to use index 0 for the first follower, 1 for the second and 2 for the third.
-
@dsiver144 That worked. I missed the post from Trihan at first, so when I tried it nothing happened. But once I adjusted for his point (i.e. the follower I wanted had to be 2) then everything worked fine.
Thanks to you both. -
Kes, followers are indexed from 0-2. 3 won't work.
-
You have more than 3 followers?
-
@Zeriab I end up with 5 in the active party, so yes, I will have 4 followers. But at the moment there are only 3, as the 5th and 6th actors haven't yet joined.
@Trihan Yes, I discovered that. However, I then saw your post after dsiver144's, changed it to 2 and all went well.
[mod]Closing, as solved.[/mod]