Return to Project-GC

Welcome to Project-GC Q&A. Ask questions and get answers from other Project-GC users.

If you get a good answer, click the checkbox on the left to select it as the best answer.

Upvote answers or questions that have helped you.

If you don't get clear answers, edit your question to make it clearer.

0 votes
365 views
Hi community,

I´m looking for a checker, that checks the following:

Every day in december you have to find caches as the calendar shows. Means: You have to find on the 1st one cache, on the 2nd two cahes and so on. up to the 24th.

But the caches must be found in one year.

Would be nice, if the result is shown with a table.

Thanks for giving some ideas
in Miscellaneous by Die Vier Finder (190 points)
Please submit a GC code with your request

1 Answer

0 votes

You can use my Easy Tagging script http://project-gc.com/Tools/Challenges?edit&addTag&scriptId=652

With the following config:

{ "challenge": 
"with name '1st' find 1 caches where visitdate_month_day == '1201'.", 
"with name '2nd' find 2 caches where visitdate_month_day == '1202'.", 
"with name '3rd' find 3 caches where visitdate_month_day == '1203'.", 
"with name '4th' find 4 caches where visitdate_month_day == '1204'.", 
"with name '5th' find 5 caches where visitdate_month_day == '1205'.", 
"with name '6th' find 6 caches where visitdate_month_day == '1206'.", 
"with name '7th' find 7 caches where visitdate_month_day == '1207'.", 
"with name '8th' find 8 caches where visitdate_month_day == '1208'.", 
"with name '9th' find 9 caches where visitdate_month_day == '1209'.", 
"with name '10th' find 10 caches where visitdate_month_day == '1210'.", 
"with name '11th' find 11 caches where visitdate_month_day == '1211'.", 
"with name '12th' find 12 caches where visitdate_month_day == '1212'.", 
"with name '13th' find 13 caches where visitdate_month_day == '1213'.", 
"with name '14th' find 14 caches where visitdate_month_day == '1214'.", 
"with name '15th' find 15 caches where visitdate_month_day == '1215'.", 
"with name '16th' find 16 caches where visitdate_month_day == '1216'.", 
"with name '17th' find 17 caches where visitdate_month_day == '1217'.", 
"with name '18th' find 18 caches where visitdate_month_day == '1218'.", 
"with name '19th' find 19 caches where visitdate_month_day == '1219'.", 
"with name '20th' find 20 caches where visitdate_month_day == '1220'.", 
"with name '21st' find 21 caches where visitdate_month_day == '1221'.", 
"with name '22nd' find 22 caches where visitdate_month_day == '1222'.", 
"with name '23rd' find 23 caches where visitdate_month_day == '1223'.", 
"with name '24th' find 24 caches where visitdate_month_day == '1224'.", 
"fulfilled within 25 days." ,
 "if win output table gccode, cache_name as 'Name', visitdate as 'Visit Date'." ]
}
by mole125 (Expert) (21.1k points)
Thank you very much, but will your script work with the need to find the caches in one year?
That means,  that you have to find 300 Caches in one go from the 1st to the 24th.

What year doesn' t matter, so it may be 2014, 2013, a.s.o.

It is not allowed to split the challenge: find for the 22nd 10 in 2013 and 12 in 2012 or find 21 for the 21st in year 2013 and 22 for the 22nd in year 2014

Does the "full filled within 25 days" guarantee this?
Yes the fufilled within 25 days means they must be found within 25 consecutive days so will only match caches all within the same year. Without it you are right it wouldn't have that restriction and would combine matches in multiple years.
...