Do you mean like a program? I was thinking about this, but I'm not very good at programming, so I decided not to try it. I'm assuming that you have downloaded my custom formations script. If not, get it here:
http://www.ofpec.com/editors/resource_view.php?id=433All the info on how to use it is in the readme, but I'll summarize how to make formations here:
It's just like plotting points on a graph. If you know how a rectangular coordinate system (x/y) works, then you know how to make these formations. I assume that you've taken a math class where you have studied graphs like y=2x and the like. Just imagine each soldier as being a point on the graph. The leader of the formation is at the center of the graph (the origin; point 0,0). "Up" on the graph is the direction the leader is facing. So if you want a guy to be 4 meters in front of the leader and 10 meters to his right, his coordinates would be (10, 4).
Now you just grab a sheet of graph paper, plot out the points of all 11 squad members and figure out their coordinates. Then open up the template and replace all the [x,y] with your coordinates.
I'm sure I made that sound much more complicated than it really is, but it truly is simple. I did a lot of behind the scenes work in my script so that making the formations is easy. If you really want to know, the script basically converts each position into a distance and a direction from the leader (polar coords), since that is what OFP has commands relating to. But it is simpler to set up a list of (x,y) coords instead of distance direction coordinates, so thats how I set up the interface.
If anyone has suggestions on how to make the readme clearer, please let me know.