Example #1
0
function transfer_to_village($village_from, $village_to, $except_crop = false, $reserve_ratio = 0)
{
    list($x, $y) = get_village_xy($village_to);
    transfer_to_xy($village_from, $x, $y, $except_crop, $reserve_ratio);
}
Example #2
0
function transfer_crop_to_village($village_from, $village_to, $reserve = 0)
{
    list($x, $y) = get_village_xy($village_to);
    transfer_crop_to_xy($village_from, $x, $y, $reserve);
}