PGO-mapscan-opt
PGO-mapscan-opt copied to clipboard
Use existing spawn database when range increases.
I die a small areal scan yesterday evening, now I increased the range... And noticed that it has to relearn existing spawns... Is there a way to Reuse the already known spawns?
No, not right now.
Then I'd love to see that possibility sometime in the future.
While you cannot simply increase distance and use old data, you can gather data only from new parts of the map, and then merge them using spawnfix.py.
Let's assume that your old range was 8. You should set new, bigger range in usersettings.json as usual and then edit main0.py file around line 1517
Change this:
for a in range(1, HEX_NUM + 1):
to
for a in range([9, HEX_NUM + 1):
and then let it run for a hour. You need that first argument of range function to be larger by one than your old range value from usersettings.json.