building queue order optimization lua script?
Posted: 10 Oct 2009, 22:20
when i build a rectangular area of buildings, for example:
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:
will make it faster to build nanotowers or other small buildings
Code: Select all
oooooo
oooooo
----->
<-----
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
}