Advanced

Change History

Topics that don't fit elsewhere, but still are related to challenge checkers.

Message: Re: Error in GC2M3D4 - Challenge #52: Stockholm yellow pages challenge.

Changed By: Target.
Change Date: August 24, 2017 01:55PM

Re: Error in GC2M3D4 - Challenge #52: Stockholm yellow pages challenge.
Are you sure about that? If it generated a map then it had to be a old php checker that did the same thing since it is not possible for the new lua checkers to get access to non found caches.

The code for the checker has not been change since 2016-06-13 19:59:21 UTC an the only line the add the url is:

mappoly.url = "http://project-gc.com/"

and the is just the same url for all maps

The challenge tag was created
Updated at: 2014-11-23 00:36:22 UTC (Created at: 2014-10-28 23:37:26)
The creation is the day after the checker script was created

The whole code for generation the polygon sgeneration the map


[quote]-- populate map
for _, name in Pairs(polynames) do
poly = polygons[name]
for _, coordlist in IPairs(poly.polypoints) do
local mappoly = {}
mappoly.polygon = coordlist
mappoly.region = poly.fullname
mappoly.url = "http://project-gc.com/"

if poly.optional then
mappoly.color = "yellow"
mappoly.urlText = poly.fullname .. " ("..poly.counter.. " caches found)"
elseif poly.cache == nil or poly.cache.gccode == "optional" then
mappoly.color = "red"
mappoly.urlText = poly.fullname
else
mappoly.color = "green"
mappoly.urlText = poly.fullname .. " ("..poly.counter.. " caches found)"
end
TableInsert(map.polygons, mappoly)
end
if poly.cache == nil then
if (not conf.limit) then
TableInsert(logtable, poly.fullname .. ": [missing]")
end
else
TableInsert(logtable, poly.fullname .. ": "..poly.cache.gccode.." - " .. poly.cache.cache_name.. " ("..poly.cache.visitdate..")")
if poly.cache.gccode ~= "optional" then
TableInsert(map.caches, poly.cache.gccode)
end
end
end[/quote]

Original Message

Author: Target.
Date: August 24, 2017 01:54PM

Re: Error in GC2M3D4 - Challenge #52: Stockholm yellow pages challenge.
Are you sure about that? If it generated a map then it had to be a old php checker that did the same thing since it is not possible for the new lua checkers to get access to non found caches.

The code for the checker has not been change since 2016-06-13 19:59:21 UTC an the only line the add the url is:

mappoly.url = "http://project-gc.com/"

and the is just the same url for all maps

The challenge tag was created
Updated at: 2014-11-23 00:36:22 UTC (Created at: 2014-10-28 23:37:26)
The creation is the day after the checker script was created

The whole code for generation the polygon son the map


[quote]-- populate map
for _, name in Pairs(polynames) do
poly = polygons[name]
for _, coordlist in IPairs(poly.polypoints) do
local mappoly = {}
mappoly.polygon = coordlist
mappoly.region = poly.fullname
mappoly.url = "http://project-gc.com/"

if poly.optional then
mappoly.color = "yellow"
mappoly.urlText = poly.fullname .. " ("..poly.counter.. " caches found)"
elseif poly.cache == nil or poly.cache.gccode == "optional" then
mappoly.color = "red"
mappoly.urlText = poly.fullname
else
mappoly.color = "green"
mappoly.urlText = poly.fullname .. " ("..poly.counter.. " caches found)"
end
TableInsert(map.polygons, mappoly)
end
if poly.cache == nil then
if (not conf.limit) then
TableInsert(logtable, poly.fullname .. ": [missing]")
end
else
TableInsert(logtable, poly.fullname .. ": "..poly.cache.gccode.." - " .. poly.cache.cache_name.. " ("..poly.cache.visitdate..")")
if poly.cache.gccode ~= "optional" then
TableInsert(map.caches, poly.cache.gccode)
end
end
end[/quote]