Page 1 of 1

building queue order optimization lua script?

Posted: 10 Oct 2009, 22:20
by TradeMark
when i build a rectangular area of buildings, for example:

Code: Select all

oooooo
oooooo
the build queue order becomes ALWAYS:
----->
<-----

so the order is always 1 horizontal line first, then continue on second line.. etc...

it would be best if it chose the order depending on the size of the rectangle:

Code: Select all

if(width > height){
   vertical_order();
} else {
   horizontal_order(); // default atm
}
will make it faster to build nanotowers or other small buildings