local towns = { -- place the temple position of each town
[{1, 'yalahar'}] = {x = 0, y = 0, z = 0},
[{2, 'carlin'}] = {x = 0, y = 0, z = 0},
[{3, 'thais'}] = {x = 0, y = 0, z = 0}
}
function getTowns(search)
for town, templePosition in pairs(towns) do
if isInArray(town...