Suppose your story is at a point where a particular actor must be the leader. There could be any number of reasons why you're forcing the leader to be that actor: maybe your game has a mechanic where the leader can use a specific skill on the map, and different actors have different skills available. Maybe you just want that actor to be a leader.
In any case, you want the leader to be a specific actor in the party, so you may need to perform a party formation swap. But how do you do this?
There are several ways to accomplish this.
First, you could prevent the player from moving forward until they change the party formation, as I show in this video
But that might be annoying. Alternatively, you can use script calls.
`Game_Party` has a method called `swap_order` which takes two indices. When you call this method, the actors at the specified indices will be swapped.
Let's say our party formation looks like this:
But because we are currently hunting slime, we would like Yuki the Slime Hunter Samurai to take the lead. We will need to know a few pieces of information
- What index if Yuki currently at? Basically, we want to know her position in the party
- Which index will we change it with? The leader.
The leader is easy: it's index 0.The less trivial part is to figure out the correct index we want to swap it with. To do this, we will use a method from `Game_Actor` called `index`, which returns the index of that actor in the party.
Assuming Yuki is actor 2, the script call looks like this:
idx1 = 0idx2 = $game_actors[2].index$game_party.swap_order(idx1, idx2)Once you make that script call, the party formation will change as you need.What can you do with the swap_order script?
Spread the Word
If you liked the post and feel that others could benefit from it, consider tweeting it or sharing it on whichever social media channels that you use. You can also follow
@HimeWorks on Twitter or like my
Facebook page to get the latest updates or suggest topics that you would like to read about. I also create videos showcasing various RPG Maker techniques on my
Youtube channel.
(original posted at
HimeWorks)
本贴来自国际rpgmaker官方论坛作者:Tsukihime处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:
https://forums.rpgmakerweb.com/threads/swapping-party-formation-with-events.38268/