There are bugs in your script!

Report it to me, and if you may, you may fix it yourself.
What is the usage of your license?

To protect my work, I want my credit if you edit it or do anything to it.
YOUR SCRIPT/FILE IS SHIT! I DON'T LIKE IT!

Simply don't use it. And say why it's shit. Thanks.
How to change the supply zones?

Open map_source.lua inside sys\lua\yuki\aos.
The format would be like this
1
2
map_Supply[1] = {["xxx"] = {{x1, y1}, {x2, y2}}}
map_Supply[2] = {["xxx"] = {{x1, y1}, {x2, y2}}}
xxx means the name of the map, x and y represents the X and Y of the heal zones, the heal zones should be rectangular shaped. Do remember to separate multiple settings with
for example:
1
2
3
4
5
6
7
8
map_Supply[1] = {
["aos_desert"] = {{55, 11}, {56, 13}};
["xxx"] = {{8, 14}, {10, 16}};
}
map_Supply[2] = {
["aos_desert"] = {{6, 12}, {7, 14}};
["xxx"] = {{23, 22}, {76, 45}};
}