I want to detect the nearest player_port location as an attack location for my biters. I copied some code from the waves mod and now factorio says that "attempt to call field 'insert' (a nil value)". Here is the modified function from waves mod:
Code: Select all
function find_nearest_playerport(tbl)
local surface = tbl.surface
local position = tbl.position
local max_distance = tbl.max_distance
local units = surface.find_entities_filtered{area={{position.x-max_distance,position.y-max_distance},{position.x+max_distance,position.y+max_distance}}, type = "player-port"}
local shortest = 9999999
local return_loc = nil
for _,unit in pairs(units) do
local unit_loc = unit.position
local unit_dist = to_distance(position,unit_loc)
if unit_dist < shortest then
return_loc = unit_loc
shortest = unit_dist
end
end
game.players[1].print(return_loc)
return return_loc
end
Code: Select all
script.on_event(defines.events.on_tick, function (event)
local onetimer = true
if event.tick%10 == 0 and event.tick > 10 and onetimer
then
global.playerstartlocations = {}
global.playerstartlocations.insert(find_nearest_playerport{surface = game.surfaces[1], position = {x=0,y=0}, max_distance = 3000})
player.print(global.playerstartlocations)
onetimer = false
end
end
"global.playerstartlocations.insert(find_nearest_playerport{surface = game.surfaces[1], position = {x=0,y=0}, max_distance = 3000})"
Can anyone help me? What parameter is nil? I am generating the table and all parameters are exactly like in the waves mod

Thank you!