ID:267523
 
Ok..dumbass question.

I was programming mah battle system and I've gotten it to the point where whenever the Combat procedure is called, the party leader moves to a certain distance from the monster...now. My question is..


How do I make the 2nd party member move to a another destination, as for the 3rd, 4th, etc.

An example would be appreciated; thanks.
What I do is scroll through the party list, and for member 2 I use locate(leader.x - 2, leader.y, leader.z), then member 3 is leader.x + 2, 4 is leader.x + 4, 5 is leader.x - 4.
Its probably not the most dynamic system, but it works as long as you have a party size limit.
In response to DarkView
Heh, yeah I believe that'd work perfectly, thanks. =)